Skip to content

Commit

Permalink
feat(theme): update WhichKey highlight colors
Browse files Browse the repository at this point in the history
- Added background color to WhichKey for better visibility
- Changed WhichKeyFloat background to highlight_dark for consistency
  • Loading branch information
karyanayandi committed Dec 25, 2024
1 parent d364d45 commit dbaced2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/aurora/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -759,11 +759,11 @@ function theme.highlights(colors, config)
NeoTreeCursorLine = { link = "Visual" },

-- WhichKey
WhichKey = { fg = colors.purple, style = "bold" },
WhichKey = { bg = colors.highlight_dark, fg = colors.purple, style = "bold" },
WhichKeyGroup = { fg = colors.cyan },
WhichKeyDesc = { fg = colors.blue, style = "italic" },
WhichKeySeperator = { fg = colors.green },
WhichKeyFloat = { bg = colors.highlight },
WhichKeyFloat = { bg = colors.highlight_dark },

-- LspSaga
TitleString = { fg = colors.fg },
Expand Down

0 comments on commit dbaced2

Please sign in to comment.