diff --git a/lua/solarized/themes/default/lsp.lua b/lua/solarized/themes/default/lsp.lua index b7de3bb..5926548 100644 --- a/lua/solarized/themes/default/lsp.lua +++ b/lua/solarized/themes/default/lsp.lua @@ -10,9 +10,9 @@ 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.yellow, 20) }) -- used for highlighting inlay hints + set_hl('LspInlayHint', { fg = c.base01 }) -- used for highlighting inlay hints else - set_hl('LspInlayHint', { fg = lighten(c.yellow, 20) }) + set_hl('LspInlayHint', { fg = lighten(c.base01, 30) }) end -- if you want to me to enable the highlight groups bellow, please send a screenshot for me to see how diff --git a/lua/solarized/themes/neo/lsp.lua b/lua/solarized/themes/neo/lsp.lua index b7de3bb..5926548 100644 --- a/lua/solarized/themes/neo/lsp.lua +++ b/lua/solarized/themes/neo/lsp.lua @@ -10,9 +10,9 @@ 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.yellow, 20) }) -- used for highlighting inlay hints + set_hl('LspInlayHint', { fg = c.base01 }) -- used for highlighting inlay hints else - set_hl('LspInlayHint', { fg = lighten(c.yellow, 20) }) + set_hl('LspInlayHint', { fg = lighten(c.base01, 30) }) end -- if you want to me to enable the highlight groups bellow, please send a screenshot for me to see how