diff options
-rw-r--r-- | lua/no-clown-fiesta/groups/lazy.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lua/no-clown-fiesta/groups/lazy.lua b/lua/no-clown-fiesta/groups/lazy.lua index 850f2f8..4ee560e 100644 --- a/lua/no-clown-fiesta/groups/lazy.lua +++ b/lua/no-clown-fiesta/groups/lazy.lua @@ -3,16 +3,17 @@ local M = {} function M.highlight(palette, opts) return { LazyButton = { fg = palette.fg }, - LazyButtonActive = { fg = palette.orange, bg = palette.accent }, + LazyButtonActive = { fg = palette.fg, bold = true }, LazyComment = { fg = palette.medium_gray }, LazyCommit = { fg = palette.white }, LazyCommitIssue = { fg = palette.red }, LazyCommitScope = { fg = palette.cyan }, LazyCommitType = { fg = palette.cyan }, + LazyDimmed = { fg = palette.medium_gray }, LazyDir = { fg = palette.gray_blue }, - LazyH1 = { fg = palette.orange }, + LazyH1 = { fg = palette.fg, bold = true }, LazyH2 = { fg = palette.fg }, - LazyNoCond = { fg = palette.yellow }, + LazyNoCond = { fg = palette.blue }, LazyNormal = { fg = palette.fg }, LazyProgressDone = { fg = palette.cursor_fg }, LazyProgressTodo = { fg = palette.gray }, @@ -28,7 +29,7 @@ function M.highlight(palette, opts) LazyReasonStart = { fg = palette.fg }, LazySpecial = { fg = palette.fg }, LazyTaskError = { fg = palette.red }, - LazyTaskOutput = { fg = palette.gray }, + LazyTaskOutput = { fg = palette.medium_gray }, LazyUrl = { fg = palette.gray_blue }, LazyValue = { fg = palette.medium_gray_blue }, } |