changed color for better readibility of text

master
tiyn 1 year ago
parent c581a158c2
commit e634ee7d46

@ -4,53 +4,54 @@ colors.get_colors = function()
mycolors = { mycolors = {
-- ui -- ui
bg = "#191919", bg = "#191919",
bg_alt = "#0D1016", bg_alt = "#0D1016",
fg = "#D4D4D4", fg = "#D4D4D4",
fg_alt = "#CE9178", fg_alt = "#CE9178",
cursor = "#AEAFAD", cursor = "#AEAFAD",
accent = "#C586C0", accent = "#C586C0",
accent_alt = "#608B4E", accent_alt = "#608B4E",
ui = "#4D5566", ui = "#4D5566",
color_column = "#772222", color_column = "#772222",
popup = "#272727", popup = "#272727",
border = "#242A35", border = "#242A35",
border_alt = "#393F4D", border_alt = "#393F4D",
fg_idle = "#FFD602", fg_idle = "#FFD602",
-- syntax -- syntax
tag = "#9CDCFE", tag = "#9CDCFE",
func = "#DCDCAA", func = "#DCDCAA",
entity = "#9CDCFE", entity = "#9CDCFE",
string = "#CE9178", string = "#CE9178",
regexp = "#D16969", regexp = "#D16969",
markup = "#C586C0", markup = "#C586C0",
keyword = "#C586C0", keyword = "#C586C0",
special = "#D7BA7D", special = "#D7BA7D",
comment = "#608B4E", comment = "#608B4E",
constant = "#4FC1FE", constant = "#4FC1FE",
bold = "#569CD6", bold = "#569CD6",
operator = "#C586C0", operator = "#C586C0",
number = "#B5CEA8", number = "#B5CEA8",
-- git -- git
added_fg = "#6A9955", added_fg = "#6A9955",
added_bg = "#0E1F17", added_bg = "#0E1F17",
modified_fg = "#004080", modified_fg = "#569CD6",
modified_bg = "#223255", modified_fg_alt = "#004080",
removed_fg = "#D16969", modified_bg = "#223255",
removed_bg = "#190E11", removed_fg = "#D16969",
removed_bg = "#190E11",
-- lsp -- lsp
error = "#FB0101", error = "#FB0101",
warning = "#FFD602", warning = "#FFD602",
hint = "#608B4E", hint = "#608B4E",
-- line -- line
line_fg = "#D4D4D4", line_fg = "#D4D4D4",
line_bg = "#272727", line_bg = "#272727",
line_bg_alt = "#0D1016", line_bg_alt = "#0D1016",
line_visual = "#C586C0", line_visual = "#C586C0",
line_normal = "#6A9955", line_normal = "#6A9955",
line_insert = "#569CD6", line_insert = "#569CD6",
line_replace = "#D16969", line_replace = "#D16969",
line_contrast = "#CE9178", line_contrast = "#CE9178",
} }
-- Extend the colors with overrides passed by `color_overrides` -- Extend the colors with overrides passed by `color_overrides`

@ -84,7 +84,7 @@ theme.set_highlights = function(opts)
hl(0, 'DiffChange', { bg = c.modified_bg }) hl(0, 'DiffChange', { bg = c.modified_bg })
hl(0, 'DiffDelete', { bg = c.removed_bg }) hl(0, 'DiffDelete', { bg = c.removed_bg })
hl(0, 'diffRemoved', { link = 'DiffDelete' }) hl(0, 'diffRemoved', { link = 'DiffDelete' })
hl(0, 'DiffText', { bg = c.modified_fg }) hl(0, 'DiffText', { bg = c.modified_fg_alt })
-- netrw -- netrw
hl(0, 'netrwClassify', { fg = c.fg_alt }) hl(0, 'netrwClassify', { fg = c.fg_alt })

Loading…
Cancel
Save