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