Skip to content

Commit 0e1833b

Browse files
A-Lamiamehalter
authored andcommitted
feat(base): disable blend on title background if title_invert
1 parent 1f3df14 commit 0e1833b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/astrotheme/groups/base.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ local function callback(opts)
4444
or (opts.popup and C.ui.popup)
4545
or (opts.transparent and C.none)
4646
or C.ui.base,
47-
blend = vim.o.winblend or 0,
47+
blend = opts.title_invert and 0 or vim.o.winblend or 0,
4848
bold = true,
4949
},
5050
PopupBorder = {

0 commit comments

Comments
 (0)