mirror of
https://github.com/gabehf/base46.git
synced 2026-03-11 08:20:54 -07:00
use black fg for atom_colored cmp style
This commit is contained in:
parent
8a8966df8c
commit
cdd98f308f
1 changed files with 2 additions and 3 deletions
|
|
@ -64,7 +64,7 @@ local styles = {
|
|||
atom_colored = {
|
||||
CmpItemMenu = { fg = colors.light_grey, italic = true },
|
||||
CmpPmenu = {
|
||||
bg = colors.darker_black,
|
||||
bg = colors.black2,
|
||||
},
|
||||
|
||||
CmpDoc = { bg = colors.darker_black },
|
||||
|
|
@ -107,8 +107,7 @@ end
|
|||
-- override item_kind highlights for atom_colored style
|
||||
if cmp_ui.style == "atom_colored" then
|
||||
for key, value in pairs(item_kinds) do
|
||||
item_kinds[key] =
|
||||
{ fg = vim.o.bg == "dark" and "#ffffff" or colors.black, bg = generate_color(value.fg, -3), bold = true }
|
||||
item_kinds[key] = { fg = colors.black, bg = generate_color(value.fg, -3), bold = true }
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue