blob: ce9310f0c6cafee5fea8d3b8217149065685ae84 (
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
|
* {
font-family: "Fira Code";
}
#waybar {
background: #171717;
color: #fff;
}
#clock {
color: #fff;
}
#tray {
padding-left: 4px;
}
#workspaces button:hover {
background-color: transparent;
}
#workspaces button {
color: #737373;
padding-left: 4px;
padding-right: 4px;
border-radius: 0px;
}
#workspaces button:hover {
background-color: #262626;
}
#workspaces button.active {
color: #84cc16;
}
#window {
color: #fff;
}
#network {
color: #3b82f6;
margin-right: 8px;
}
#pulseaudio {
color: #14b8a6;
margin-right: 4px;
}
#cpu {
color: #0ea5e9;
margin-right: 4px;
}
#temperature {
color: #eab308;
margin-right: 4px;
}
#memory {
color: #d946ef;
margin-right: 4px;
}
#custom-powermenu {
color: #f43f5e;
}
|