aboutsummaryrefslogtreecommitdiff
path: root/modules/user/desktop/waybar.css
blob: decf5422dc57b14c67a99ba543b76eeaa69462e5 (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
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
* {
    border: none;
    border-radius: 0;
    font-family: 'FiraCode Nerd Font Mono';
    min-height: 0;
}

window#waybar {
    background: none;
    color: #e0def4;
}

tooltip {
    background: rgba(38, 35, 58, 0.8);
    border-radius: 10px;
}

tooltip label {
    color: #e0def4;
}

#workspaces button {
    background: none;
    color: #6e6a86;
    padding: 0;
}

#workspaces button:hover {
    color: #e0def4;
    text-shadow: inherit;
}

#workspaces button.visible {
    color: #908caa;
}

#workspaces button.focused {
    color: #ebbcba;
}

#workspaces button.urgent {
    color: #eb6f92;
}

.module {
    padding: 0 8px;
    padding-top: 2px;
}

.modules-left, .modules-center, .modules-right {
    background: rgba(25, 23, 36, 0.8);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modules-left {
    margin-left: 8px;
    margin-right: 4px;
}

.modules-right {
    margin-left: 4px;
    margin-right: 8px;
}

@keyframes blink {
    to {
        color: #e0def4;
    }
}

#battery.charging {
    color: #9ccfd8;
}

#battery.critical:not(.charging) {
    animation-direction: alternate;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-name: blink;
    animation-timing-function: steps(2);
    color: #eb6f92;
}

#cpu {
    box-shadow: inset 0 -2px #ebbcba;
}

#memory {
    box-shadow: inset 0 -2px #f6c177;
}

#network {
    box-shadow: inset 0 -2px #c4a7e7;
}