fix: revert conceal bg, theme lazy too
This commit is contained in:
parent
690c51427b
commit
fc3483d909
1 changed files with 7 additions and 1 deletions
|
@ -196,7 +196,7 @@ function PALETTE:set_ui_colors()
|
|||
vim.api.nvim_set_hl(0, "CursorLineNr", HIGHLIGHT(self.yellow.normal, self.black.normal, {bold=true})) -- CursorLine color (in number column)
|
||||
vim.api.nvim_set_hl(0, "LineNr", HIGHLIGHT(self.black.bright, nil, nil)) -- Number column color
|
||||
vim.api.nvim_set_hl(0, "MsgArea", HIGHLIGHT(self.white.dark, nil, nil)) -- Number column color
|
||||
vim.api.nvim_set_hl(0, "Conceal", HIGHLIGHT(self.white.dark, self.black.dark, nil))
|
||||
vim.api.nvim_set_hl(0, "Conceal", HIGHLIGHT(self.gray.normal, self.black.normal, nil))
|
||||
|
||||
vim.api.nvim_set_hl(0, "Pmenu", HIGHLIGHT(nil, self.black.normal, nil)) -- Balloon color
|
||||
vim.api.nvim_set_hl(0, "PmenuSel", HIGHLIGHT(nil, self.gray.dark, nil)) -- Balloon color
|
||||
|
@ -311,6 +311,11 @@ function PALETTE:set_telescope_colors()
|
|||
vim.api.nvim_set_hl(0, "TelescopeNormal", HIGHLIGHT(nil, self.none.normal, nil));
|
||||
end
|
||||
|
||||
function PALETTE:set_lazy_colors()
|
||||
-- FG BG ATTR
|
||||
vim.api.nvim_set_hl(0, "LazyButtonActive", HIGHLIGHT(nil, self.gray.dark, {bold=true}));
|
||||
end
|
||||
|
||||
function PALETTE:set_dap_colors()
|
||||
-- FG BG ATTR
|
||||
vim.api.nvim_set_hl(0, "DapMarks", HIGHLIGHT(self.purple.normal, nil, {bold=true}))
|
||||
|
@ -360,6 +365,7 @@ function PALETTE:set_colors()
|
|||
self:set_treesitter_colors()
|
||||
self:set_gitsigns_colors()
|
||||
self:set_telescope_colors()
|
||||
self:set_lazy_colors()
|
||||
self:set_cmp_colors()
|
||||
self:set_dap_colors()
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue