fix(headlines): make headlines a little less pronounced

This commit is contained in:
Folke Lemaitre
2023-10-16 08:38:47 +02:00
parent 003adac24f
commit 868c0506bc

View File

@@ -622,7 +622,6 @@ function M.setup()
-- headlines.nvim
CodeBlock = { bg = c.bg_dark },
Headline = { bg = c.bg_dark },
-- navic
NavicIconsFile = { fg = c.fg, bg = c.none },
@@ -838,8 +837,9 @@ function M.setup()
for i, color in ipairs(markdown_rainbow) do
theme.highlights["@text.title." .. i .. ".markdown"] = { fg = color, bold = true }
theme.highlights["Headline" .. i] = { bg = util.darken(color, 0.1) }
theme.highlights["Headline" .. i] = { bg = util.darken(color, 0.05) }
end
theme.highlights["Headline"] = { link = "Headline1" }
if not vim.diagnostic then
local severity_map = {