Skip to content

Commit

Permalink
fix(headlines): make headlines a little less pronounced
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Oct 16, 2023
1 parent 003adac commit 868c050
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/tokyonight/theme.lua
Expand Up @@ -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 },
Expand Down Expand Up @@ -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 = {
Expand Down

0 comments on commit 868c050

Please sign in to comment.