summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-07-10 00:17:13 +0200
committerGitHub <noreply@github.com>2024-07-10 00:17:13 +0200
commitb164c148d497b843ad7c5255fee58ea8b6c5dd41 (patch)
tree1471d850089bf648fcd574c018633abb8b189c55
parentcaf86fbc3cf390cac8c5fba599f1500f49f622d7 (diff)
fix: leap highlight groups (#39)
* Fix leap * Update backdrop * Update label to red * Update leap label fg color
-rw-r--r--lua/no-clown-fiesta/groups/leap.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/lua/no-clown-fiesta/groups/leap.lua b/lua/no-clown-fiesta/groups/leap.lua
index 009e9bb..1d01cc0 100644
--- a/lua/no-clown-fiesta/groups/leap.lua
+++ b/lua/no-clown-fiesta/groups/leap.lua
@@ -3,9 +3,8 @@ local M = {}
function M.highlight(palette, opts)
return {
LeapMatch = { fg = palette.cyan, bold = true },
- LeapLabelPrimary = { fg = palette.red, bold = true },
- LeapLabelSecondary = { fg = palette.gray_blue },
- LeapBackdrop = { fg = palette.gray },
+ LeapLabel = { fg = palette.orange, bold = true },
+ LeapBackdrop = { fg = palette.medium_gray },
}
end