blob: 77670841e8995e550ffc19d60cb84ed7b4275a0b (
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
|
* {
font-size: 12px;
min-height: 1px;
}
#waybar {
font-family: "Inter Variable", "PxPlus IBM VGA8", "Symbols Nerd Font Mono";
background: #24273a;
}
#clock,
#hyprland-language,
#pulseaudio,
#network,
#memory,
#cpu,
#language,
/*#pulseaudio,*/
#tray,
#workspaces button {
padding: 4px 12px;
border-radius: 6px;
background: #363a4f;
color: #cad3f5;
/* border-bottom: 1px solid #b7bdf8; */
margin: 0 2px;
}
#pulseaudio {
margin-right: 1px;
}
#workspaces {
margin-left: -1px;
}
#tray {
margin-right: 1px;
margin-left: 3px;
}
#language {
min-width: 14px;
}
#workspaces button.empty {
background: #1e2030;
}
#workspaces button.active {
background: #6e738d;
}
|