theme: remove teritary color option

This commit is contained in:
Aly Raffauf 2024-08-09 13:45:59 -04:00
parent 26ebadeaae
commit a11e65b06f
2 changed files with 1 additions and 8 deletions

View file

@ -251,12 +251,6 @@ 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

@ -271,9 +271,8 @@ in {
colors = { colors = {
text = "#FFFFFF"; text = "#FFFFFF";
background = "#2a273f"; background = "#2a273f";
secondary = "#ea9a97";
primary = "#3e8fb0"; primary = "#3e8fb0";
tertiary = "#f6c177"; secondary = "#f6c177";
inactive = "#393552"; inactive = "#393552";
shadow = "#232136"; shadow = "#232136";
}; };