1#Bashtop solarized theme
2#by aristocratos
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]="#002b36"
14
15# Main text color
16theme[main_fg]="#eee8d5"
17
18# Title color for boxes
19theme[title]="#fdf6e3"
20
21# Higlight color for keyboard shortcuts
22theme[hi_fg]="#b58900"
23
24# Background color of selected items
25theme[selected_bg]="#073642"
26
27# Foreground color of selected items
28theme[selected_fg]="#d6a200"
29
30# Color of inactive/disabled text
31theme[inactive_fg]="#073642"
32
33# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
34theme[proc_misc]="#bad600"
35
36# Cpu box outline color
37theme[cpu_box]="#586e75"
38
39# Memory/disks box outline color
40theme[mem_box]="#586e75"
41
42# Net up/down box outline color
43theme[net_box]="#586e75"
44
45# Processes box outline color
46theme[proc_box]="#586e75"
47
48# Box divider line and small boxes line color
49theme[div_line]="#586e75"
50
51# Temperature graph colors
52theme[temp_start]="#268bd2"
53theme[temp_mid]="#ccb5f7"
54theme[temp_end]="#fc5378"
55
56# CPU graph colors
57theme[cpu_start]="#adc700"
58theme[cpu_mid]="#d6a200"
59theme[cpu_end]="#e65317"
60
61# Mem/Disk free meter
62theme[free_start]="#4e5900"
63theme[free_mid]=""
64theme[free_end]="#bad600"
65
66# Mem/Disk cached meter
67theme[cached_start]="#114061"
68theme[cached_mid]=""
69theme[cached_end]="#268bd2"
70
71# Mem/Disk available meter
72theme[available_start]="#705500"
73theme[available_mid]=""
74theme[available_end]="#edb400"
75
76# Mem/Disk used meter
77theme[used_start]="#6e1718"
78theme[used_mid]=""
79theme[used_end]="#e02f30"
80
81# Download graph colors
82theme[download_start]="#3d4070"
83theme[download_mid]="#6c71c4"
84theme[download_end]="#a3a8f7"
85
86# Upload graph colors
87theme[upload_start]="#701c45"
88theme[upload_mid]="#d33682"
89theme[upload_end]="#f56caf"