-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-light.theme
More file actions
89 lines (66 loc) · 2.39 KB
/
github-light.theme
File metadata and controls
89 lines (66 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# GitHub Light Default theme for btop
# Based on GitHub's default light color scheme
# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
# example for white: "#ffffff", "#ff" or "255 255 255".
# All graphs and meters can be gradients
# For single color graphs leave "mid" and "end" variable empty.
# Use "start" and "end" variables for two color gradient
# Use "start", "mid" and "end" for three color gradient
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#ffffff"
# Main text color
theme[main_fg]="#24292f"
# Title color for boxes
theme[title]="#24292f"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#0969da"
# Background color of selected item in processes box
theme[selected_bg]="#ddf4ff"
# Foreground color of selected item in processes box
theme[selected_fg]="#24292f"
# Color of inactive/disabled text
theme[inactive_fg]="#8c959f"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#59636e"
# Cpu box outline color
theme[cpu_box]="#0969da"
# Memory/disks box outline color
theme[mem_box]="#8250df"
# Net up/down box outline color
theme[net_box]="#1a7f37"
# Processes box outline color
theme[proc_box]="#cf222e"
# Box divider line and small boxes line color
theme[div_line]="#d0d7de"
# Temperature graph colors (green -> yellow -> red)
theme[temp_start]="#1a7f37"
theme[temp_mid]="#bf8700"
theme[temp_end]="#cf222e"
# CPU graph colors (blue gradient)
theme[cpu_start]="#54aeff"
theme[cpu_mid]="#0969da"
theme[cpu_end]="#0550ae"
# Mem/Disk free meter (green gradient)
theme[free_start]="#1a7f37"
theme[free_mid]="#2da44e"
theme[free_end]="#4ac26b"
# Mem/Disk cached meter (teal/cyan gradient)
theme[cached_start]="#1b7c83"
theme[cached_mid]="#3192aa"
theme[cached_end]="#54aeff"
# Mem/Disk available meter (yellow/gold gradient)
theme[available_start]="#bf8700"
theme[available_mid]="#d4a72c"
theme[available_end]="#fb8500"
# Mem/Disk used meter (purple gradient)
theme[used_start]="#8250df"
theme[used_mid]="#a475f9"
theme[used_end]="#b583f7"
# Download graph colors (blue gradient)
theme[download_start]="#54aeff"
theme[download_mid]="#0969da"
theme[download_end]="#0550ae"
# Upload graph colors (green gradient)
theme[upload_start]="#1a7f37"
theme[upload_mid]="#2da44e"
theme[upload_end]="#4ac26b"