github light high contrast: Floating window has same color as background
Opened this issue · 1 comments
Using nvim v0.9.5, github-nvim-theme d832925 with lazy.nvim package manager.
It looks like Normal and NormalFloat have the same background color, and this means that things like hover floaters (using NormalFloat) wash out against the background. github light default does not have this problem.
Both light/dark high contrast themes have this same issue.
Thanks for reporting this. You are right, and this only affects github_light_high_contrast
and github_dark_high_contrast
.
github-nvim-theme/lua/github-theme/palette/primitives/light_high_contrast.lua
Lines 410 to 415 in 6829ce3
github-nvim-theme/lua/github-theme/palette/primitives/dark_high_contrast.lua
Lines 410 to 415 in 6829ce3
canvas.default
is used for spec.bg1
(global bg), and canvas.inset
is used for spec.bg0
(darkened bg)
We might need manual/custom overrides for these two themes (for spec.bg0
). In the meantime, you can configure spec.bg0
via setup()
locally.