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

Configure Feed

Select the types of activity you want to include in your feed.

fix: fix darkearth diff group backgrounds to have legible text

+9 -6
+3 -3
colors/darkearth.lua
··· 218 218 theme["GitSignsDelete"] = {link = "Removed"} 219 219 end 220 220 theme["Error"] = {bg = "#B3664D", fg = "#D7C484"} 221 - theme["DiffAdd"] = {bg = "#5F865F"} 222 - theme["DiffChange"] = {bg = "#675642"} 223 - theme["DiffDelete"] = {bg = "#B36B42"} 221 + theme["DiffAdd"] = {bg = "#2A3325"} 222 + theme["DiffChange"] = {bg = "#332E25"} 223 + theme["DiffDelete"] = {bg = "#352A25"} 224 224 theme["FzfLuaCursor"] = {link = "Cursor"} 225 225 vim.cmd("highlight clear") 226 226 vim.cmd("set t_Co=256")
+6 -3
fnl/darkearth/init.fnl
··· 19 19 (defcolor delim "#80744D") 20 20 (defcolor altBg "#212121") 21 21 (defcolor darkOrange "#B36B42") 22 + (defcolor diffAddBg "#2A3325") 23 + (defcolor diffChangeBg "#332E25") 24 + (defcolor diffDeleteBg "#352A25") 22 25 23 26 (defcolor darkGreen "#252F1E") 24 27 (defcolor darkGreenAlt "#444A2B") ··· 52 55 53 56 ;; Theme-specific overrides 54 57 (hl Error :fg (fg) :bg (red)) 55 - (hl DiffAdd :bg (teal)) 56 - (hl DiffChange :bg (diffChange)) 57 - (hl DiffDelete :bg (darkOrange)) 58 + (hl DiffAdd :bg (diffAddBg)) 59 + (hl DiffChange :bg (diffChangeBg)) 60 + (hl DiffDelete :bg (diffDeleteBg)) 58 61 (ln FzfLuaCursor Cursor) 59 62 60 63 ; Colorscheme setup