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

feat: wezterm color schemes

+80
extras/base16-darkearth.sh extras/base16/base16-darkearth.sh
extras/darkearth.yaml extras/base16/darkearth.yaml
+40
extras/wezterm/darkearth.toml
··· 1 + # WezTerm color scheme - DarkEarth 2 + # Add to your wezterm.lua: config.color_scheme = "DarkEarth" 3 + # Or place this file in ~/.config/wezterm/colors/darkearth.toml 4 + 5 + [colors] 6 + foreground = "#D7C484" 7 + background = "#24211E" 8 + cursor_fg = "#212121" 9 + cursor_bg = "#D7C484" 10 + cursor_border = "#D7C484" 11 + selection_fg = "#D7C484" 12 + selection_bg = "#3B3330" 13 + scrollbar_thumb = "#6B6461" 14 + split = "#77824A" 15 + 16 + ansi = [ 17 + "#24211E", # black (background) 18 + "#B3664D", # red 19 + "#5F865F", # green (teal) 20 + "#77824A", # yellow (green) 21 + "#BB7844", # blue (orange) 22 + "#B3854D", # magenta (string) 23 + "#669977", # cyan (operator) 24 + "#D7C484", # white (foreground) 25 + ] 26 + 27 + brights = [ 28 + "#6E665E", # bright black (comment) 29 + "#B36B42", # bright red (dark orange) 30 + "#5F865F", # bright green (teal) 31 + "#C9A654", # bright yellow (diagnostic info) 32 + "#BB7844", # bright blue (orange) 33 + "#80744D", # bright magenta (delimiter) 34 + "#669977", # bright cyan (operator) 35 + "#D7C484", # bright white (foreground) 36 + ] 37 + 38 + [metadata] 39 + name = "DarkEarth" 40 + author = "ptdewey"
+40
extras/wezterm/lightearth.toml
··· 1 + # WezTerm color scheme - LightEarth 2 + # Add to your wezterm.lua: config.color_scheme = "LightEarth" 3 + # Or place this file in ~/.config/wezterm/colors/lightearth.toml 4 + 5 + [colors] 6 + foreground = "#252F1E" 7 + background = "#F0EBE1" 8 + cursor_fg = "#F5F0E6" 9 + cursor_bg = "#252F1E" 10 + cursor_border = "#252F1E" 11 + selection_fg = "#252F1E" 12 + selection_bg = "#DCD4C6" 13 + scrollbar_thumb = "#6B6461" 14 + split = "#77824A" 15 + 16 + ansi = [ 17 + "#E6E0D6", # black (tabline bg, used by tmux bar) 18 + "#B3664D", # red 19 + "#5F865F", # green (teal) 20 + "#77824A", # yellow (green) 21 + "#BB7844", # blue (orange) 22 + "#B3854D", # magenta (string) 23 + "#669977", # cyan (operator) 24 + "#F0EBE1", # white (background) 25 + ] 26 + 27 + brights = [ 28 + "#A09890", # bright black (comment) 29 + "#B36B42", # bright red (dark orange) 30 + "#5F865F", # bright green (teal) 31 + "#9A8030", # bright yellow (diagnostic info) 32 + "#BB7844", # bright blue (orange) 33 + "#80744D", # bright magenta (delimiter) 34 + "#669977", # bright cyan (operator) 35 + "#F5F0E6", # bright white (alt background) 36 + ] 37 + 38 + [metadata] 39 + name = "LightEarth" 40 + author = "ptdewey"