Skip to content

Commit e16b50f

Browse files
authored
chore: align blink cmp colors
1 parent 49d6014 commit e16b50f

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

lua/vscode/theme.lua

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -580,8 +580,8 @@ theme.set_highlights = function(opts)
580580
hl(0, 'CmpItemAbbrMatchFuzzy', { fg = isDark and c.vscMediumBlue or c.vscDarkBlue, bg = 'NONE', bold = true })
581581

582582
-- Blink
583-
hl(0, 'BlinkCmpMenu', { link = 'FloatBorder' })
584-
hl(0, 'BlinkCmpMenuBorder', { link = 'Pmenu' })
583+
hl(0, 'BlinkCmpMenu', { link = 'Pmenu' })
584+
hl(0, 'BlinkCmpMenuBorder', { link = 'FloatBorder' })
585585
hl(0, 'BlinkCmpMenuSelection', { link = 'PmenuSel' })
586586
hl(0, 'BlinkCmpScrollBarThumb', { link = 'PmenuThumb' })
587587
hl(0, 'BlinkCmpScrollBarGutter', { link = 'PmenuSbar' })
@@ -591,7 +591,7 @@ theme.set_highlights = function(opts)
591591
hl(0, 'BlinkCmpLabelDescription', { fg = c.vscPopupFront, bg = 'NONE' })
592592
hl(0, 'BlinkCmpKind', { fg = c.vscPopupFront, bg = 'NONE' })
593593
hl(0, 'BlinkCmpSource', { fg = c.vscPopupFront, bg = 'NONE' })
594-
hl(0, 'BlinkCmpGhostText', { link = 'NonText' })
594+
hl(0, 'BlinkCmpGhostText', { fg = c.vscContextCurrent })
595595
hl(0, 'BlinkCmpDoc', { link = 'NormalFloat' })
596596
hl(0, 'BlinkCmpDocBorder', { link = 'FloatBorder' })
597597
hl(0, 'BlinkCmpDocSeparator', { link = 'NormalFloat' })
@@ -604,28 +604,28 @@ theme.set_highlights = function(opts)
604604
hl(0, 'BlinkCmpKindMethod', { fg = c.vscPink, bg = 'NONE' })
605605
hl(0, 'BlinkCmpKindFunction', { fg = c.vscPink, bg = 'NONE' })
606606
hl(0, 'BlinkCmpKindConstructor', { fg = c.vscUiOrange, bg = 'NONE' })
607-
hl(0, 'BlinkCmpKindField', { fg = c.vscPink, bg = 'NONE' })
607+
hl(0, 'BlinkCmpKindField', { link = '@variable.member' })
608608
hl(0, 'BlinkCmpKindVariable', { link = '@variable.member' })
609-
hl(0, 'BlinkCmpKindClass', { fg = c.vscUiOrange, bg = 'NONE' })
610-
hl(0, 'BlinkCmpKindInterface', { link = 'BlinkCmpKindClass' })
609+
hl(0, 'BlinkCmpKindClass', { link = 'BlinkCmpKindConstructor' })
610+
hl(0, 'BlinkCmpKindInterface', { fg = c.vscLightBlue, bg = 'NONE' })
611611
hl(0, 'BlinkCmpKindModule', { link = 'BlinkCmpKindClass' })
612-
hl(0, 'BlinkCmpKindProperty', { link = 'BlinkCmpKindField' })
612+
hl(0, 'BlinkCmpKindProperty', { fg = c.vscFront })
613613
hl(0, 'BlinkCmpKindUnit', { link = 'BlinkCmpKindField' })
614614
hl(0, 'BlinkCmpKindValue', { link = '@variable.member' })
615-
hl(0, 'BlinkCmpKindEnum', { link = '@variable.member' })
615+
hl(0, 'BlinkCmpKindEnum', { link = 'BlinkCmpKindConstructor' })
616616
hl(0, 'BlinkCmpKindKeyword', { fg = c.vscDarkYellow, bg = 'NONE' })
617617
hl(0, 'BlinkCmpKindSnippet', { fg = c.vscDarkYellow, bg = 'NONE' })
618-
hl(0, 'BlinkCmpKindColor', { link = 'BlinkCmpKindText' })
618+
hl(0, 'BlinkCmpKindColor', { link = 'cssColor' })
619619
hl(0, 'BlinkCmpKindFile', { link = '@text.uri' })
620620
hl(0, 'BlinkCmpKindReference', { link = '@variable.parameter.reference' })
621-
hl(0, 'BlinkCmpKindFolder', { link = '@text.uri' })
622-
hl(0, 'BlinkCmpKindEnumMember', { link = 'BlinkCmpKindText' })
623-
hl(0, 'BlinkCmpKindConstant', { link = 'BlinkCmpKindEnum' })
624-
hl(0, 'BlinkCmpKindStruct', { link = 'BlinkCmpKindClass' })
625-
hl(0, 'BlinkCmpKindEvent', { link = '@constant' })
621+
hl(0, 'BlinkCmpKindFolder', { fg = c.vscBlue, bg = 'NONE' })
622+
hl(0, 'BlinkCmpKindEnumMember', { link = '@variable.member' })
623+
hl(0, 'BlinkCmpKindConstant', { link = '@constant' })
624+
hl(0, 'BlinkCmpKindStruct', { link = '@structure' })
625+
hl(0, 'BlinkCmpKindEvent', { fg = c.vscDarkYellow, bg = 'NONE' })
626626
hl(0, 'BlinkCmpKindOperator', { link = '@operator' })
627627
hl(0, 'BlinkCmpKindTypeParameter', { link = '@variable.parameter' })
628-
628+
hl(0, 'BlinkCmpKindCopilot', { fg = c.vscBlueGreen })
629629

630630
-- HiPhish/rainbow-delimiters.nvim
631631
hl(0, 'RainbowDelimiterRed', { fg = c.vscPink, bg = 'NONE' })

0 commit comments

Comments
 (0)