mirror of
https://github.com/harivansh-afk/cozybox.nvim.git
synced 2026-04-15 05:02:08 +00:00
cmp colors
This commit is contained in:
parent
fd31836d31
commit
be246810d7
2 changed files with 24 additions and 0 deletions
|
|
@ -98,6 +98,14 @@ local default_config = {
|
|||
DiffAdd = { bg = "#1e2718" },
|
||||
DiffChange = { bg = "#1e1e18" },
|
||||
DiffDelete = { bg = "#2a1818" },
|
||||
BlinkCmpMenu = { bg = "#181818" },
|
||||
BlinkCmpMenuBorder = { fg = "#3c3836", bg = "#181818" },
|
||||
BlinkCmpMenuSelection = { bg = "#3c3836", bold = true },
|
||||
BlinkCmpDoc = { bg = "#181818" },
|
||||
BlinkCmpDocBorder = { fg = "#3c3836", bg = "#181818" },
|
||||
BlinkCmpDocSeparator = { fg = "#3c3836", bg = "#181818" },
|
||||
BlinkCmpSignatureHelp = { bg = "#181818" },
|
||||
BlinkCmpSignatureHelpBorder = { fg = "#3c3836", bg = "#181818" },
|
||||
},
|
||||
dim_inactive = false,
|
||||
transparent_mode = false,
|
||||
|
|
@ -615,6 +623,14 @@ local function get_groups()
|
|||
BlinkIndentBlueUnderline = { underline = true, sp = colors.blue },
|
||||
BlinkIndentCyanUnderline = { underline = true, sp = colors.aqua },
|
||||
BlinkIndentVioletUnderline = { underline = true, sp = colors.purple },
|
||||
BlinkCmpMenu = { fg = colors.fg1, bg = colors.bg0 },
|
||||
BlinkCmpMenuBorder = { fg = colors.bg2, bg = colors.bg0 },
|
||||
BlinkCmpMenuSelection = { fg = colors.fg1, bg = colors.bg2, bold = config.bold },
|
||||
BlinkCmpDoc = { fg = colors.fg1, bg = colors.bg0 },
|
||||
BlinkCmpDocBorder = { fg = colors.bg2, bg = colors.bg0 },
|
||||
BlinkCmpDocSeparator = { fg = colors.bg2, bg = colors.bg0 },
|
||||
BlinkCmpSignatureHelp = { fg = colors.fg1, bg = colors.bg0 },
|
||||
BlinkCmpSignatureHelpBorder = { fg = colors.bg2, bg = colors.bg0 },
|
||||
BlinkCmpLabel = { link = "CozyboxFg0" },
|
||||
BlinkCmpLabelDeprecated = { link = "CozyboxFg1" },
|
||||
BlinkCmpLabelMatch = { link = "CozyboxBlueBold" },
|
||||
|
|
|
|||
|
|
@ -44,5 +44,13 @@ return {
|
|||
DiffAdd = { bg = "#d9e8d2" },
|
||||
DiffChange = { bg = "#eee4c7" },
|
||||
DiffDelete = { bg = "#ffc7c7" },
|
||||
BlinkCmpMenu = { bg = background },
|
||||
BlinkCmpMenuBorder = { fg = "#c3c7c9", bg = background },
|
||||
BlinkCmpMenuSelection = { bg = selection, bold = true },
|
||||
BlinkCmpDoc = { bg = background },
|
||||
BlinkCmpDocBorder = { fg = "#c3c7c9", bg = background },
|
||||
BlinkCmpDocSeparator = { fg = "#c3c7c9", bg = background },
|
||||
BlinkCmpSignatureHelp = { bg = background },
|
||||
BlinkCmpSignatureHelpBorder = { fg = "#c3c7c9", bg = background },
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue