fix!(leap): highlight group for LeapLabel (#728)

`LeapLabel` replaces `LeapLabelPrimary` and `LeapLabelSecondary`

Signed-off-by: Platy <daryl.limkz@gmail.com>
This commit is contained in:
Daryl 2024-07-08 17:40:11 +08:00 committed by GitHub
parent 4ea01738dc
commit 2d3419c2ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,17 +6,12 @@ function M.get()
fg = O.transparent_background and C.pink or U.vary_color({ latte = "#222222" }, U.brighten(C.green, 0.3)),
style = { "underline", "nocombine", O.transparent_background and "bold" or nil },
},
LeapLabelPrimary = {
LeapLabel = {
fg = O.transparent_background and C.green or U.vary_color({ latte = "#222222" }, C.base),
bg = O.transparent_background and C.none
or U.vary_color({ latte = U.brighten(C.red, 0.4) }, U.brighten(C.green, 0.3)),
style = { "nocombine", O.transparent_background and "bold" or nil },
},
LeapLabelSecondary = {
fg = O.transparent_background and C.blue or U.vary_color({ latte = "#222222" }, C.base),
bg = O.transparent_background and C.none or U.vary_color({ latte = U.brighten(C.sky, 0.3) }, C.sky),
style = { "nocombine", O.transparent_background and "bold" or nil },
},
LeapBackdrop = { fg = O.transparent_background and C.overlay0 or C.none },
}
end