63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
stylix = {
|
|
enable = true;
|
|
autoEnable = true;
|
|
enableReleaseChecks = false;
|
|
base16Scheme = { # based on https://github.com/tinted-theming/schemes/blob/spec-0.11/base16/selenized-black.yaml
|
|
base00 = "#181818";
|
|
base01 = "#252525";
|
|
base02 = "#3b3b3b";
|
|
base03 = "#777777";
|
|
base04 = "#777777";
|
|
base05 = "#b9b9b9";
|
|
base06 = "#dedede";
|
|
base07 = "#dedede";
|
|
base08 = "#ed4a46";
|
|
base09 = "#e67f43";
|
|
base0A = "#dbb32d";
|
|
base0B = "#70b433";
|
|
base0C = "#3fc5b7";
|
|
base0D = "#a580e2";
|
|
base0E = "#368aeb";
|
|
base0F = "#eb6eb7";
|
|
};
|
|
|
|
polarity = "dark";
|
|
fonts = {
|
|
monospace = {
|
|
package = pkgs.inconsolata;
|
|
name = "Inconsolata";
|
|
};
|
|
sansSerif = {
|
|
package = pkgs.noto-fonts;
|
|
name = "NotoSans";
|
|
};
|
|
serif = {
|
|
package = pkgs.noto-fonts;
|
|
name = "NotoSerif";
|
|
};
|
|
emoji = {
|
|
package = pkgs.noto-fonts-color-emoji;
|
|
name = "noto-fonts-color-emoji";
|
|
};
|
|
sizes = {
|
|
applications = 14;
|
|
terminal = 14;
|
|
desktop = 14;
|
|
popups = 14;
|
|
};
|
|
};
|
|
cursor = {
|
|
package = pkgs.whitesur-cursors;
|
|
name = "WhiteSur-cursors";
|
|
size = 20;
|
|
};
|
|
icons = {
|
|
enable = true;
|
|
package = pkgs.whitesur-icon-theme;
|
|
light = "WhiteSur-light";
|
|
dark = "WhiteSur-dark";
|
|
};
|
|
}; # end stylix
|
|
}
|