From 26636a57cf5f126999be45ee5fb95b2a64dea7b7 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Fri, 9 Aug 2024 13:13:57 -0400 Subject: [PATCH] theme: add teritiary color --- homeManagerModules/options.nix | 6 ++++++ homes/aly/default.nix | 1 + 2 files changed, 7 insertions(+) diff --git a/homeManagerModules/options.nix b/homeManagerModules/options.nix index 08dd4ede..40bf203e 100644 --- a/homeManagerModules/options.nix +++ b/homeManagerModules/options.nix @@ -251,6 +251,12 @@ in { type = lib.types.str; }; + tertiary = lib.mkOption { + description = "Tertiary color."; + default = "#CA9EE6"; #"#99D1DB"; + type = lib.types.str; + }; + inactive = lib.mkOption { description = "Inactive color."; default = "#242424"; diff --git a/homes/aly/default.nix b/homes/aly/default.nix index b280d181..9826266d 100644 --- a/homes/aly/default.nix +++ b/homes/aly/default.nix @@ -273,6 +273,7 @@ in { background = "#2a273f"; secondary = "#ea9a97"; primary = "#3e8fb0"; + tertiary = "#f6c177"; inactive = "#393552"; shadow = "#232136"; };