mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 08:51:54 -05:00
theme: add teritiary color
This commit is contained in:
parent
d5691c4d96
commit
26636a57cf
|
@ -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";
|
||||||
|
|
|
@ -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";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue