-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustom-dark.rasi
72 lines (61 loc) · 1.18 KB
/
custom-dark.rasi
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
* {
bg : #181818;
bg-sel: #2f2f2f;
fg : #eeeeee;
}
window {
background-color: @bg;
height : 43%;
width : 40%;
border-radius : 25px;
padding : 15px;
}
mainbox {
children : [ inputbar, listview ];
background-color: @bg;
border : 0;
}
inputbar {
padding : 8;
children : [entry];
background-color: @bg;
}
entry {
padding : 8;
background-color: @bg-sel;
color : @fg;
border-radius : 10px;
}
listview {
padding : 8;
background-color: @bg;
columns : 5;
}
element {
border : 0;
padding : 10;
background-color: @bg;
color : @fg;
orientation : vertical;
padding : 2% 0 2% 0;
}
element selected {
background-color: @bg-sel;
border-radius: 25px;
}
element-text, element-icon {
background-color: inherit;
text-color : inherit;
horizontal-align: 0.5;
vertical-align : 0.5;
}
element-icon {
size : 64px;
border: 0;
}
element-text {
expand: true;
margin: 0.5% 0.5% -0.5% 0.5%;
font : "Ubuntu 12";
}
/* vim: ft=css