modules/style: add gruvbox
This commit is contained in:
parent
80c1740ab1
commit
812812acac
2 changed files with 27 additions and 2 deletions
|
@ -34,9 +34,9 @@ in {
|
|||
options.modules.style = {
|
||||
colorScheme = {
|
||||
name = mkOption {
|
||||
type = nullOr (enum ["Catppuccin Mocha" "Zenburn" "Black Metal Venom"]);
|
||||
type = nullOr (enum ["Catppuccin Mocha" "Zenburn" "Black Metal Venom" "Gruvbox"]);
|
||||
description = "The colorscheme that should be used globally to theme your system.";
|
||||
default = "Catppuccin Mocha";
|
||||
default = "Gruvbox";
|
||||
};
|
||||
|
||||
slug = mkOption {
|
||||
|
|
25
modules/options/style/palettes/gruvbox.nix
Normal file
25
modules/options/style/palettes/gruvbox.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
colorscheme = {
|
||||
slug = "gruvbox";
|
||||
name = "Gruvbox";
|
||||
variant = "dark";
|
||||
palette = {
|
||||
base00 = "#282828"; # ----
|
||||
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
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue