Skip to content

Commit

Permalink
feat(theme): update MiniStatusline colors
Browse files Browse the repository at this point in the history
Updated the foreground color of MiniStatusline components to use
`colors.highlight` instead of `colors.fg_light`. This change affects
various modes including Command, Insert, Normal, Other, Replace, and
Visual.
  • Loading branch information
karyanayandi committed Jan 12, 2025
1 parent 6a0ad54 commit 4e75a48
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lua/aurora/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -762,13 +762,13 @@ function theme.highlights(colors, config)
MiniStatuslineDevinfo = { fg = colors.fg_light, bg = colors.highlight },
MiniStatuslineFileinfo = { fg = colors.fg_light, bg = colors.bg },
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.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" },
MiniStatuslineInactive = { fg = colors.highlight, bg = colors.float },
MiniStatuslineModeCommand = { fg = colors.highlight, bg = colors.yellow, style = "bold" },
MiniStatuslineModeInsert = { fg = colors.highlight, bg = colors.green, style = "bold" },
MiniStatuslineModeNormal = { fg = colors.highlight, bg = colors.cyan, style = "bold" },
MiniStatuslineModeOther = { fg = colors.highlight, bg = colors.light_green, style = "bold" },
MiniStatuslineModeReplace = { fg = colors.highlight, bg = colors.red, style = "bold" },
MiniStatuslineModeVisual = { fg = colors.highlight, bg = colors.purple, style = "bold" },

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

0 comments on commit 4e75a48

Please sign in to comment.