cleanup colors

This commit is contained in:
2023-08-15 03:04:18 +02:00
parent 5e5fc43b4a
commit d2b6fff0d0
3 changed files with 98 additions and 98 deletions

View File

@@ -7,12 +7,14 @@ colors.get_colors = function()
bg = "#191919",
bg_alt = "#0D1016",
fg = "#D4D4D4",
fg_alt = "#CE9178",
accent = "#C586C0",
accent_alt = "#608B4E",
ui = "#4D5566",
color_column = "#772222",
popup = "#272727",
guide_active = "#393F4D",
guide_normal = "#242A35",
border = "#242A35",
border_alt = "#393F4D",
-- syntax
tag = "#9CDCFE",
func = "#DCDCAA",
@@ -25,14 +27,25 @@ colors.get_colors = function()
comment = "#608B4E",
constant = "#D4D4D4",
operator = "#C586C0",
error = "#FF0000",
-- extended color palette
fg_idle = "#FFFF00",
-- git
added = "#608B4E",
modified = "#9CDCFE",
removed = "#D16969",
-- lsp
error = "#FF0000",
warning = "#FFFF00",
-- vcs
vcs_added = "#608B4E",
vcs_modified = "#9CDCFE",
vcs_removed = "#D16969",
hint = "#608B4E",
-- line
line_fg = "#D4D4D4",
line_bg = "#191919",
line_bg_alt = "#0D1016",
line_visual = "#C586C0",
line_normal = "#608B4E",
line_insert = "#9CDCFE",
line_replace = "#D16969",
line_contrast = "#CE9178",
}
-- Extend the colors with overrides passed by `color_overrides`