1#Bashtop theme with flat-remix colors
2#by Daniel Ruiz de Alegría <daniel@drasite.com>
3
4# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
5# example for white: "#ffffff", "#ff" or "255 255 255".
6
7# All graphs and meters can be gradients
8# For single color graphs leave "mid" and "end" variable empty.
9# Use "start" and "end" variables for two color gradient
10# Use "start", "mid" and "end" for three color gradient
11
12# Main background, empty for terminal default, need to be empty if you want transparent background
13theme[main_bg]="#e4e4e7"
14
15# Main text color
16theme[main_fg]="#737680"
17
18# Title color for boxes
19theme[title]="#272a34"
20
21# Higlight color for keyboard shortcuts
22theme[hi_fg]="#90"
23
24# Background color of selected item in processes box
25theme[selected_bg]="#b8174c"
26
27# Foreground color of selected item in processes box
28theme[selected_fg]="#ff"
29
30# Color of inactive/disabled text
31theme[inactive_fg]="#40"
32
33# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
34theme[proc_misc]="#367bf0"
35
36# Cpu box outline color
37theme[cpu_box]="#367bf0"
38
39# Memory/disks box outline color
40theme[mem_box]="#19a187"
41
42# Net up/down box outline color
43theme[net_box]="#fd3535"
44
45# Processes box outline color
46theme[proc_box]="#4aaee6"
47
48# Box divider line and small boxes line color
49theme[div_line]="#50"
50
51# Temperature graph colors
52theme[temp_start]="#367bf0"
53theme[temp_mid]="#b8174c"
54theme[temp_end]="#d41919"
55
56# CPU graph colors
57theme[cpu_start]="#367bf0"
58theme[cpu_mid]="#4aaee6"
59theme[cpu_end]="#54bd8e"
60
61# Mem/Disk free meter
62theme[free_start]="#811035"
63theme[free_mid]="#b8174c"
64theme[free_end]="#d41919"
65
66# Mem/Disk cached meter
67theme[cached_start]="#2656a8"
68theme[cached_mid]="#4aaee6"
69theme[cached_end]="#23bac2"
70
71# Mem/Disk available meter
72theme[available_start]="#fea44c"
73theme[available_mid]="#fd7d00"
74theme[available_end]="#fe7171"
75
76# Mem/Disk used meter
77theme[used_start]="#12715f"
78theme[used_mid]="#19a187"
79theme[used_end]="#23bac2"
80
81# Download graph colors
82theme[download_start]="#367bf0"
83theme[download_mid]="#19a187"
84theme[download_end]="#4aaee6"
85
86# Upload graph colors
87theme[upload_start]="#8c42ab"
88theme[upload_mid]="#b8174c"
89theme[upload_end]="#d41919"
90