1#Bashtop Adapta theme
2#by olokelo
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]=""
14
15# Main text color
16theme[main_fg]="#cfd8dc"
17
18# Title color for boxes
19theme[title]="#ff"
20
21# Higlight color for keyboard shortcuts
22theme[hi_fg]="#90"
23
24# Background color of selected item in processes box
25theme[selected_bg]="#bb0040"
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]="#55bcea"
35
36# Cpu box outline color
37theme[cpu_box]="#00bcd4"
38
39# Memory/disks box outline color
40theme[mem_box]="#00bcd4"
41
42# Net up/down box outline color
43theme[net_box]="#00bcd4"
44
45# Processes box outline color
46theme[proc_box]="#00bcd4"
47
48# Box divider line and small boxes line color
49theme[div_line]="#50"
50
51# Temperature graph colors
52theme[temp_start]="#00bcd4"
53theme[temp_mid]="#d4d400"
54theme[temp_end]="#ff0040"
55
56# CPU graph colors
57theme[cpu_start]="#00bcd4"
58theme[cpu_mid]="#d4d400"
59theme[cpu_end]="#ff0040"
60
61# Mem/Disk free meter
62theme[free_start]="#00bcd4"
63theme[free_mid]="#1090a0"
64theme[free_end]="#206f79"
65
66# Mem/Disk cached meter
67theme[cached_start]="#991199"
68theme[cached_mid]="#770a55"
69theme[cached_end]="#550055"
70
71# Mem/Disk available meter
72theme[available_start]="#00b0ff"
73theme[available_mid]="#1099cc"
74theme[available_end]="#2070aa"
75
76# Mem/Disk used meter
77theme[used_start]="#ff0040"
78theme[used_mid]="#ff2060"
79theme[used_end]="#ff4080"
80
81# Download graph colors
82theme[download_start]="#00bcd4"
83theme[download_mid]="#991199"
84theme[download_end]="#ff0040"
85
86# Upload graph colors
87theme[upload_start]="#00bcd4"
88theme[upload_mid]="#991199"
89theme[upload_end]="#ff0040"
90