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

feat: ModeMsg hlgroup

ptdewey edf42f60 2d45a7f9

+2
+1
colors/darkearth.lua
··· 92 92 theme["ErrorMsg"] = {fg = "#B36B42"} 93 93 theme["WarningMsg"] = {fg = "#B36B42"} 94 94 theme["MoreMsg"] = {bold = true, fg = "#5F865F"} 95 + theme["ModeMsg"] = {bold = true, fg = "#77824A"} 95 96 theme["Bold"] = {bold = true} 96 97 theme["Italic"] = {italic = true} 97 98 theme["Underlined"] = {fg = "#77824A", underline = true}
+1
fnl/darkearth/init.fnl
··· 172 172 (hl ErrorMsg :fg (darkOrange)) 173 173 (hl WarningMsg :fg (darkOrange)) 174 174 (hl MoreMsg :fg (teal) :bold true) 175 + (hl ModeMsg :fg (green) :bold true) 175 176 176 177 ;; Text styling 177 178 (hl Bold :bold true)