summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2023-05-17 01:14:07 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2023-05-17 01:14:07 +0200
commitc5e617d3416ad1143441bdb7124fe87c2f4fd1ed (patch)
treee24eb0b44496fcfccb6a321272dc3ce162d4656f
parent53aa162c91aad7b71bac4420578c9bd7ff5dbc3f (diff)
Update lazy
-rw-r--r--lua/no-clown-fiesta/groups/lazy.lua9
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 },
}