diff options
author | Minijackson <minijackson@riseup.net> | 2022-12-18 16:09:55 +0100 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2022-12-18 16:10:46 +0100 |
commit | 50f7ae5cd2ba8630f0bd97a2e7bb38ee07943c2f (patch) | |
tree | 8675131d7c47603a963d77a21fef509c63019539 /common | |
parent | 2a467837c8f2f0fd5bda8212eaffb9f3f2c6eee4 (diff) | |
download | nixos-config-reborn-50f7ae5cd2ba8630f0bd97a2e7bb38ee07943c2f.tar.gz nixos-config-reborn-50f7ae5cd2ba8630f0bd97a2e7bb38ee07943c2f.zip |
theme: add different foreground colors
Diffstat (limited to 'common')
-rw-r--r-- | common/theme.nix | 30 |
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"; |