Skip to content

Commit

Permalink
fix: use bg highlight color for visual selection
Browse files Browse the repository at this point in the history
fixes #9
  • Loading branch information
scottmckendry committed Jan 16, 2024
1 parent af4f598 commit 16833ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/cyberdream/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ function M.setup()
TabLineFill = { fg = t.grey, bg = t.bgHighlight },
TabLineSel = { fg = t.fg, bg = t.bgHighlight },
Title = { fg = t.fg },
Visual = { fg = t.bg, bg = t.blue },
VisualNOS = { fg = t.bg, bg = t.blue },
Visual = { fg = t.bg, bg = t.bgHighlight },
VisualNOS = { fg = t.bg, bg = t.bgHighlight },
WarningMsg = { fg = t.orange },
Whitespace = { fg = t.grey },
WildMenu = { fg = t.bg, bg = t.blue },
Expand Down

0 comments on commit 16833ca

Please sign in to comment.