From 05aac1365649a4333e121f2cce3610b8f8a37db9 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Tue, 25 Feb 2025 07:40:00 +0100 Subject: [PATCH] style: add Black Metal Venom palette --- modules/options/style/colors.nix | 2 +- .../style/palettes/black-metal-venom.nix | 26 +++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 modules/options/style/palettes/black-metal-venom.nix diff --git a/modules/options/style/colors.nix b/modules/options/style/colors.nix index 47c35b2..c9ad218 100644 --- a/modules/options/style/colors.nix +++ b/modules/options/style/colors.nix @@ -34,7 +34,7 @@ in { options.modules.style = { colorScheme = { name = mkOption { - type = nullOr (enum ["Catppuccin Mocha" "Zenburn"]); + type = nullOr (enum ["Catppuccin Mocha" "Zenburn" "Black Metal Venom"]); description = "The colorscheme that should be used globally to theme your system."; default = "Catppuccin Mocha"; }; diff --git a/modules/options/style/palettes/black-metal-venom.nix b/modules/options/style/palettes/black-metal-venom.nix new file mode 100644 index 0000000..a765702 --- /dev/null +++ b/modules/options/style/palettes/black-metal-venom.nix @@ -0,0 +1,26 @@ +# author: "metalelf0 (https://github.com/metalelf0)" +{ + colorscheme = { + slug = "black-metal-venom"; + name = "Black Metal Venom"; + variant = "dark"; + palette = { + base00 = "#000000"; + base01 = "#121212"; + base02 = "#222222"; + base03 = "#333333"; + base04 = "#999999"; + base05 = "#c1c1c1"; + base06 = "#999999"; + base07 = "#c1c1c1"; + base08 = "#5f8787"; + base09 = "#aaaaaa"; + base0A = "#79241f"; + base0B = "#f8f7f2"; + base0C = "#aaaaaa"; + base0D = "#888888"; + base0E = "#999999"; + base0F = "#444444"; + }; + }; +}