mirror of
https://github.com/webhooked/kanso.nvim.git
synced 2026-05-30 05:37:03 +02:00
Merge pull request #35 from LVala/blink-bg-fix
Fix Blink's border background color when transparency is enabled
This commit is contained in:
commit
e1012192cc
1 changed files with 1 additions and 1 deletions
|
|
@ -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 },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue