blob: 84465312f200381006d5e28f135b90187aba05d9 (
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
|
/* breaktimer.css - incolla queste righe nel tuo ~/.config/waybar/style.css */
/* Niente commenti // (GTK CSS accetta solo la sintassi slash-star). */
#custom-breaktimer {
padding: 0 10px;
margin: 0 2px;
}
#custom-breaktimer.working {
color: #a6e3a1;
}
#custom-breaktimer.breaking {
color: #89b4fa;
}
#custom-breaktimer.longbreak {
color: #cba6f7;
}
#custom-breaktimer.paused {
color: #f9e2af;
}
#custom-breaktimer.stopped {
color: #6c7086;
}
|