Skip to content

Commit 75cc85a

Browse files
committed
fix(hues): don't set background where not needed
Details: - `PmenuMatch` doesn't need background as it will blend with `Pmenu`.
1 parent d561733 commit 75cc85a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/mini/hues.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ MiniHues.apply_palette = function(palette, plugins, opts)
521521
hi('PmenuExtraSel', { link='PmenuSel' })
522522
hi('PmenuKind', { link='Pmenu' })
523523
hi('PmenuKindSel', { link='PmenuSel' })
524-
hi('PmenuMatch', { fg=p.fg, bg=p.bg_mid, bold=true })
524+
hi('PmenuMatch', { fg=nil, bg=nil, bold=true })
525525
hi('PmenuMatchSel', { fg=nil, bg=nil, bold=true, blend=0, reverse=true })
526526
hi('PmenuSbar', { link='Pmenu' })
527527
hi('PmenuSel', { fg=nil, bg=nil, blend=0, reverse=true })

0 commit comments

Comments
 (0)