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
|
/**
* Base16 Cupcake ROFI Color theme
*
* Authors
* Scheme: Chris Kempson (http://chriskempson.com)
* Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
*/
* {
red: rgba ( 213, 126, 133, 100 % );
blue: rgba ( 114, 151, 185, 100 % );
lightfg: rgba ( 114, 103, 126, 100 % );
lightbg: rgba ( 242, 241, 244, 100 % );
foreground: rgba ( 139, 129, 152, 100 % );
background: rgba ( 251, 241, 242, 100 % );
background-color: rgba ( 251, 241, 242, 0 % );
separatorcolor: @foreground;
border-color: @foreground;
selected-normal-foreground: @lightbg;
selected-normal-background: @lightfg;
selected-active-foreground: @background;
selected-active-background: @blue;
selected-urgent-foreground: @background;
selected-urgent-background: @red;
normal-foreground: @foreground;
normal-background: @background;
active-foreground: @blue;
active-background: @background;
urgent-foreground: @red;
urgent-background: @background;
alternate-normal-foreground: @foreground;
alternate-normal-background: @lightbg;
alternate-active-foreground: @blue;
alternate-active-background: @lightbg;
alternate-urgent-foreground: @red;
alternate-urgent-background: @lightbg;
}
|