From 4fa5912437e9bc1cf502a3a00ebe1c292c10488e Mon Sep 17 00:00:00 2001 From: Daniel Mathiot Date: Thu, 2 Dec 2021 18:33:09 +0100 Subject: [PATCH] Remove background for popups (#38) --- lua/rose-pine/theme.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/rose-pine/theme.lua b/lua/rose-pine/theme.lua index 23491ac..ef92623 100644 --- a/lua/rose-pine/theme.lua +++ b/lua/rose-pine/theme.lua @@ -67,8 +67,8 @@ theme.base = { MoreMsg = { fg = p.iris }, NonText = { fg = p.inactive }, Normal = { fg = p.text, bg = maybe_base }, - NormalFloat = { fg = p.text, bg = p.surface }, - Pmenu = { fg = p.subtle, bg = p.surface }, + NormalFloat = { fg = p.subtle }, + Pmenu = { fg = p.subtle }, PmenuSbar = { bg = p.overlay }, PmenuSel = { fg = p.text, bg = p.overlay }, PmenuThumb = { bg = p.inactive }, @@ -410,6 +410,7 @@ theme.plugins = { -- nvim-cmp -- https://github.com/hrsh7th/nvim-cmp CmpItemKind = { fg = p.iris }, + CmpItemMenu = { fg = p.subtle }, CmpItemAbbr = { fg = p.subtle }, CmpItemAbbrMatch = { fg = p.text, style = 'bold' }, CmpItemAbbrMatchFuzzy = { fg = p.text, style = 'bold' },