fix mellow theming

This commit is contained in:
2025-07-14 19:42:40 -04:00
parent 64afe9c9ee
commit afdefb7dc3

View File

@ -5,12 +5,17 @@ return { "mellow-theme/mellow.nvim",
vim.g.mellow_variant = "dark"
local c = require("mellow.colors")[vim.g.mellow_variant]
if vim.g.mellow_variant == "dark" then
vim.g.mellow_highlight_overrides = {
-- stop inactive windows from having a darker bg
["NormalNC"] = { link = "Normal" },
-- revert change with statusline coloring
["StatusLine"] = { fg = c.white, bg = c.gray01 },
["StatusLineNC"] = { fg = c.bg_dark },
-- make splits look cleaner
["WinSeparator"] = { link = "Normal" },
["WinSeparator"] = { fg = c.gray01 },
-- make floats darker
["NormalFloat"] = { fg = c.fg, bg = "#111111" },
@ -21,12 +26,14 @@ return { "mellow-theme/mellow.nvim",
["DiagnosticUnderlineWarn"] = { fg = c.yellow, undercurl = true },
["DiagnosticUnderlineInfo"] = { fg = c.blue, undercurl = true },
["DiagnosticUnderlineHint"] = { fg = c.cyan, undercurl = true },
["DiagnosticHint"] = { fg = c.cyan }, -- revert
-- make blink actually look nice
["BlinkCmpMenu"] = { link = "NormalFloat" },
["BlinkCmpMenuBorder"] = { link = "BlinkCmpMenu" },
["BlinkCmpMenuSelection"] = { bg = c.gray01 },
["BlinkCmpLabelDeprecated"] = { link = "CmpItemAbbrDeprecated" },
["BlinkCmpLabelMatch"] = { link = "NormalFloat" }, -- reverted
-- telescope styling so I can see when coding outside (real)
["TelescopeResultsNormal"] = { bg = c.bg_dark },
@ -39,4 +46,5 @@ return { "mellow-theme/mellow.nvim",
["TelescopePreviewBorder"] = { link = "TelescopePreviewNormal" }
}
end
end
}