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,44 +1,44 @@
{flake, ...}: let
inherit
(flake.config.aesthetics.themes.theme)
colors
(flake.config.aesthetics.themes.schemes.catppuccin-macchiato)
colours
;
in {
colors = {
tableHeaderColor = colors.rosewater;
allCpuColor = colors.rosewater;
avgCpuColor = colors.maroon;
tableHeaderColor = colours.rosewater;
allCpuColor = colours.rosewater;
avgCpuColor = colours.maroon;
cpuCoreColors = [
colors.sapphire
colors.peach
colors.yellow
colors.green
colors.sky
colors.mauve
colours.sapphire
colours.peach
colours.yellow
colours.green
colours.sky
colours.mauve
];
ramColor = colors.green;
swapColor = colors.peach;
rxColor = colors.green;
txColor = colors.red;
widgetTitleColor = colors.flamingo;
borderColor = colors.surface2;
highlightedBorderColor = colors.pink;
textColor = colors.text;
graphColor = colors.subtext0;
cursorColor = colors.pink;
selectedTextColor = colors.crust;
selectedBgColor = colors.mauve;
highBatteryColor = colors.green;
mediumBatteryColor = colors.yellow;
lowBatteryColor = colors.red;
ramColor = colours.green;
swapColor = colours.peach;
rxColor = colours.green;
txColor = colours.red;
widgetTitleColor = colours.flamingo;
borderColor = colours.surface2;
highlightedBorderColor = colours.pink;
textColor = colours.text;
graphColor = colours.subtext0;
cursorColor = colours.pink;
selectedTextColor = colours.crust;
selectedBgColor = colours.mauve;
highBatteryColor = colours.green;
mediumBatteryColor = colours.yellow;
lowBatteryColor = colours.red;
gpuCoreColors = [
colors.sky
colors.mauve
colors.red
colors.peach
colors.yellow
colors.green
colours.sky
colours.mauve
colours.red
colours.peach
colours.yellow
colours.green
];
arcColor = colors.sky;
arcColor = colours.sky;
};
}