dotfiles/home/modules/bottom/config/settings.nix
2025-01-14 16:17:42 -06:00

44 lines
1.1 KiB
Nix
Executable file

{flake, ...}: let
inherit
(flake.config.aesthetics.themes.schemes.catppuccin-macchiato)
colours
;
in {
colors = {
tableHeaderColor = colours.rosewater;
allCpuColor = colours.rosewater;
avgCpuColor = colours.maroon;
cpuCoreColors = [
colours.sapphire
colours.peach
colours.yellow
colours.green
colours.sky
colours.mauve
];
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 = [
colours.sky
colours.mauve
colours.red
colours.peach
colours.yellow
colours.green
];
arcColor = colours.sky;
};
}