projekt0n / github-nvim-theme

GitHub's Neovim themes
MIT License
2.07k stars 106 forks source link

How to remove blue color from status line #195

Closed nappalm closed 2 years ago

nappalm commented 2 years ago

I use Feline, I don't like the blue color, is it possible to disable the color in the status line?

ful1e5 commented 2 years ago

You can override bg color in the Statusline highlight.

require('github-theme').setup({
  -- ...
  overrides = function(c)
    return {
      Statusline = { bg = c.bg, fg = c.fg_light },
    }
  end,
  dev = true,
})

Check palette module for overridable colors.