diff --git a/lua/tccs/colors.lua b/lua/tccs/colors.lua index a4cd740..578c0e6 100644 --- a/lua/tccs/colors.lua +++ b/lua/tccs/colors.lua @@ -25,25 +25,25 @@ colors.get_colors = function() keyword = "#C586C0", special = "#D7BA7D", comment = "#608B4E", - constant = "#D4D4D4", + constant = "#4FC1FE", operator = "#C586C0", -- extended color palette - fg_idle = "#FFFF00", + fg_idle = "#FFD602", -- git - added = "#608B4E", - modified = "#9CDCFE", + added = "#6A9955", + modified = "#4FC1FE", removed = "#D16969", -- lsp - error = "#FF0000", - warning = "#FFFF00", + error = "#FB0101", + warning = "#FFD602", hint = "#608B4E", -- line line_fg = "#D4D4D4", - line_bg = "#191919", + line_bg = "#272727", line_bg_alt = "#0D1016", line_visual = "#C586C0", - line_normal = "#608B4E", - line_insert = "#9CDCFE", + line_normal = "#6A9955", + line_insert = "#4FC1Fe", line_replace = "#D16969", line_contrast = "#CE9178", } diff --git a/lua/tccs/theme.lua b/lua/tccs/theme.lua index b0433db..089d947 100644 --- a/lua/tccs/theme.lua +++ b/lua/tccs/theme.lua @@ -33,7 +33,7 @@ theme.set_highlights = function(opts) hl(0, 'FloatBorder', { fg = c.fg, bg = c.popup }) hl(0, 'Question', { fg = c.fg_alt }) - hl(0, 'Search', { fg = c.bg, bg = c.fg }) -- TODO: fix color + hl(0, 'Search', { fg = c.bg, bg = c.fg }) hl(0, 'SpecialKey', { fg = c.popup }) hl(0, 'SpellCap', { fg = c.warning, undercurl = true, sp = c.error })