mirror of
https://github.com/maxmx03/solarized.nvim.git
synced 2026-09-10 07:26:26 -04:00
refactor: Adjusted the color of lspinlayhint to improve visibility on dark backgrounds.
This commit is contained in:
parent
8753f75642
commit
430e2dd5ad
|
|
@ -10,7 +10,7 @@ return function(c)
|
|||
set_hl('LspReferenceWrite', { link = 'Visual' }) -- used for highlighting "write" references
|
||||
|
||||
if vim.o.background == 'dark' then
|
||||
set_hl('LspInlayHint', { fg = darken(c.base01, 30) }) -- used for highlighting inlay hints
|
||||
set_hl('LspInlayHint', { fg = c.base01 }) -- used for highlighting inlay hints
|
||||
else
|
||||
set_hl('LspInlayHint', { fg = lighten(c.base01, 30) })
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue