-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
162 lines (135 loc) · 2.64 KB
/
Copy pathstyle.css
File metadata and controls
162 lines (135 loc) · 2.64 KB
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
156
157
158
159
160
161
162
/* ===== COLORS ===== */
@define-color bg transparent;
@define-color bg-alt #383838;
@define-color fg #ebdbb2;
@define-color fg-soft #fff4d2;
@define-color border #484848;
@define-color gray #555555;
@define-color black #000000;
@define-color blue #c29599;
@define-color blue-dark #c29599;
@define-color pink #ab8487;
@define-color pink-dark #ab8487;
@define-color green #ffc8cd;
@define-color green-dark #ffc8cd;
@define-color red #ea6962;
@define-color red-dark #cc241d;
@define-color red-critical #b22222;
@define-color orange #e3b1b5;
/* ===== GLOBAL ===== */
* {
padding: 0;
min-height: 0;
margin: 0;
text-shadow: none;
transition: none;
box-shadow: none;
border-radius: 15;
}
window#waybar {
background: @bg;
font-family: IosevkaTerm Nerd Font Propo;
font-size: 12pt;
font-weight: 900;
color: @fg;
}
.modules-left,
.modules-center,
.modules-right {
padding: 3pt;
background: @bg;
}
/* ===== COMMON MODULE STYLE ===== */
#window,
#disk,
#cpu,
#custom-cpu_temp,
#custom-cpu_temp.critical,
#backlight,
#custom-memory,
#pulseaudio,
#pulseaudio.muted,
#battery,
#battery.critical,
#battery.warning,
#network,
#clock {
color: @fg-soft;
border: 2pt solid @border;
background-color: @bg-alt;
padding-right: 4.5pt;
}
/* ===== ROFI ===== */
#custom-rofi {
color: @black;
border: 2pt solid @blue-dark;
background: @blue;
padding: 0pt 6pt;
}
/* ===== WORKSPACES ===== */
#workspaces button {
color: @fg-soft;
background-color: @bg-alt;
border: 2pt solid @border;
min-width: 15pt;
margin-right: 3pt;
padding: 0pt 3.75pt;
}
#workspaces button:last-child {
margin-right: 0;
}
#workspaces button:hover {
color: @bg;
background: @pink;
border-color: @pink-dark;
}
#workspaces button.visible,
#workspaces button.visible:hover,
#workspaces button.active,
#workspaces button.active:hover {
color: @black;
background: @green;
border-color: @green-dark;
}
#workspaces button.urgent {
color: @bg;
border-color: @red-dark;
background: @red;
}
/* ===== SPECIAL STATES ===== */
#custom-cpu_temp.critical {
background-color: @red-dark;
border: 2pt solid @fg;
}
#custom-cpu_temp.unknown {
color: @gray;
}
#pulseaudio.muted {
border: 2pt solid @red;
}
#battery.critical {
border: 2pt solid @red-critical;
}
#battery.warning {
border: 2pt solid @orange;
}
/* ===== TRAY ===== */
#tray {
color: @fg-soft;
border: 2pt solid @border;
background-color: @bg-alt;
padding: 0 6pt;
}
/* ===== MODE ===== */
#mode,
#submap {
color: @black;
border: 2pt solid @blue-dark;
background: @blue;
padding: 0pt 6pt;
}
#custom-layout {
color: @fg;
border: 2pt solid @border;
background-color: @bg-alt;
}