comfysage / evergarden

:rose: a comfy neovim colorscheme for cozy morning coding.
MIT License
122 stars 4 forks source link

[bug report] Highlight group 'NotifyBackground' has no background highlight #7

Closed shellRaining closed 3 months ago

shellRaining commented 3 months ago
image

when trigger the notify function, the noice box will occur this bug

comfysage commented 3 months ago

nvim-notify uses winblend = 100 when youve set transparency to 100%. unfortunately there's a bug in neovim where floating windows with winblend of 100 will not be able to properly apply background colors. this means the plugin needs knowledge of the background color you want to use.

you can provide a custom background color like this:

require('notify').setup({
  background_colour = '#232B2E',
})