fix: too dark

This commit is contained in:
əlemi 2023-04-15 20:58:29 +02:00
parent e7005c5b1c
commit 1bb1b8898d
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -87,7 +87,7 @@ local PALETTE = {
function PALETTE:set_syntax_colors()
-- FG BG ATTR
vim.api.nvim_set_hl(0, "Normal", HIGHLIGHT(self.white.dark, nil, nil)) -- set color for whitespace
vim.api.nvim_set_hl(0, "Normal", HIGHLIGHT(self.white.normal, nil, nil)) -- set color for whitespace
vim.api.nvim_set_hl(0, "NormalNC", HIGHLIGHT(self.white.dark, nil, nil)) -- set color for whitespace
vim.api.nvim_set_hl(0, "Whitespace", HIGHLIGHT(self.black.normal, nil, nil)) -- set color for whitespace
vim.api.nvim_set_hl(0, "Comment", HIGHLIGHT(self.gray.normal, nil, nil))