fix: float title was not readable

This commit is contained in:
əlemi 2024-09-15 12:15:21 +02:00
parent eb1a617c3e
commit 10bfcfaa78
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -209,7 +209,7 @@ function PALETTE:set_ui_colors()
-- vim.api.nvim_set_hl(0, "PmenuThumb", HIGHLIGHT(nil, self.black.normal, nil)) -- Balloon color
vim.api.nvim_set_hl(0, "NormalFloat", HIGHLIGHT(self.white.dark, self.black.normal, nil)) -- Used mostly for replace popup
vim.api.nvim_set_hl(0, "FloatBorder", HIGHLIGHT(self.black.bright, nil, nil)) -- Used mostly for replace popup
vim.api.nvim_set_hl(0, "FloatTitle", HIGHLIGHT(self.white.dark, self.gray.bright, nil)) -- custom definition of dessing.nvim
vim.api.nvim_set_hl(0, "FloatTitle", HIGHLIGHT(self.black.dark, self.gray.bright, {bold=true})) -- custom definition of dessing.nvim
-- must configure rust-tools to use this as group
vim.api.nvim_set_hl(0, "InlayHint", HIGHLIGHT(self.gray.dark, nil, nil))