Evie Litherland-Smith
8a7332af7c
Removed orange and brown to make a 6 colour rainbow, looks better on my 6-core processor
32 lines
887 B
Nix
32 lines
887 B
Nix
{config, ...}: {
|
|
programs.bottom = {
|
|
enable = true;
|
|
settings.colors = with config.lib.stylix.colors.withHashtag; let
|
|
rainbow = [red yellow green cyan blue magenta];
|
|
in {
|
|
table_header_color = base05;
|
|
all_cpu_color = base05;
|
|
avg_cpu_color = base05;
|
|
cpu_core_colors = rainbow;
|
|
ram_color = base08;
|
|
cache_color = base0B;
|
|
swap_color = base0D;
|
|
rx_color = base0B;
|
|
tx_color = base08;
|
|
widget_title_color = base0C;
|
|
border_color = base02;
|
|
highlighted_border_color = base0E;
|
|
text_color = base05;
|
|
graph_color = base04;
|
|
cursor_color = base02;
|
|
selected_text_color = base05;
|
|
selected_bg_color = base01;
|
|
high_battery_color = base0B;
|
|
medium_battery_color = base0A;
|
|
low_battery_color = base08;
|
|
gpu_core_colors = rainbow;
|
|
arc_color = base0C;
|
|
};
|
|
};
|
|
}
|