diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-07-10 00:17:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-10 00:17:13 +0200 |
commit | b164c148d497b843ad7c5255fee58ea8b6c5dd41 (patch) | |
tree | 1471d850089bf648fcd574c018633abb8b189c55 /lua/no-clown-fiesta/groups | |
parent | caf86fbc3cf390cac8c5fba599f1500f49f622d7 (diff) |
fix: leap highlight groups (#39)
* Fix leap
* Update backdrop
* Update label to red
* Update leap label fg color
Diffstat (limited to 'lua/no-clown-fiesta/groups')
-rw-r--r-- | lua/no-clown-fiesta/groups/leap.lua | 5 |
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 |