2025-01-08 01:05:45 -06:00
|
|
|
{flake, ...}: let
|
2025-01-08 19:06:14 -06:00
|
|
|
inherit
|
2025-01-14 16:17:42 -06:00
|
|
|
(flake.config.aesthetics.themes.schemes.catppuccin-macchiato)
|
|
|
|
colours
|
2025-01-08 19:06:14 -06:00
|
|
|
;
|
2025-01-08 01:05:45 -06:00
|
|
|
in {
|
|
|
|
colors = {
|
2025-01-14 16:17:42 -06:00
|
|
|
tableHeaderColor = colours.rosewater;
|
|
|
|
allCpuColor = colours.rosewater;
|
|
|
|
avgCpuColor = colours.maroon;
|
2025-01-08 01:05:45 -06:00
|
|
|
cpuCoreColors = [
|
2025-01-14 16:17:42 -06:00
|
|
|
colours.sapphire
|
|
|
|
colours.peach
|
|
|
|
colours.yellow
|
|
|
|
colours.green
|
|
|
|
colours.sky
|
|
|
|
colours.mauve
|
2025-01-08 01:05:45 -06:00
|
|
|
];
|
2025-01-14 16:17:42 -06:00
|
|
|
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;
|
2025-01-08 01:05:45 -06:00
|
|
|
gpuCoreColors = [
|
2025-01-14 16:17:42 -06:00
|
|
|
colours.sky
|
|
|
|
colours.mauve
|
|
|
|
colours.red
|
|
|
|
colours.peach
|
|
|
|
colours.yellow
|
|
|
|
colours.green
|
2025-01-08 01:05:45 -06:00
|
|
|
];
|
2025-01-14 16:17:42 -06:00
|
|
|
arcColor = colours.sky;
|
2024-11-20 17:47:07 -06:00
|
|
|
};
|
|
|
|
}
|