Skip to content

Commit

Permalink
fix: swap fg with bg in heirline hl groups
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmckendry committed Apr 4, 2024
1 parent 10bae2c commit aa28bc7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions lua/cyberdream/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ function M.setup()
TabLine = { fg = t.grey, bg = t.bg },
TabLineFill = { fg = t.grey, bg = t.bgHighlight },
TabLineSel = { fg = t.fg, bg = t.bgHighlight },
WinBar = { fg = t.grey, bg = t.bg },
WinBarNC = { fg = t.grey, bg = t.bg },
Title = { fg = t.fg },
Visual = { fg = t.bg, bg = t.bgHighlight },
VisualNOS = { fg = t.bg, bg = t.bgHighlight },
Expand Down Expand Up @@ -252,12 +254,12 @@ function M.setup()
GitSignsDelete = { fg = t.red },

-- Heirline
HeirlineInactive = { fg = t.grey },
HeirlineNormal = { fg = t.blue },
HeirlineVisual = { fg = t.magenta },
HeirlineReplace = { fg = t.red },
HeirlineCommand = { fg = t.yellow },
HeirlineInsert = { fg = t.green },
HeirlineInactive = { bg = t.grey },
HeirlineNormal = { bg = t.blue },
HeirlineVisual = { bg = t.magenta },
HeirlineReplace = { bg = t.red },
HeirlineCommand = { bg = t.yellow },
HeirlineInsert = { bg = t.green },
}

if opts.borderless_telescope then
Expand Down

0 comments on commit aa28bc7

Please sign in to comment.