mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-06 14:43:53 +00:00
65 lines
1.5 KiB
Nix
65 lines
1.5 KiB
Nix
|
{ pkgs, config, ... }: {
|
||
|
stylix = let
|
||
|
theme = config.module.themes.stylix.theme;
|
||
|
tinted = "${pkgs.base16-schemes}/share/themes/${theme}.yaml";
|
||
|
# eighties
|
||
|
# helios
|
||
|
# horizon-terminal-dark
|
||
|
# tokyo-city-terminal-dark
|
||
|
paradise = {
|
||
|
base00 = "#151515";
|
||
|
base01 = "#1F1F1F";
|
||
|
base02 = "#2E2E2E";
|
||
|
base03 = "#424242";
|
||
|
base04 = "#BBB6B6";
|
||
|
base05 = "#E8E3E3";
|
||
|
base06 = "#E8E3E3";
|
||
|
base07 = "#E8E3E3";
|
||
|
base08 = "#B66467";
|
||
|
base09 = "#D9BC8C";
|
||
|
base0A = "#D9BC8C";
|
||
|
base0B = "#8C977D";
|
||
|
base0C = "#8AA6A2";
|
||
|
base0D = "#8DA3B9";
|
||
|
base0E = "#A988B0";
|
||
|
base0F = "#BBB6B6";
|
||
|
};
|
||
|
daone = {
|
||
|
base00 = "181818";
|
||
|
base01 = "282828";
|
||
|
base02 = "585858";
|
||
|
base03 = "888888";
|
||
|
base04 = "c8c8c8";
|
||
|
base05 = "ffffff";
|
||
|
base06 = "ffffff";
|
||
|
base07 = "ffffff";
|
||
|
base08 = "fa7883";
|
||
|
base09 = "ffc387";
|
||
|
base0A = "ff9470";
|
||
|
base0B = "98c379";
|
||
|
base0C = "8af5ff";
|
||
|
base0D = "6bb8ff";
|
||
|
base0E = "e799ff";
|
||
|
base0F = "b3684f";
|
||
|
};
|
||
|
sweetpastel = {
|
||
|
base00 = "#1B1F23";
|
||
|
base01 = "#25292d";
|
||
|
base02 = "#2f3337";
|
||
|
base03 = "#393d41";
|
||
|
base04 = "#43474b";
|
||
|
base05 = "#FDE5E6";
|
||
|
base06 = "#DEE2E6";
|
||
|
base07 = "#F8F9FA";
|
||
|
base08 = "#e5a3a1";
|
||
|
base09 = "#F1C192";
|
||
|
base0A = "#ECE3B1";
|
||
|
base0B = "#B4E3AD";
|
||
|
base0C = "#F8B3CC";
|
||
|
base0D = "#A3CBE7";
|
||
|
base0E = "#CEACE8";
|
||
|
base0F = "#e5a3a1";
|
||
|
};
|
||
|
in { base16Scheme = paradise; };
|
||
|
}
|