diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-05-14 17:24:25 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-05-14 17:24:25 -0700 |
| commit | 0dc687871a859f78652ad959f7f9a9df7ee1a2e9 (patch) | |
| tree | ea892cb26b4c32ad0387a3b047402eef4eef6b40 /modules/home/colors.nix | |
| parent | ab0151a45da61c16f18b8a6c158fc8e10a865a1c (diff) | |
Restructuring
Diffstat (limited to 'modules/home/colors.nix')
| -rw-r--r-- | modules/home/colors.nix | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/modules/home/colors.nix b/modules/home/colors.nix deleted file mode 100644 index ecafe62..0000000 --- a/modules/home/colors.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ lib, ... }: - -with lib; - -{ - options.colors = - let - mkColorOption = name: { - inherit name; - value = mkOption { -# type = types.strMatching "[a-fA-F0-9]{6}"; - type = types.strMatching "[a-fA-F0-9]*"; - description = "Color ${name}."; - }; - }; - in listToAttrs (map mkColorOption [ - "primary" "secondary" - "foreground" "foregroundAlt" - "background" "backgroundAlt" - - "accent" - - "black" "red" "green" "yellow" "blue" "magenta" "cyan" "white" - "brightBlack" "brightRed" "brightGreen" "brightYellow" "brightBlue" "brightMagenta" "brightCyan" "brightWhite" - - "bg" "bg0" "bg1" "bg2" "bg3" "bg4" - "fg" "fg0" "fg1" "fg2" "fg3" "fg4" - - "orange" "brightOrange" - ]); -} |