blob: 01782c17a0754f5eba44ea0172130b1035b46359 (
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
|
/* GTK Colours */
@define-color fg #eee;
@define-color mg #444;
@define-color bg #000;
* {
font-family: "Hack Nerd Font", "Hack", monospace;
font-size: 12px;
font-weight: bold;
text-shadow: 1px 1px @bg;
box-shadow: none;
transition-property: background;
transition-duration: .5s;
}
/* Colours */
/* #battery { color: mediumpurple; } */
/* #clock { color: lightblue; } */
/* #clock.calendar { color: pink; } */
/* #wireplumber { color: #f1c40f; } */
/* #network.linked{ color: seagreen; } */
/* #network.disconnected{ color: red; } */
/* #bluetooth { color: royalblue; } */
/* Bar */
window#waybar {
background: transparent;
color: @fg;
/* border-top: 1px solid @fg; */
}
label.module {
padding: 0 10px;
}
#tray {
background: @bg;
border: 1px solid @fg;
border-radius: 5px;
padding: 0 8px;
}
#custom-menu {
padding:0 14px 0 10px;
}
#custom-menu:hover {
background: @fg;
color: @bg;
}
/* WORKSPACES */
#workspaces button {
padding: 0 6px;
border-radius: 0;
}
#workspaces button.focused {
border-bottom: 1px solid @fg;
}
#workspaces button:hover {
background: @fg;
color: @bg;
}
#workspaces button.urgent {
color: red;
}
|