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
|
* {
font-size: 11px;
font-family: "FuraCode Nerd Font Mono";
min-height: 0;
}
window#waybar {
background: rgba(26, 26, 26, 0.75);
color: #fdf6e3;
min-height: 0;
}
#custom-right-arrow-cyan, #custom-left-arrow-cyan {
color: #8ec07c;
font-size: 20px;
}
#custom-right-arrow-black, #custom-left-arrow-black {
color: #000000;
font-size: 20px;
}
#custom-left-arrow-gray {
color: #191919;
background: #8ec07c;
font-size: 20px;
}
#custom-right-arrow-black {
background: #8ec07c;
}
#custom-left-arrow-black {
background: #191919;
}
#clock.1 {
background: #2D888D;
}
#clock.2 {
color: #1E1F23;
background: #DCDCCC;
}
#clock.3 {
background: #E00421;
}
#workspaces {
padding-left: 8px;
background: #000000;
}
#workspaces button {
padding: 0 4px;
color: #fdf6e3;
}
#workspaces button.focused {
color: #8ec07c;
}
#workspaces button:hover {
box-shadow: inherit;
text-shadow: inherit;
}
#workspaces button:hover {
border-color: #0C3D27;
border-radius: 0;
background: #0C3D27;
}
#tray {
background: #000000;
}
#memory {
background: #ff6e67;
}
#pulseaudio,
#mpd,
#temperature,
#backlight,
#custom-weather,
#custom-rec-status,
#custom-swaykbd {
color: #000000;
background: #8ec07c;
padding: 0 8px;
}
#cpu {
background: #f1fa8c;
}
#network,
#battery{
background: #191919;
padding: 0 8px;
}
#battery.charging {
color: #8ec07c;
}
#memory, #cpu, #tray {
color: #1E1F23;
}
#clock{
padding: 0 16px;
}
|