blob: 799cb192a816bb0c30f05f51f7b3defe392d6370 (
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
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
|
/* Rofi theme */
configuration {
font: "Inter 10";
show-icons: true;
icon-theme: "Paper";
modi: "drun,run,window,ssh";
sidebar-mode: true;
}
* {
white: #ebdbb2;
black: #101010;
orange: #eb744c;
blue: #497287;
background-color: @black;
text-color: @white;
margin: 2px;
}
window {
border: 1px;
border-color: @orange;
width: 30%;
padding: 8;
}
inputbar {
children: [prompt, entry];
border: 0 0 2px 0;
border-color: @blue;
padding: 4px;
}
listview {
columns: 1;
spacing: 4px;
}
prompt {
font: "Iosevka Extended Bold 12";
}
entry {
font: "Iosevka Extended 12";
cursor: text;
}
element,
element-text,
element-icon,
button {
cursor: pointer;
}
element {
font: "Inter Medium 12";
border: 0;
padding: 2px;
}
element selected {
background-color: @orange;
text-color: @black;
}
element-text {
background-color: inherit;
text-color: inherit;
horizontal-align: 0;
vertical-align: 0.5;
}
element-icon {
size: 24px;
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
}
button {
background-color: @white;
text-color: @black;
font: "Inter Bold 10";
padding: 4px;
horizontal-align: 0.5;
vertical-align: 0.5;
}
button selected {
background-color: @blue;
text-color: @white;
}
|