base16-gruvbox-dark-pale.rasi (4381B)
1 /**
2 * Base16 Gruvbox dark, pale ROFI Color theme
3 *
4 * Authors
5 * Scheme: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox)
6 * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
7 */
8
9 * {
10 red: rgba ( 215, 95, 95, 100 % );
11 blue: rgba ( 131, 173, 173, 100 % );
12 lightfg: rgba ( 213, 196, 161, 100 % );
13 lightbg: rgba ( 58, 58, 58, 100 % );
14 foreground: rgba ( 218, 185, 151, 100 % );
15 background: rgba ( 38, 38, 38, 100 % );
16 background-color: rgba ( 38, 38, 38, 0 % );
17 separatorcolor: @foreground;
18 border-color: @foreground;
19 selected-normal-foreground: @lightbg;
20 selected-normal-background: @lightfg;
21 selected-active-foreground: @background;
22 selected-active-background: @blue;
23 selected-urgent-foreground: @background;
24 selected-urgent-background: @red;
25 normal-foreground: @foreground;
26 normal-background: @background;
27 active-foreground: @blue;
28 active-background: @background;
29 urgent-foreground: @red;
30 urgent-background: @background;
31 alternate-normal-foreground: @foreground;
32 alternate-normal-background: @lightbg;
33 alternate-active-foreground: @blue;
34 alternate-active-background: @lightbg;
35 alternate-urgent-foreground: @red;
36 alternate-urgent-background: @lightbg;
37 spacing: 2;
38 }
39 window {
40 background-color: @background;
41 border: 1;
42 padding: 5;
43 }
44 mainbox {
45 border: 0;
46 padding: 0;
47 }
48 message {
49 border: 1px dash 0px 0px ;
50 border-color: @separatorcolor;
51 padding: 1px ;
52 }
53 textbox {
54 text-color: @foreground;
55 }
56 listview {
57 fixed-height: 0;
58 border: 2px dash 0px 0px ;
59 border-color: @separatorcolor;
60 spacing: 2px ;
61 scrollbar: true;
62 padding: 2px 0px 0px ;
63 }
64 element {
65 border: 0;
66 padding: 1px ;
67 }
68 element normal.normal {
69 background-color: @normal-background;
70 text-color: @normal-foreground;
71 }
72 element normal.urgent {
73 background-color: @urgent-background;
74 text-color: @urgent-foreground;
75 }
76 element normal.active {
77 background-color: @active-background;
78 text-color: @active-foreground;
79 }
80 element selected.normal {
81 background-color: @selected-normal-background;
82 text-color: @selected-normal-foreground;
83 }
84 element selected.urgent {
85 background-color: @selected-urgent-background;
86 text-color: @selected-urgent-foreground;
87 }
88 element selected.active {
89 background-color: @selected-active-background;
90 text-color: @selected-active-foreground;
91 }
92 element alternate.normal {
93 background-color: @alternate-normal-background;
94 text-color: @alternate-normal-foreground;
95 }
96 element alternate.urgent {
97 background-color: @alternate-urgent-background;
98 text-color: @alternate-urgent-foreground;
99 }
100 element alternate.active {
101 background-color: @alternate-active-background;
102 text-color: @alternate-active-foreground;
103 }
104 scrollbar {
105 width: 4px ;
106 border: 0;
107 handle-color: @normal-foreground;
108 handle-width: 8px ;
109 padding: 0;
110 }
111 sidebar {
112 border: 2px dash 0px 0px ;
113 border-color: @separatorcolor;
114 }
115 button {
116 spacing: 0;
117 text-color: @normal-foreground;
118 }
119 button selected {
120 background-color: @selected-normal-background;
121 text-color: @selected-normal-foreground;
122 }
123 inputbar {
124 spacing: 0px;
125 text-color: @normal-foreground;
126 padding: 1px ;
127 children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
128 }
129 case-indicator {
130 spacing: 0;
131 text-color: @normal-foreground;
132 }
133 entry {
134 spacing: 0;
135 text-color: @normal-foreground;
136 }
137 prompt {
138 spacing: 0;
139 text-color: @normal-foreground;
140 }
141 textbox-prompt-colon {
142 expand: false;
143 str: ":";
144 margin: 0px 0.3000em 0.0000em 0.0000em ;
145 text-color: inherit;
146 }