Minor changes to tokyodark nvim theme (visual highlight, remove italics)

This commit is contained in:
2025-11-18 18:47:35 -06:00
parent 56557f4cf0
commit ae1166a463

View File

@@ -4,11 +4,20 @@ return {
lazy = false, lazy = false,
priority = 1000, priority = 1000,
opts = { opts = {
custom_highlights = function(highlights, _palette) custom_highlights = function(highlights, palette)
highlights.Comment['fg'] = "#8a9097" highlights.Comment['fg'] = "#8a9097"
highlights.LineNr['fg'] = "#8088A8" highlights.LineNr['fg'] = "#8088A8"
highlights.Visual['bg'] = palette.bg4
return highlights return highlights
end, end,
gamma = 0.92, -- brightness
styles = {
comments = { italic = true },
keywords = { italic = false },
identifiers = { italic = false },
functions = {},
variables = {},
},
}, },
}, },
{ {