Skip to content

Commit aa28bc7

Browse files
committed
fix: swap fg with bg in heirline hl groups
1 parent 10bae2c commit aa28bc7

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

lua/cyberdream/theme.lua

+8-6
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ function M.setup()
8686
TabLine = { fg = t.grey, bg = t.bg },
8787
TabLineFill = { fg = t.grey, bg = t.bgHighlight },
8888
TabLineSel = { fg = t.fg, bg = t.bgHighlight },
89+
WinBar = { fg = t.grey, bg = t.bg },
90+
WinBarNC = { fg = t.grey, bg = t.bg },
8991
Title = { fg = t.fg },
9092
Visual = { fg = t.bg, bg = t.bgHighlight },
9193
VisualNOS = { fg = t.bg, bg = t.bgHighlight },
@@ -252,12 +254,12 @@ function M.setup()
252254
GitSignsDelete = { fg = t.red },
253255

254256
-- Heirline
255-
HeirlineInactive = { fg = t.grey },
256-
HeirlineNormal = { fg = t.blue },
257-
HeirlineVisual = { fg = t.magenta },
258-
HeirlineReplace = { fg = t.red },
259-
HeirlineCommand = { fg = t.yellow },
260-
HeirlineInsert = { fg = t.green },
257+
HeirlineInactive = { bg = t.grey },
258+
HeirlineNormal = { bg = t.blue },
259+
HeirlineVisual = { bg = t.magenta },
260+
HeirlineReplace = { bg = t.red },
261+
HeirlineCommand = { bg = t.yellow },
262+
HeirlineInsert = { bg = t.green },
261263
}
262264

263265
if opts.borderless_telescope then

0 commit comments

Comments
 (0)