A dark and earthy colorscheme for Neovim. (mirror) github.com/ptdewey/darkearth-nvim
neovim neovim-colorscheme fennel

refactor: removed bold on non-text for inlay hints

+3 -2
+1 -1
colors/darkearth.lua
··· 198 198 MatchParen = {fg = "#D7C484", bg = "#463939"}, 199 199 ModeMsg = {bold = true}, 200 200 MoreMsg = {fg = "#5F865F", bold = true}, 201 - NonText = {fg = "#7A6D52", bold = true}, 201 + NonText = {fg = "#7A6D52"}, 202 202 EndOfBuffer = {link = "NonText"}, 203 203 Whitespace = {link = "NonText"}, 204 204 markdownCodeDelimiter = {link = "NonText"},
+2 -1
lush_theme/darkearth.lua
··· 16 16 Normal({ fg = hsl(46, 51, 68), bg = bgc }), 17 17 SpecialKey({ fg = hsl(46, 51, 68) }), 18 18 TermCursor({ gui = "reverse" }), 19 - NonText({ fg = hsl(40, 20, 40), gui = "bold" }), 19 + -- NonText({ fg = hsl(40, 20, 40), gui = "bold" }), 20 + NonText({ fg = hsl(40, 20, 40) }), 20 21 EndOfBuffer({ NonText }), 21 22 Whitespace({ NonText }), 22 23 markdownHeadingRule({ NonText }),