Convert remaining bottom config to use base16 colour definitions

This commit is contained in:
Evie Litherland-Smith 2024-02-16 10:00:40 +00:00
parent 104f2c8708
commit f142f7f6d2

View file

@ -1,28 +1,30 @@
{config, ...}: {
programs.bottom = {
enable = true;
settings.colors = with config.lib.stylix.colors.withHashtag; {
table_header_color = base06;
all_cpu_color = base06;
avg_cpu_color = "#eba0ac";
cpu_core_colors = [base08 base09 base0A base0B "#74c7ec" base0E];
settings.colors = with config.lib.stylix.colors.withHashtag; let
rainbow = [base08 base09 base0A base0B base0C base0D base0E base0F];
in {
table_header_color = base05;
all_cpu_color = base03;
avg_cpu_color = base05;
cpu_core_colors = rainbow;
ram_color = base0B;
swap_color = base09;
rx_color = base0B;
tx_color = base08;
widget_title_color = base0F;
widget_title_color = base0C;
border_color = base02;
highlighted_border_color = base07;
text_color = base04;
graph_color = "#a6adc8";
cursor_color = "#f5c2e7";
highlighted_border_color = base0E;
text_color = base05;
graph_color = base04;
cursor_color = base02;
selected_text_color = base05;
selected_bg_color = base0E;
selected_bg_color = base01;
high_battery_color = base0B;
medium_battery_color = base0A;
low_battery_color = base08;
gpu_core_colors = ["#74c7ec" base0E base08 base09 base0A base0B];
arc_color = "#89dceb";
gpu_core_colors = rainbow;
arc_color = base0C;
};
};
}