summaryrefslogtreecommitdiff
path: root/waybar/style.css
blob: c752399ba48bef1dc8e7c4814c529d3961cb9117 (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
* {
    /* `otf-font-awesome` is required to be installed for icons */
    font-family: "BQN386 Unicode DZ";
    /* font-family: "PxPlus IBM VGA 9x16"; */
    font-size: 28px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 2px;
    min-height: 46px;
}

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;
}

#workspaces button{
    padding-right: 6px;
    padding-left: 6px;
    color: #FF8C00;
}

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

#workspaces button.focused {
    background-color: #FF8C00;
    color: black;
}

#workspaces button.empty {
    background-color: black;
    color: grey;
}

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

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

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

#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 {
}

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

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