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

@ -3,7 +3,10 @@
pkgs,
...
}: let
inherit (flake.config.aesthetics.themes.theme) font;
inherit
(flake.config.aesthetics.themes)
font
;
in {
confirm-close-surface = false;
window-decoration = false;

View file

@ -1,29 +1,32 @@
{flake, ...}: let
inherit (flake.config.aesthetics.themes.theme) colors;
inherit
(flake.config.aesthetics.themes.schemes.catppuccin-macchiato)
colours
;
in {
catppuccin-macchiato = {
background = "${colors.base}";
cursor-color = "${colors.rosewater}";
foreground = "${colors.text}";
background = "${colours.base}";
cursor-color = "${colours.rosewater}";
foreground = "${colours.text}";
palette = [
"0=${colors.surface1}"
"1=${colors.red}"
"2=${colors.green}"
"3=${colors.yellow}"
"4=${colors.blue}"
"5=${colors.pink}"
"6=${colors.teal}"
"7=${colors.subtext0}"
"8=${colors.surface2}"
"9=${colors.red}"
"10=${colors.green}"
"11=${colors.yellow}"
"12=${colors.blue}"
"13=${colors.pink}"
"14=${colors.teal}"
"15=${colors.subtext1}"
"0=${colours.surface1}"
"1=${colours.red}"
"2=${colours.green}"
"3=${colours.yellow}"
"4=${colours.blue}"
"5=${colours.pink}"
"6=${colours.teal}"
"7=${colours.subtext0}"
"8=${colours.surface2}"
"9=${colours.red}"
"10=${colours.green}"
"11=${colours.yellow}"
"12=${colours.blue}"
"13=${colours.pink}"
"14=${colours.teal}"
"15=${colours.subtext1}"
];
selection-background = "${colors.surface2}";
selection-foreground = "${colors.text}";
selection-background = "${colours.surface2}";
selection-foreground = "${colours.text}";
};
}