From 8e800a99993a318f42af260f522a293b49c5adf7 Mon Sep 17 00:00:00 2001 From: Arkady Rost Date: Tue, 3 Jan 2023 18:47:51 +0000 Subject: [PATCH] Fixed Telescope background in case when config.disable_background = true and (#110) config.disable_float_background = false Co-authored-by: Arkady Rost --- lua/rose-pine/theme.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/rose-pine/theme.lua b/lua/rose-pine/theme.lua index 7a99908..3a78242 100644 --- a/lua/rose-pine/theme.lua +++ b/lua/rose-pine/theme.lua @@ -465,10 +465,10 @@ function M.get(config) PounceMatch = { link = 'Search' }, -- nvim-telescope/telescope.nvim - TelescopeBorder = { fg = groups.border }, + TelescopeBorder = { fg = groups.border, bg = styles.float_background }, TelescopeMatching = { fg = p.rose }, - TelescopeNormal = { fg = p.subtle }, - TelescopePromptNormal = { fg = p.text }, + TelescopeNormal = { fg = p.subtle, bg = styles.float_background }, + TelescopePromptNormal = { fg = p.text, bg = styles.float_background }, TelescopePromptPrefix = { fg = p.subtle }, TelescopeSelection = { fg = p.text, bg = p.overlay }, TelescopeSelectionCaret = { fg = p.rose, bg = p.overlay },