Skip to content

Commit

Permalink
feat(theme): update MiniStatusline colors and styles
Browse files Browse the repository at this point in the history
- Changed background color of MiniStatuslineDevinfo and MiniStatuslineFilename
  to 'highlight'
- Updated styles for MiniStatuslineMode* to use string "bold" instead of table
- Changed background color of MiniStatuslineModeNormal to 'cyan'
  • Loading branch information
karyanayandi committed Jan 12, 2025
1 parent 9990fb3 commit 6a0ad54
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lua/aurora/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -759,16 +759,16 @@ function theme.highlights(colors, config)
NeoTreeCursorLine = { link = "Visual" },

-- Mini Statusline
MiniStatuslineDevinfo = { fg = colors.fg_light, bg = colors.active },
MiniStatuslineDevinfo = { fg = colors.fg_light, bg = colors.highlight },
MiniStatuslineFileinfo = { fg = colors.fg_light, bg = colors.bg },
MiniStatuslineFilename = { fg = colors.fg_light, bg = colors.active },
MiniStatuslineFilename = { fg = colors.fg_light, bg = colors.highlight },
MiniStatuslineInactive = { fg = colors.fg_light, bg = colors.float },
MiniStatuslineModeCommand = { fg = colors.fg_light, bg = colors.yellow, style = { "bold" } },
MiniStatuslineModeInsert = { fg = colors.fg_light, bg = colors.green, style = { "bold" } },
MiniStatuslineModeNormal = { fg = colors.fg_light, bg = colors.blue, style = { "bold" } },
MiniStatuslineModeOther = { fg = colors.fg_light, bg = colors.light_green, style = { "bold" } },
MiniStatuslineModeReplace = { fg = colors.fg_light, bg = colors.red, style = { "bold" } },
MiniStatuslineModeVisual = { fg = colors.fg_light, bg = colors.purple, style = { "bold" } },
MiniStatuslineModeCommand = { fg = colors.fg_light, bg = colors.yellow, style = "bold" },
MiniStatuslineModeInsert = { fg = colors.fg_light, bg = colors.green, style = "bold" },
MiniStatuslineModeNormal = { fg = colors.fg_light, bg = colors.cyan, style = "bold" },
MiniStatuslineModeOther = { fg = colors.fg_light, bg = colors.light_green, style = "bold" },
MiniStatuslineModeReplace = { fg = colors.fg_light, bg = colors.red, style = "bold" },
MiniStatuslineModeVisual = { fg = colors.fg_light, bg = colors.purple, style = "bold" },

-- WhichKey
WhichKey = { bg = colors.highlight_dark, fg = colors.purple, style = "bold" },
Expand Down

0 comments on commit 6a0ad54

Please sign in to comment.