luisiacc / gruvbox-baby

Gruvbox theme for neovim with full 🎄TreeSitter support.
MIT License
390 stars 28 forks source link

feat: config option 'overrides' to override palette colors #40

Closed gaoDean closed 1 year ago

gaoDean commented 1 year ago

First of all, I love this variation of gruvbox, works better than any other out there, thanks for putting in the effort to create this.

I didn't like the dark blue in the palette, so this allows you to override any palette color with another color

vim.g.gruvbox_baby_overrides = {blue_gray = "#aaaaaa"}

or using existing palette colors

vim.g.gruvbox_baby_overrides = {blue_gray = "light_blue"}
gaoDean commented 1 year ago

all good?