Skip to content

Commit

Permalink
feat(theme): update MiniStatusline colors
Browse files Browse the repository at this point in the history
Updated the MiniStatusline colors in the theme.lua file to use fg_light
instead of highlight. This change affects the Devinfo, Fileinfo,
Filename, and Inactive status lines.
  • Loading branch information
karyanayandi committed Jan 11, 2025
1 parent bf345d2 commit 9990fb3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lua/aurora/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -758,11 +758,11 @@ function theme.highlights(colors, config)
NeoTreeSymbolicLinkTarget = { fg = colors.cyan, style = "bold" },
NeoTreeCursorLine = { link = "Visual" },

-- Mini Status Line
MiniStatuslineDevinfo = { fg = colors.highlight, bg = colors.active },
MiniStatuslineFileinfo = { fg = colors.highlight, bg = colors.bg },
MiniStatuslineFilename = { fg = colors.highlight, bg = colors.active },
MiniStatuslineInactive = { fg = colors.light_gray, bg = colors.float },
-- Mini Statusline
MiniStatuslineDevinfo = { fg = colors.fg_light, bg = colors.active },
MiniStatuslineFileinfo = { fg = colors.fg_light, bg = colors.bg },
MiniStatuslineFilename = { fg = colors.fg_light, bg = colors.active },
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" } },
Expand Down

0 comments on commit 9990fb3

Please sign in to comment.