mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
41 lines
1 KiB
Nix
Executable file
41 lines
1 KiB
Nix
Executable file
{flake, ...}: let
|
|
inherit (flake.config.aesthetics.themes.theme) colors;
|
|
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;
|
|
};
|
|
}
|