1#Bashtop gruvbox (https://github.com/morhetz/gruvbox) theme
2#by BachoSeven
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]="#1d2021"
14
15# Main text color
16theme[main_fg]="#a89984"
17
18# Title color for boxes
19theme[title]="#ebdbb2"
20
21# Higlight color for keyboard shortcuts
22theme[hi_fg]="#d79921"
23
24# Background color of selected items
25theme[selected_bg]="#282828"
26
27# Foreground color of selected items
28theme[selected_fg]="#fabd2f"
29
30# Color of inactive/disabled text
31theme[inactive_fg]="#282828"
32
33# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
34theme[graph_text]="#585858"
35
36# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
37theme[proc_misc]="#98971a"
38
39# Cpu box outline color
40theme[cpu_box]="#a89984"
41
42# Memory/disks box outline color
43theme[mem_box]="#a89984"
44
45# Net up/down box outline color
46theme[net_box]="#a89984"
47
48# Processes box outline color
49theme[proc_box]="#a89984"
50
51# Box divider line and small boxes line color
52theme[div_line]="#a89984"
53
54# Temperature graph colors
55theme[temp_start]="#458588"
56theme[temp_mid]="#d3869b"
57theme[temp_end]="#fb4394"
58
59# CPU graph colors
60theme[cpu_start]="#b8bb26"
61theme[cpu_mid]="#d79921"
62theme[cpu_end]="#fb4934"
63
64# Mem/Disk free meter
65theme[free_start]="#4e5900"
66theme[free_mid]=""
67theme[free_end]="#98971a"
68
69# Mem/Disk cached meter
70theme[cached_start]="#458588"
71theme[cached_mid]=""
72theme[cached_end]="#83a598"
73
74# Mem/Disk available meter
75theme[available_start]="#d79921"
76theme[available_mid]=""
77theme[available_end]="#fabd2f"
78
79# Mem/Disk used meter
80theme[used_start]="#cc241d"
81theme[used_mid]=""
82theme[used_end]="#fb4934"
83
84# Download graph colors
85theme[download_start]="#3d4070"
86theme[download_mid]="#6c71c4"
87theme[download_end]="#a3a8f7"
88
89# Upload graph colors
90theme[upload_start]="#701c45"
91theme[upload_mid]="#b16286"
92theme[upload_end]="#d3869b"
93