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: tweak diff groups

+12 -12
+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", fg = "#212121"} 222 - theme["DiffChange"] = {bg = "#675642", fg = "#212121"} 223 - theme["DiffDelete"] = {bg = "#B36B42", fg = "#212121"} 221 + theme["DiffAdd"] = {bg = "#5F865F"} 222 + theme["DiffChange"] = {bg = "#675642"} 223 + theme["DiffDelete"] = {bg = "#B36B42"} 224 224 theme["FzfLuaCursor"] = {link = "Cursor"} 225 225 vim.cmd("highlight clear") 226 226 vim.cmd("set t_Co=256")
+3 -3
colors/lightearth.lua
··· 218 218 theme["GitSignsDelete"] = {link = "Removed"} 219 219 end 220 220 theme["Error"] = {bg = "#B3664D", fg = "#F5F0E6"} 221 - theme["DiffAdd"] = {bg = "#CCD8C4", fg = "#252F1E"} 222 - theme["DiffChange"] = {bg = "#D8CEBA", fg = "#252F1E"} 223 - theme["DiffDelete"] = {bg = "#D8C6BE", fg = "#252F1E"} 221 + theme["DiffAdd"] = {bg = "#CCD8C4"} 222 + theme["DiffChange"] = {bg = "#D8CEBA"} 223 + theme["DiffDelete"] = {bg = "#D8C6BE"} 224 224 theme["FzfLuaBackdrop"] = {fg = "#C2BAA8"} 225 225 theme["FzfLuaCursor"] = {bg = "#77824A", fg = "#F5F0E6"} 226 226 theme["TodoBgTODO"] = {bg = "#B8BE96", bold = true, fg = "#252F1E"}
+3 -3
fnl/darkearth/init.fnl
··· 52 52 53 53 ;; Theme-specific overrides 54 54 (hl Error :fg (fg) :bg (red)) 55 - (hl DiffAdd :fg (altBg) :bg (teal)) 56 - (hl DiffChange :fg (altBg) :bg (diffChange)) 57 - (hl DiffDelete :fg (altBg) :bg (darkOrange)) 55 + (hl DiffAdd :bg (teal)) 56 + (hl DiffChange :bg (diffChange)) 57 + (hl DiffDelete :bg (darkOrange)) 58 58 (ln FzfLuaCursor Cursor) 59 59 60 60 ; Colorscheme setup
+3 -3
fnl/lightearth/init.fnl
··· 56 56 57 57 ;; Theme-specific overrides 58 58 (hl Error :fg (altBg) :bg (red)) 59 - (hl DiffAdd :fg (fg) :bg (diffAddBg)) 60 - (hl DiffChange :fg (fg) :bg (diffChangeBg)) 61 - (hl DiffDelete :fg (fg) :bg (diffDeleteBg)) 59 + (hl DiffAdd :bg (diffAddBg)) 60 + (hl DiffChange :bg (diffChangeBg)) 61 + (hl DiffDelete :bg (diffDeleteBg)) 62 62 (hl FzfLuaBackdrop :fg (nonText)) 63 63 (hl FzfLuaCursor :fg (altBg) :bg (green)) 64 64 (hl TodoBgTODO :fg (fg) :bg (darkGreenAlt) :bold true)