From 08c2a8c14aac4e67c620bfdfc3b4ba9c60e513b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Wala?= Date: Sat, 9 Aug 2025 12:00:05 +0200 Subject: [PATCH] Fix Blink's border background color whent transparency is on --- lua/kanso/highlights/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/kanso/highlights/plugins.lua b/lua/kanso/highlights/plugins.lua index 16238ef..0c4b48e 100644 --- a/lua/kanso/highlights/plugins.lua +++ b/lua/kanso/highlights/plugins.lua @@ -211,7 +211,7 @@ function M.setup(colors, config) -- blink.cmp BlinkCmpMenu = { link = "Pmenu" }, BlinkCmpMenuSelection = { link = "PmenuSel" }, - BlinkCmpMenuBorder = { fg = theme.ui.bg_search, bg = theme.ui.pmenu.bg }, + BlinkCmpMenuBorder = { fg = theme.ui.bg_search, bg = config.transparent and theme.ui.none or theme.ui.pmenu.bg }, BlinkCmpScrollBarThumb = { link = "PmenuThumb" }, BlinkCmpScrollBarGutter = { link = "PmenuSbar" }, BlinkCmpLabel = { fg = theme.ui.pmenu.fg },