From 5c086f9598d3263346fa2f6d140378f163619859 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sat, 3 Sep 2022 15:43:49 +0200 Subject: [PATCH] fix: use bg instead of none for TelescopeNormal --- lua/tokyonight/theme.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index 8146f6e..5d3ce93 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -315,8 +315,8 @@ function M.setup(config) GitSignsDelete = { fg = c.gitSigns.delete }, -- diff mode: Deleted line |diff.txt| -- Telescope - TelescopeBorder = { fg = c.border_highlight, bg = config.transparent and c.bg_float or c.none }, - TelescopeNormal = { fg = c.fg, bg = config.transparent and c.bg_float or c.none }, + TelescopeBorder = { fg = c.border_highlight, bg = config.transparent and c.bg_float or c.bg }, + TelescopeNormal = { fg = c.fg, bg = config.transparent and c.bg_float or c.bg }, -- NvimTree NvimTreeNormal = { fg = c.fg_sidebar, bg = c.bg_sidebar },