summaryrefslogtreecommitdiff
path: root/artix/template/waybar/style.css
blob: c093460f849d485c9579bcd7658a4fe705d12c69 (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
* {
	font-family: "$FONT";
	font-weight: bold;
}

#waybar {
	background: $HEX_BACKGROUND;
	color: $HEX_FOREGROUND;
}

#workspaces button {
	color: $HEX_FOREGROUND;
	border-radius: 0;
}

#workspaces button.active {
	background: $HEX_BRIGHT_MAGENTA;
}

#workspaces button.special {
	background: $HEX_NORMAL_BLUE;
}

#workspaces button.urgent {
	background: $HEX_NORMAL_RED;
}

#workspaces button:hover {
	box-shadow: none;
	text-shadow: none;
	background: $HEX_BACKGROUND;
	border: none;
	transition: none;
	color: $HEX_NORMAL_BLUE;
}

#battery,
#cpu,
#memory,
#pulseaudio,
#network,
#clock,
#tray,
#temperature,
#workspaces button {
	padding: 7 7;
}

#network {
	background: $HEX_NORMAL_CYAN;
}

#pulseaudio {
	background: $HEX_NORMAL_MAGENTA;
}

#pulseaudio.bluetooth {
	background: #7aa2f7;
}

#battery,
#cpu,
#memory,
#temperature {
	background: #9ece6a;
}

#battery.warning,
#cpu.warning,
#memory.warning {
	background: #e0af68;
}

#battery.urgent,
#cpu.urgent,
#memory.urgent,
#network.disabled {
	background: #ff9e64;
}

#battery.critical,
#cpu.critical,
#pulseaudio.muted,
#memory.critical,
#network.disconnected,
#temperature.critical {
	background: #f7768e
}

#window {
	margin-left: 10px;
	background: #32344a;
	padding: 7;
}