aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/waybar/style.css
blob: 037c0e38166997b497a1135337187e2b496381d4 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
* {
  font-family: mono;
  font-size: 8pt;
}

window#waybar {
  background-color: #282828;
  color: #ebdbb2;
  border-bottom: 1px solid #3c3836;
}

#workspaces button {
  padding: 0 5px;
  color: #928374;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

#workspaces button.focused {
  color: #ebdbb2;
  background-color: #3c3836;
  border-bottom: 2px solid #fabd2f;
}

#workspaces button.urgent {
  color: #ebdbb2;
  background-color: #fb4934;
}

#mode {
  color: #fabd2f;
  font-weight: bold;
}

#clock,
#battery,
#cpu,
#disk,
#memory,
#temperature,
#network,
#pulseaudio,
#tray,
#window,
#idle_inhibitor,
#privacy,
#custom-memory,
#custom-wifi,
#custom-notifications,
#custom-thunderbird {
  padding: 0 6px;
}

#cpu {
  color: #83a598; /* blue */
}

#custom-memory {
  color: #8ec07c; /* aqua */
}

#disk {
  color: #d79921; /* ochre */
}

#temperature {
  color: #fe8019; /* orange */
}

#network.bond {
  color: #d3869b; /* purple */
}

#custom-wifi {
  color: #b8bb26; /* green */
}

#custom-wifi.down {
  color: #928374; /* gray */
}

#battery {
  color: #fabd2f; /* yellow */
}

#pulseaudio {
  color: #fe8019; /* orange */
}

#clock {
  color: #ebdbb2; /* fg */
}

#idle_inhibitor {
  color: #928374; /* gray when idle allowed */
}

#idle_inhibitor.activated {
  color: #fabd2f; /* yellow when inhibited */
}

#privacy {
  color: #fb4934; /* red — only visible when active */
}

#custom-notifications {
  color: #928374; /* gray baseline */
}

#custom-notifications.history {
  color: #8ec07c; /* aqua — seen, not dismissed */
}

#custom-notifications.pending {
  color: #fe8019; /* orange — unread */
}

#custom-thunderbird {
  color: #928374; /* gray when inbox is empty */
}

#custom-thunderbird.unread {
  color: #fe8019; /* orange — has unread mail */
}

#custom-thunderbird.error {
  color: #fb4934; /* red — bridge down or creds missing */
}

#battery.warning {
  color: #fabd2f;
}

#battery.critical {
  color: #fb4934;
}

#temperature.critical {
  color: #fb4934;
}

#pulseaudio.muted {
  color: #928374;
}

tooltip {
  background-color: #3c3836;
  border: 1px solid #504945;
  border-radius: 0;
}

tooltip label {
  color: #ebdbb2;
}