From 50f7ae5cd2ba8630f0bd97a2e7bb38ee07943c2f Mon Sep 17 00:00:00 2001 From: Minijackson Date: Sun, 18 Dec 2022 16:09:55 +0100 Subject: theme: add different foreground colors --- common/theme.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) 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; description = "Like the background color, but one which burns the eyes a little bit more."; }; + foreground0 = mkOption { + type = types.str; + default = "#fbf1c7"; + description = "Foreground level 0"; + }; + + foreground1 = mkOption { + type = types.str; + default = "#ebdbb1"; + description = "Foreground level 1"; + }; + + foreground2 = mkOption { + type = types.str; + default = "#d5c4a1"; + description = "Foreground level 2"; + }; + + foreground3 = mkOption { + type = types.str; + default = "#bdae93"; + description = "Foreground level 3"; + }; + + foreground4 = mkOption { + type = types.str; + default = "#a89984"; + description = "Foreground level 4"; + }; + background0 = mkOption { type = types.str; default = "#1d2021"; -- cgit v1.2.3