-
-
Notifications
You must be signed in to change notification settings - Fork 149
/
action.rasi
67 lines (55 loc) · 1.13 KB
/
action.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
// Rofi action theme configuration.
// https://github.com/owl4ce/dotfiles
@import "shared.rasi"
* {
font: @text-font;
text-color: @foreground-list;
vertical-align: @center-align;
}
window {
background-color: @background-alpha;
padding: @window-padding;
}
mainbox {
children: [ listview, message ];
}
element {
padding: @element-padding;
border: @element-border;
}
element.normal.normal,
element.alternate.normal {
background-color: @background-light;
text-color: inherit;
border-color: @background-light;
}
element.normal.active,
element.normal.urgent,
element.alternate.active,
element.alternate.urgent,
element.selected.normal,
element.selected.active,
element.selected.urgent {
background-color: @background-focus;
text-color: inherit;
}
element.selected.normal,
element.selected.active,
element.selected.urgent {
border-color: @accent2;
}
element.normal.active,
element.alternate.active {
border-color: @on;
}
element.normal.urgent,
element.alternate.urgent {
border-color: @urgent;
}
message {
background-color: @background-light;
padding: @message-padding;
}
textbox {
background-color: inherit;
}