Skip to content

Commit

Permalink
fix: visual mode contrast
Browse files Browse the repository at this point in the history
For some unknown reason, the `Visual` highlight group has had pretty
poor constrast for a long time. I'm honestly not sure how it went
unnoticed for so long. Thanks to echasnovski for pointing it out on #81
  • Loading branch information
scottmckendry committed Jun 28, 2024
1 parent 8e5bf0b commit e5b5f34
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 @@ -107,8 +107,8 @@ function M.setup()
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 },
Visual = { bg = t.bgHighlight },
VisualNOS = { bg = t.bgHighlight },
WarningMsg = { fg = t.orange },
Whitespace = { fg = t.grey },
WildMenu = { fg = t.bg, bg = t.blue },
Expand Down

0 comments on commit e5b5f34

Please sign in to comment.