nixos-config/config/modules/theme.nix

31 lines
449 B
Nix
Raw Normal View History

2024-08-01 23:16:23 +00:00
{
border-radius = 5;
colors = {
background = "#282A2E";
background-alt = "#373B41";
foreground = "#C5C8C6";
primary = "#F0C674";
secondary = "#8ABEB7";
alert = "#A54242";
disabled = "#707880";
};
2024-08-01 23:25:41 +00:00
sizing = rec {
2024-08-01 23:16:23 +00:00
xs = 1;
s = 2;
m = 4;
l = 8;
xl = 16;
2024-08-01 23:25:41 +00:00
str = {
xs = toString xs;
s = toString s;
m = toString m;
l = toString l;
xl = toString xl;
};
2024-08-01 23:16:23 +00:00
};
}