2020-04-27 05:39:00 +04:00
|
|
|
{ config, lib, pkgs, inputs, ... }:
|
2020-02-17 17:00:59 +04:00
|
|
|
with lib;
|
|
|
|
let
|
2021-06-10 19:58:51 +04:00
|
|
|
colorType =
|
|
|
|
types.addCheck types.str (x: !isNull (builtins.match "[0-9a-fA-F]{6}" x));
|
|
|
|
color = mkOption { type = colorType; };
|
2020-02-17 17:00:59 +04:00
|
|
|
|
2021-06-10 19:58:51 +04:00
|
|
|
font = {
|
|
|
|
family = mkOption { type = types.str; };
|
|
|
|
size = mkOption { type = types.int; };
|
|
|
|
};
|
2020-02-17 17:00:59 +04:00
|
|
|
|
|
|
|
fromYAML = yaml:
|
|
|
|
builtins.fromJSON (builtins.readFile (pkgs.stdenv.mkDerivation {
|
|
|
|
name = "fromYAML";
|
|
|
|
phases = [ "buildPhase" ];
|
|
|
|
buildPhase = "echo '${yaml}' | ${pkgs.yaml2json}/bin/yaml2json > $out";
|
|
|
|
}));
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
themes = {
|
2021-06-10 19:58:51 +04:00
|
|
|
colors = builtins.listToAttrs (map (name: {
|
|
|
|
inherit name;
|
|
|
|
value = color;
|
|
|
|
}) [
|
|
|
|
"base00"
|
|
|
|
"base01"
|
|
|
|
"base02"
|
|
|
|
"base03"
|
|
|
|
"base04"
|
|
|
|
"base05"
|
|
|
|
"base06"
|
|
|
|
"base07"
|
|
|
|
"base08"
|
|
|
|
"base09"
|
|
|
|
"base0A"
|
|
|
|
"base0B"
|
|
|
|
"base0C"
|
|
|
|
"base0D"
|
|
|
|
"base0E"
|
|
|
|
"base0F"
|
|
|
|
]);
|
|
|
|
fonts = {
|
|
|
|
main = font;
|
|
|
|
serif = font;
|
|
|
|
mono = font;
|
2020-02-17 17:00:59 +04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = {
|
2021-06-10 19:58:51 +04:00
|
|
|
themes.colors = {
|
|
|
|
# H = 0, S = 0%
|
|
|
|
base00 = "000000"; # L = 0%
|
2023-01-23 22:12:37 +04:00
|
|
|
base01 = "1a1a1a"; # L = 10%
|
|
|
|
base02 = "333333"; # L = 20%
|
|
|
|
base03 = "808080"; # L = 50%
|
2021-06-10 19:58:51 +04:00
|
|
|
base04 = "cccccc"; # L = 80%
|
|
|
|
base05 = "ffffff"; # L = 100%
|
|
|
|
base06 = "e6e6e6"; # L = 90%
|
|
|
|
base07 = "e6e6e6"; # L = 90%
|
|
|
|
# L = 50%, S = 50%
|
|
|
|
base08 = "bf4040"; # H = 0 RED
|
|
|
|
base09 = "bf8040"; # H = 30 ORANGE
|
|
|
|
base0A = "bfbf40"; # H = 60 YELLOW-ish
|
|
|
|
base0B = "80bf40"; # H = 90 GREEN
|
|
|
|
# Whoa, a lot of hues are green!
|
|
|
|
base0C = "40bfbf"; # H = 180 TEAL
|
|
|
|
base0D = "407fbf"; # H = 210 BLUE
|
|
|
|
base0E = "7f40bf"; # H = 270 PURPLE
|
|
|
|
base0F = "bf40bf"; # H = 300 MAGENTA
|
|
|
|
};
|
2020-02-17 17:00:59 +04:00
|
|
|
};
|
|
|
|
}
|