luisiacc / gruvbox-baby

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

Unable to affect Pmenu colour #63

Closed bitwombat closed 1 year ago

bitwombat commented 1 year ago

The floating diagnostics window has a dark background yielding a pretty confusing view.

image

With other themes, I can control the background with:

:hi Pmenu guibg=#808080  

Giving me something like, with evening theme, for example:

image

However, with gruvbox-baby, this has no effect.

User error?

luisiacc commented 1 year ago

Could you try putting this before calling the colorscheme?:

vim.g.gruvbox_baby_highlights = {Pmenu = {bg = "#808080"}}
bitwombat commented 1 year ago

Thanks for the response. Unfortunately, no effect.

bitwombat commented 1 year ago

Happy to help debug / try other experiments.

bitwombat commented 1 year ago

Turns out that diagnostic menu is NormalFloat, but blue, slate, and other built-in themes link Pmenu to that :angry: Confusing! Thanks for the theme, and thanks for the support.