theme stuff

This commit is contained in:
mjallen18
2025-12-01 16:21:12 -06:00
parent 47e2b0caf8
commit a0870e42ca
30 changed files with 313 additions and 1088 deletions

View File

@@ -2,7 +2,6 @@
config,
lib,
pkgs,
mjallenThemeComputed,
...
}:
with lib;
@@ -10,12 +9,12 @@ let
cfg = config.mjallen.programs.hyprland;
# Pull from global theme options
themeSize = config.mjallen.theme.gtk.size; # "standard" | "compact"
themeAccent = config.mjallen.theme.gtk.accent; # "default" | ... | "all"
themeTweak = config.mjallen.theme.gtk.tweak; # "normal" | "rimless" | "float" | "black"
themeColor = config.mjallen.theme.gtk.color; # "light" | "dark"
iconThemeVariant = config.mjallen.theme.icons.variant; # "default" | ... | "all"
iconScheme = config.mjallen.theme.icons.scheme; # "default" | "nord" | "dracula" | ...
themeSize = "standard"; # "standard" | "compact"
themeAccent = "default"; # "default" | ... | "all"
themeTweak = "normal"; # "normal" | "rimless" | "float" | "black"
themeColor = "dark"; # "light" | "dark"
iconThemeVariant = "default"; # "default" | ... | "all"
iconScheme = "nord"; # "default" | "nord" | "dracula" | ...
# Cursor
cursorTheme = "macOS";
@@ -23,7 +22,7 @@ let
cursorSize = 24;
# GTK
gtkTheme = mjallenThemeComputed.gtkTheme;
gtkTheme = "Colloid-dark-standard";
gtkThemePkg = pkgs.colloid-gtk-theme.override {
sizeVariants = [ themeSize ];
colorVariants = [ themeColor ];
@@ -32,7 +31,7 @@ let
};
# Icons
iconTheme = mjallenThemeComputed.iconTheme;
iconTheme = "Colloid-nord-dark";
iconThemePkg = pkgs.colloid-icon-theme.override {
schemeVariants = [ iconScheme ];
colorVariants = [ iconThemeVariant ];