feat: more color to member variables

This commit is contained in:
2024-02-26 11:46:45 +01:00
parent 078b99fa17
commit db179859cc
2 changed files with 6 additions and 4 deletions

View File

@@ -9,6 +9,8 @@ function M.make_theme(P, C)
local T = {
none = { fg = P.none, bg = P.none },
normal = { fg = P.fg, bg = P.bg },
highlight = { fg = P.fg_gradiant[1], bg = P.none },
highlight_bold = { fg = P.fg_gradiant[1], bg = P.none, bold = true },
inverted = { fg = P.bg, bg = P.fg },
inactive = { fg = P.fg_gradiant[4] },
conceal = { fg = P.bg_gradiant[3], bg = P.harder_bg },