blob: b2d538b3a9990fbe17c62b58e22c58e7b3887223 (
plain)
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
|
* {
highlight: bold italic;
scrollbar: true;
/* gruv = Gruvbox Dark */
gruv-bg-dim: #282828;
gruv-bg0: #3c3836;
gruv-bg1: #504945;
gruv-bg2: #665c54;
gruv-bg3: #7c6f64;
gruv-bg4: #928374;
gruv-bg5: #a89984;
gruv-red: #fb4934;
gruv-orange: #fe8019;
gruv-yellow: #fabd2f;
gruv-green: #b8bb26;
gruv-blue: #83a598;
gruv-aqua: #8ec07c;
gruv-purple: #d3869b;
gruv-fg: #ebdbb2;
gruv-gray0: #665c54;
gruv-gray1: #7c6f64;
gruv-gray2: #928374;
background: @gruv-bg-dim;
background-color: @background;
foreground: @gruv-fg;
border-color: @gruv-blue;
separatorcolor: @border-color;
scrollbar-handle: @border-color;
normal-background: @gruv-bg0;
normal-foreground: @foreground;
alternate-normal-background: @gruv-bg1;
alternate-normal-foreground: @foreground;
selected-normal-background: @gruv-blue;
selected-normal-foreground: @background;
active-background: @gruv-blue;
active-foreground: @background;
alternate-active-background: @active-background;
alternate-active-foreground: @active-foreground;
selected-active-background: @active-background;
selected-active-foreground: @active-foreground;
urgent-background: @gruv-red;
urgent-foreground: @background;
alternate-urgent-background: @urgent-background;
alternate-urgent-foreground: @urgent-foreground;
selected-urgent-background: @urgent-background;
selected-urgent-foreground: @urgent-foreground;
prompt-background: @gruv-blue;
prompt-foreground: @background;
}
|