theme: add teritiary color

This commit is contained in:
Aly Raffauf 2024-08-09 13:13:57 -04:00
parent d5691c4d96
commit 26636a57cf
2 changed files with 7 additions and 0 deletions

View file

@ -251,6 +251,12 @@ in {
type = lib.types.str; type = lib.types.str;
}; };
tertiary = lib.mkOption {
description = "Tertiary color.";
default = "#CA9EE6"; #"#99D1DB";
type = lib.types.str;
};
inactive = lib.mkOption { inactive = lib.mkOption {
description = "Inactive color."; description = "Inactive color.";
default = "#242424"; default = "#242424";

View file

@ -273,6 +273,7 @@ in {
background = "#2a273f"; background = "#2a273f";
secondary = "#ea9a97"; secondary = "#ea9a97";
primary = "#3e8fb0"; primary = "#3e8fb0";
tertiary = "#f6c177";
inactive = "#393552"; inactive = "#393552";
shadow = "#232136"; shadow = "#232136";
}; };