Compare commits

...

2 Commits

Author SHA1 Message Date
e634ee7d46 changed color for better readibility of text 2023-08-18 01:21:13 +02:00
c581a158c2 changed cursor and search color 2023-08-18 00:38:55 +02:00
2 changed files with 47 additions and 45 deletions

View File

@ -8,6 +8,7 @@ colors.get_colors = function()
bg_alt = "#0D1016", bg_alt = "#0D1016",
fg = "#D4D4D4", fg = "#D4D4D4",
fg_alt = "#CE9178", fg_alt = "#CE9178",
cursor = "#AEAFAD",
accent = "#C586C0", accent = "#C586C0",
accent_alt = "#608B4E", accent_alt = "#608B4E",
ui = "#4D5566", ui = "#4D5566",
@ -33,7 +34,8 @@ colors.get_colors = function()
-- git -- git
added_fg = "#6A9955", added_fg = "#6A9955",
added_bg = "#0E1F17", added_bg = "#0E1F17",
modified_fg = "#004080", modified_fg = "#569CD6",
modified_fg_alt = "#004080",
modified_bg = "#223255", modified_bg = "#223255",
removed_fg = "#D16969", removed_fg = "#D16969",
removed_bg = "#190E11", removed_bg = "#190E11",

View File

@ -6,7 +6,7 @@ theme.set_highlights = function(opts)
hl(0, 'Normal', { fg = c.fg, bg = c.bg }) hl(0, 'Normal', { fg = c.fg, bg = c.bg })
hl(0, 'ColorColumn', { bg = c.color_column }) hl(0, 'ColorColumn', { bg = c.color_column })
hl(0, 'Cursor', { fg = c.tag }) hl(0, 'Cursor', { fg = c.cursor })
hl(0, 'CursorLine', { bg = c.bg_alt }) hl(0, 'CursorLine', { bg = c.bg_alt })
hl(0, 'CursorColumn', { bg = c.bg_alt }) hl(0, 'CursorColumn', { bg = c.bg_alt })
@ -33,7 +33,7 @@ theme.set_highlights = function(opts)
hl(0, 'FloatBorder', { fg = c.fg, bg = c.popup }) hl(0, 'FloatBorder', { fg = c.fg, bg = c.popup })
hl(0, 'Question', { fg = c.fg_alt }) hl(0, 'Question', { fg = c.fg_alt })
hl(0, 'Search', { fg = c.bg, bg = c.fg }) hl(0, 'Search', { fg = c.bg, bg = c.fg_alt })
hl(0, 'SpecialKey', { fg = c.popup }) hl(0, 'SpecialKey', { fg = c.popup })
hl(0, 'SpellCap', { fg = c.warning, undercurl = true, sp = c.error }) hl(0, 'SpellCap', { fg = c.warning, undercurl = true, sp = c.error })
@ -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 })