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