summaryrefslogtreecommitdiff
path: root/waybar/style.css
blob: f12cc7986e636fab624b20527f684f67f5627017 (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
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
95
96
97
98
99
100
101
102
103
* {
    /* `otf-font-awesome` is required to be installed for icons */
    font-family: Berkeley Mono;
    font-size: 28px;
    padding-top: 2px;
    padding-bottom: 0px;
}

window#waybar {
    background-color: black;
    color: #ffffff;
}

button {
    /* Use box-shadow instead of border so the text isn't offset */
    box-shadow: inset 0 -3px transparent;
    /* Avoid rounded borders under each button name */
    border: none;
    border-radius: 0;
}

#tags button{
    padding: 0 8px;
}

#tags button.occupied {
    color: #FF8C00;
}

#tags button:hover {
    background: #FF8;
}

#tags button.focused {
    padding: 0 8px;
    background-color: #FF8C00;
    color: black;
}

#window {
    padding: 0px 16px;
    background-color: #FF8C00;
    color: black;
}

#tags button.urgent {
    background-color: #eb4d4b;
}

#tray,
#clock {
    padding-left: 8px;
    background-color: black;
    color: #FF8C00;
}

#layout,
#battery,
#temperature,
#backlight,
#network,
#pulseaudio,
#wireplumber {
    padding-right: 8px;
    padding-left: 8px;
    border-right: 2px solid #FF8C00;
    background-color: black;
    color: #FF8C00;
}

label:focus {
    background-color: #000000;
}

#tray > .passive {
    -gtk-icon-effect: dim;
}

#tray > .needs-attention {
    -gtk-icon-effect: highlight;
    background-color: #eb4d4b;
}

#privacy {
    padding: 0;
}

#privacy-item {
    padding: 0 5px;
    color: white;
}

#privacy-item.screenshare {
    background-color: #cf5700;
}

#privacy-item.audio-in {
    background-color: #1ca000;
}

#privacy-item.audio-out {
    background-color: #0069d4;
}