blob: a07c3b131a5481ef650dba4b45114e1fc033f0db (
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
|
.bar .shutdown {
color: @brightRed;
}
.bar .restart {
color: @brightGreen;
}
.bar .sleep {
color: @brightYellow;
}
.bar .dismiss {
color: @red;
}
.bar .ws {
font-family: 'Symbols Nerd Font Mono';
font-size: 18;
color: @bg2;
}
.bar .ws.active {
color: @fg4;
}
.bar .ws.visible {
color: @fg;
}
.bar .ws.focused {
background: @bg1;
color: @fg0;
}
.bar .ws.urgent {
background: @red;
}
|