Statusbar background fixes

This commit is contained in:
2024-02-14 18:39:41 +01:00
parent d034a533e4
commit 701b34906e
2 changed files with 30 additions and 33 deletions

View File

@@ -7,7 +7,7 @@ return function(config)
-- Build base colors
local base = {
none = "",
none = "NONE",
fg = colors.grayscale[vimbg_reversed][1],
bg = colors.bg[vimbg][config.contrast],
@@ -19,14 +19,14 @@ return function(config)
colored_backgrounds = colors.colored_backgrounds[vimbg][config.contrast],
gray = colors.gray, -- TODO Rémy Only for comments? Won't look good in light mode
gray = colors.gray,
}
-- Append colors
local palette = vim.tbl_extend("error", base, colors.colors[vimbg])
palette.ui = {
fg = palette.fg,
bg = palette.bg_gradiant[1],
bg = palette.none,
bg_hard = palette.harder_bg,
fg_inactive = palette.fg_gradiant[4],
bg_inactive = palette.bg_gradiant[2],
@@ -37,6 +37,10 @@ return function(config)
text = palette.fg_gradiant[2],
scroll = palette.blue,
},
statusbar = {
fg = palette.fg,
bg = palette.bg_gradiant[1],
},
winbar = {
fg = palette.fg_gradiant[1],
bg = palette.harder_bg,