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