mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-19 03:20:14 +00:00
.github
colorscheme
everforest
gruvbox
gruvbox-dark
default.nix
nord
README.md
deploy
docs
hosts
lib
misc
modules
overlays
pkgs
platforms
templates
.envrc
.gitignore
.stylua.toml
LICENSE
README.md
flake.lock
flake.nix
45 lines
1.4 KiB
Nix
45 lines
1.4 KiB
Nix
# Gruvbox with a darker background for greater contrast
|
|
|
|
{
|
|
name = "gruvbox-dark"; # Dark, Medium
|
|
author = "Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox), ElRastaOk (https://www.reddit.com/user/ElRastaOk)";
|
|
dark = {
|
|
base00 = "#1D2122"; # ---- This is the change from normal gruvbox
|
|
base01 = "#3c3836"; # ---
|
|
base02 = "#504945"; # --
|
|
base03 = "#665c54"; # -
|
|
base04 = "#bdae93"; # +
|
|
base05 = "#d5c4a1"; # ++
|
|
base06 = "#ebdbb2"; # +++
|
|
base07 = "#fbf1c7"; # ++++
|
|
base08 = "#fb4934"; # red
|
|
base09 = "#fe8019"; # orange
|
|
base0A = "#fabd2f"; # yellow
|
|
base0B = "#b8bb26"; # green
|
|
base0C = "#8ec07c"; # aqua/cyan
|
|
base0D = "#83a598"; # blue
|
|
base0E = "#d3869b"; # purple
|
|
base0F = "#d65d0e"; # brown
|
|
batTheme = "gruvbox-dark";
|
|
};
|
|
light = {
|
|
base00 = "#fbf1c7"; # ----
|
|
base01 = "#ebdbb2"; # ---
|
|
base02 = "#d5c4a1"; # --
|
|
base03 = "#bdae93"; # -
|
|
base04 = "#665c54"; # +
|
|
base05 = "#504945"; # ++
|
|
base06 = "#3c3836"; # +++
|
|
base07 = "#1D2122"; # ++++ Adjusted darker here
|
|
base08 = "#9d0006"; # red
|
|
base09 = "#af3a03"; # orange
|
|
base0A = "#b57614"; # yellow
|
|
base0B = "#79740e"; # green
|
|
base0C = "#427b58"; # aqua/cyan
|
|
base0D = "#076678"; # blue
|
|
base0E = "#8f3f71"; # purple
|
|
base0F = "#d65d0e"; # brown
|
|
batTheme = "gruvbox-light";
|
|
};
|
|
}
|