mirror of
https://github.com/harivansh-afk/cozybox.nvim.git
synced 2026-04-15 07:04:45 +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" },
|
DiffAdd = { bg = "#1e2718" },
|
||||||
DiffChange = { bg = "#1e1e18" },
|
DiffChange = { bg = "#1e1e18" },
|
||||||
DiffDelete = { bg = "#2a1818" },
|
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,
|
dim_inactive = false,
|
||||||
transparent_mode = false,
|
transparent_mode = false,
|
||||||
|
|
@ -615,6 +623,14 @@ local function get_groups()
|
||||||
BlinkIndentBlueUnderline = { underline = true, sp = colors.blue },
|
BlinkIndentBlueUnderline = { underline = true, sp = colors.blue },
|
||||||
BlinkIndentCyanUnderline = { underline = true, sp = colors.aqua },
|
BlinkIndentCyanUnderline = { underline = true, sp = colors.aqua },
|
||||||
BlinkIndentVioletUnderline = { underline = true, sp = colors.purple },
|
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" },
|
BlinkCmpLabel = { link = "CozyboxFg0" },
|
||||||
BlinkCmpLabelDeprecated = { link = "CozyboxFg1" },
|
BlinkCmpLabelDeprecated = { link = "CozyboxFg1" },
|
||||||
BlinkCmpLabelMatch = { link = "CozyboxBlueBold" },
|
BlinkCmpLabelMatch = { link = "CozyboxBlueBold" },
|
||||||
|
|
|
||||||
|
|
@ -44,5 +44,13 @@ return {
|
||||||
DiffAdd = { bg = "#d9e8d2" },
|
DiffAdd = { bg = "#d9e8d2" },
|
||||||
DiffChange = { bg = "#eee4c7" },
|
DiffChange = { bg = "#eee4c7" },
|
||||||
DiffDelete = { bg = "#ffc7c7" },
|
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