mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
feat: dank themes module
This commit is contained in:
parent
616ce7fbca
commit
87b2f7e687
62 changed files with 1589 additions and 201 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue