feat: set TelescopeNormal to default fg and bg colors (#137)

When transparency is enabled the background for Telescope seems to be
just black. This this doesn't blend well with the rest of the theme in
transparency mode. While the default fg and bg are not transparent, they
do provide a better contrast and seems easier on the eye.
This commit is contained in:
Hassan Khalid
2021-12-31 08:43:19 +00:00
committed by GitHub
parent d561999136
commit 8223c97067

View File

@@ -303,7 +303,8 @@ function M.setup(config)
GitSignsDelete = { fg = c.gitSigns.delete }, -- diff mode: Deleted line |diff.txt|
-- Telescope
TelescopeBorder = { fg = c.border_highlight },
TelescopeBorder = { fg = c.border_highlight, bg = c.bg_float },
TelescopeNormal = { fg = c.fg, bg = c.bg_float },
-- NvimTree
NvimTreeNormal = { fg = c.fg_sidebar, bg = c.bg_sidebar },