cleanup colors

This commit is contained in:
2023-08-15 02:22:34 +02:00
parent ca17628bbb
commit 5e5fc43b4a
3 changed files with 48 additions and 57 deletions

View File

@@ -3,45 +3,36 @@ colors.get_colors = function()
local mycolors = {} ---@type table<string,string>
mycolors = {
-- common
accent = "#C586C0",
bg = "#191919",
-- bg_alt = "#121212",
fg = "#D4D4D4",
ui = "#4D5566",
-- syntax
tag = "#9CDCFE",
func = "#DCDCAA",
entity = "#9CDCFE",
string = "#CE9178",
regexp = "#D16969",
markup = "#C586C0",
keyword = "#C586C0",
special = "#D7BA7D",
comment = "#608B4E",
constant = "#D4D4D4",
operator = "#C586C0",
error = "#FF0000",
-- extended color palette
fg_idle = "#FFFF00",
warning = "#FFFF00",
-- ui
-- line = "#00010A",
line_alt = "#772222",
panel_bg = "#0D1016",
panel_shadow = "#00010A",
-- panel_border = "#000000",
-- gutter_normal = "#323945",
-- gutter_active = "#464D5E",
-- selection_bg = "#273747",
selection_inactive = "#272727",
-- selection_border = "#304357",
guide_active = "#393F4D",
guide_normal = "#242A35",
bg = "#191919",
bg_alt = "#0D1016",
fg = "#D4D4D4",
accent = "#C586C0",
ui = "#4D5566",
color_column = "#772222",
popup = "#272727",
guide_active = "#393F4D",
guide_normal = "#242A35",
-- syntax
tag = "#9CDCFE",
func = "#DCDCAA",
entity = "#9CDCFE",
string = "#CE9178",
regexp = "#D16969",
markup = "#C586C0",
keyword = "#C586C0",
special = "#D7BA7D",
comment = "#608B4E",
constant = "#D4D4D4",
operator = "#C586C0",
error = "#FF0000",
-- extended color palette
fg_idle = "#FFFF00",
warning = "#FFFF00",
-- vcs
vcs_added = "#608B4E",
vcs_modified = "#9CDCFE",
vcs_removed = "#D16969",
vcs_added = "#608B4E",
vcs_modified = "#9CDCFE",
vcs_removed = "#D16969",
}
-- Extend the colors with overrides passed by `color_overrides`