Fixed statusline and tabline background

This commit is contained in:
2024-02-21 10:53:19 +01:00
parent e4cfb6ebd0
commit 76feae8704
3 changed files with 12 additions and 7 deletions

View File

@@ -28,9 +28,9 @@ return function(theme, palette)
StatusReplace = { fg = theme.statusbar.normal.bg, bg = palette.red }, StatusReplace = { fg = theme.statusbar.normal.bg, bg = palette.red },
StatusTerminal = { link = "StatusInsert" }, StatusTerminal = { link = "StatusInsert" },
StatusVisual = { fg = theme.statusbar.normal.bg, bg = palette.purple }, StatusVisual = { fg = theme.statusbar.normal.bg, bg = palette.purple },
TabLine = theme.statusbar.normal, TabLine = theme.statusbar.inactive,
TabLineFill = { link = "TabLine" }, TabLineFill = theme.statusbar.normal,
TabLineSel = vim.tbl_extend("error", theme.statusbar.inactive, { bold = true, italic = true }), TabLineSel = theme.statusbar.active,
WinBar = theme.winbar.normal, WinBar = theme.winbar.normal,
WinBarNC = theme.winbar.inactive, WinBarNC = theme.winbar.inactive,

View File

@@ -23,7 +23,7 @@ return function(theme, palette)
NeoTreeFloatTitle = theme.popup.title, NeoTreeFloatTitle = theme.popup.title,
NeoTreeSymbolicLinkTarget = { fg = palette.aqua }, NeoTreeSymbolicLinkTarget = { fg = palette.aqua },
NeoTreeTabActive = vim.tbl_extend("error", theme.statusbar.active, { bold = true }), NeoTreeTabActive = theme.statusbar.inactive,
NeoTreeTabInactive = theme.winbar.inactive, NeoTreeTabInactive = theme.winbar.inactive,
NeoTreeTitleBar = theme.popup.title2, NeoTreeTitleBar = theme.popup.title2,
} }

View File

@@ -89,18 +89,23 @@ function M.make_theme(P, C)
T.statusbar = { T.statusbar = {
normal = { normal = {
fg = P.fg_gradiant[1], fg = P.fg_gradiant[1],
bg = P.harder_bg, bg = P.bg_gradiant[1],
}, },
active = { active = {
fg = P.fg_gradiant[1], fg = P.fg_gradiant[1],
bg = P.harder_bg, bg = P.harder_bg,
bold = true,
}, },
inactive = { inactive = {
fg = P.fg, fg = P.fg_gradiant[1],
bg = P.bg_gradiant[1], bg = P.bg,
}, },
} }
T.winbar = { T.winbar = {
active = {
fg = P.fg_gradiant[1],
bg = P.bg,
},
normal = { normal = {
fg = P.fg_gradiant[1], fg = P.fg_gradiant[1],
bg = P.harder_bg, bg = P.harder_bg,