summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/theme.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/common/theme.nix b/common/theme.nix
index cadd65d..d9596a8 100644
--- a/common/theme.nix
+++ b/common/theme.nix
@@ -72,6 +72,36 @@ with lib;
72 description = "Like the background color, but one which burns the eyes a little bit more."; 72 description = "Like the background color, but one which burns the eyes a little bit more.";
73 }; 73 };
74 74
75 foreground0 = mkOption {
76 type = types.str;
77 default = "#fbf1c7";
78 description = "Foreground level 0";
79 };
80
81 foreground1 = mkOption {
82 type = types.str;
83 default = "#ebdbb1";
84 description = "Foreground level 1";
85 };
86
87 foreground2 = mkOption {
88 type = types.str;
89 default = "#d5c4a1";
90 description = "Foreground level 2";
91 };
92
93 foreground3 = mkOption {
94 type = types.str;
95 default = "#bdae93";
96 description = "Foreground level 3";
97 };
98
99 foreground4 = mkOption {
100 type = types.str;
101 default = "#a89984";
102 description = "Foreground level 4";
103 };
104
75 background0 = mkOption { 105 background0 = mkOption {
76 type = types.str; 106 type = types.str;
77 default = "#1d2021"; 107 default = "#1d2021";