feat: dank themes module

This commit is contained in:
Nick 2025-01-14 16:17:42 -06:00
parent 616ce7fbca
commit 87b2f7e687
62 changed files with 1589 additions and 201 deletions

View file

@ -1,19 +1,22 @@
{flake, ...}: let
inherit
(flake.config.aesthetics.themes.theme)
colors
(flake.config.aesthetics.themes.schemes.catppuccin-macchiato)
colours
;
inherit
(flake.config.aesthetics.themes)
font
;
makeColor = c: "#" + c;
in {
global = {
font = "${font} 10";
background = makeColor colors.base;
background = makeColor colours.base;
corner_radius = 10;
fade_in_duration = 1000;
foreground = makeColor colors.text;
foreground = makeColor colours.text;
frame = 10000;
frame_color = makeColor colors.mauve;
frame_color = makeColor colours.mauve;
frame_width = 1;
icon_corner_radius = 10;
monitor = 1;
@ -25,7 +28,7 @@ in {
};
urgency_critical = {
frame_color = makeColor colors.peach;
frame_color = makeColor colours.peach;
timeout = 0;
};
}