blob: 6f503ec9c4829228196e7b6ee40cb5c1db9f23b6 (
plain) (
blame)
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
|
* {
border: none;
border-radius: 0;
font-family: 'FiraCode Nerd Font', monospace;
font-size: 10pt;
min-height: 0;
}
window#waybar {
background: transparent;
color: #cdd6f4;
}
tooltip {
background: #181825;
border: 2px solid #cba6f7;
}
tooltip label {
color: #cdd6f4;
}
.modules-left, .modules-center, .modules-right {
margin: 0 6px; /* don't ask. the outer gaps are set to 4px but they're actually 6px */
}
#workspaces button {
background: none;
box-shadow: none;
color: #6c7086;
min-width: 0px;
padding: 0;
padding-right: 4px;
}
#workspaces button.visible {
color: #a6adc8;
}
#workspaces button.focused {
color: #cba6f7;
}
#workspaces button.urgent {
color: #f38ba8;
}
#workspaces button:hover {
color: #cdd6f4;
text-shadow: inherit;
}
#backlight, #battery, #language, #tray, #wireplumber {
min-width: 2em;
padding-left: 4px;
}
#battery.critical {
color: #f38ba8;
}
|