From e5b5f34aa86b21566cc688014724fc1c57dd236d Mon Sep 17 00:00:00 2001 From: Scott McKendry <39483124+scottmckendry@users.noreply.github.com> Date: Sat, 29 Jun 2024 10:59:26 +1200 Subject: [PATCH] fix: visual mode contrast 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 --- lua/cyberdream/theme.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/cyberdream/theme.lua b/lua/cyberdream/theme.lua index 00b916b..475ab13 100644 --- a/lua/cyberdream/theme.lua +++ b/lua/cyberdream/theme.lua @@ -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 },