This commit is contained in:
alisceon 2026-01-19 11:49:25 +01:00
parent bae43a2073
commit 03df32095d
3 changed files with 49 additions and 27 deletions

View file

@ -1,14 +1,32 @@
{ config, pkgs, lib, ... }:
{
stylix = {
stylix = {
enable = true;
autoEnable = true;
enableReleaseChecks = false;
base16Scheme = {
scheme = "My Custom Theme";
author = "you";
base16Scheme = "${pkgs.base16-schemes}/share/themes/selenized-black.yaml";
base00 = "#0f0f14";
base01 = "#16161e";
base02 = "#1f1f2a";
base03 = "#2a2a37";
base04 = "#a0a0b0";
base05 = "#c0c0d0";
base06 = "#e0e0f0";
base07 = "#ffffff";
base08 = "#f7768e"; # red
base09 = "#ff9e64"; # orange
base0A = "#e0af68"; # yellow
base0B = "#9ece6a"; # green
base0C = "#7dcfff"; # cyan
base0D = "#7aa2f7"; # blue
base0E = "#bb9af7"; # purple
base0F = "#db4b4b"; # brown
};
polarity = "dark";
fonts = {
monospace = {
package = pkgs.inconsolata;
@ -26,7 +44,6 @@
package = pkgs.noto-fonts-color-emoji;
name = "noto-fonts-color-emoji";
};
sizes = {
applications = 14;
terminal = 14;
@ -34,11 +51,16 @@
popups = 14;
};
};
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
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
}