-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrofi.rasi
More file actions
149 lines (125 loc) · 2.32 KB
/
Copy pathrofi.rasi
File metadata and controls
149 lines (125 loc) · 2.32 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
* ROFI color theme
*
* Based on Base16 Material Color Scheme (https://github.com/ntpeters/base16-materialtheme-scheme)
*
* Modified by: Dave Davenport
* User: Tomaszal
* Copyright: Tomas Zaluckij
*/
* {
base00: #263238;
base01: #2E3C43;
base02: #314549;
base03: #546E7A;
base04: #B2CCD6;
base05: #EEFFFF;
base06: #EEFFFF;
base07: #FFFFFF;
base08: #F07178;
base09: #F78C6C;
base0A: #FFCB6B;
base0B: #C3E88D;
base0C: #89DDFF;
/*base0D: #82AAFF;*/
base0D: #00FFFF;
base0E: #C792EA;
base0F: #FF5370;
/*base0D: #00BCD4;*/
spacing: 0;
background-color: transparent;
}
window {
width: 25%;
height: 40%;
transparency: "real";
background-color: #263238CC; /*base00 + CC (80% opacity)*/
border: 2px;
border-radius: 10px;
border-color: @base0D;
}
mainbox {
children: [inputbar, message, mode-switcher, listview];
spacing: 5px;
padding: 5px 0;
}
inputbar {
padding: 0 15px;
children: [prompt, textbox-prompt-colon, entry, case-indicator];
}
prompt {
text-color: @base0D;
}
textbox-prompt-colon {
expand: false;
str: ":";
margin: 0 1ch 0 0;
text-color: @base0D;
}
entry {
text-color: @base07;
}
case-indicator {
text-color: @base0F;
}
mode-switcher, message {
border: 1px 0;
border-color: @base0D;
}
button, textbox {
background-color: @base03;
text-color: @base07;
padding: 5px;
}
button selected {
background-color: @base03;
}
listview {
scrollbar: true;
}
scrollbar {
background-color: @base03;
handle-color: @base0D;
handle-width: 10px;
border: 0 1px;
border-color: @base0D;
/*
margin: 0 0 0 20px;
*/
border-radius: 10px;
}
element {
padding: 5px;
spacing: 5px;
highlight: bold underline;
children: [element-icon, element-text];
}
element-text, element-icon {
background-color : inherit;
text-color : inherit;
foreground-color : inherit;
cursor: inherit;
size: 30px;
vertical-align: 0.5;
}
element-text {
}
element normal {
background-color: transparent;
}
element selected {
background-color: @base03;
border-radius : 10px;
}
element alternate {
/*background-color: @base03;*/
}
element normal normal, element selected normal, element alternate normal {
text-color: @base07;
}
element normal urgent, element selected urgent, element alternate urgent {
text-color: @base0F;
}
element normal active, element selected active, element alternate active {
text-color: @base0B;
}