diff --git a/lua/tccs/colors.lua b/lua/tccs/colors.lua index d495621..914909e 100644 --- a/lua/tccs/colors.lua +++ b/lua/tccs/colors.lua @@ -39,6 +39,8 @@ colors.get_colors = function() modified_bg = "#223255", removed_fg = "#D16969", removed_bg = "#190E11", + -- bonus + visual_bg = "#955690", -- lsp error = "#FB0101", warning = "#FFD602", diff --git a/lua/tccs/theme.lua b/lua/tccs/theme.lua index 02e95fe..9935d46 100644 --- a/lua/tccs/theme.lua +++ b/lua/tccs/theme.lua @@ -304,10 +304,10 @@ theme.set_highlights = function(opts) hl(0, "@stringEscape", { fg = c.string, bold = true }) -- modes.nvim - hl(0, "ModesCopy", { bg = c.line_fg }) - hl(0, "ModesDelete", { bg = c.line_replace }) - hl(0, "ModesInsert", { bg = c.line_insert }) - hl(0, "ModesVisual", { bg = c.line_visual }) + hl(0, "ModesCopy", { bg = c.fg, fg = c.bg }) + hl(0, "ModesDelete", { bg = c.removed_bg }) + hl(0, "ModesInsert", { bg = c.added_bg }) + hl(0, "ModesVisual", { bg = c.visual_bg }) end return theme