-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (50 loc) · 1.17 KB
/
style.css
File metadata and controls
64 lines (50 loc) · 1.17 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
/**
* See https://gnome.pages.gitlab.gnome.org/libadwaita/doc/main/css-variables.html for more CSS variables.
* Or use your own colors. Both work, but using your own colors may break the automatic light/dark theme function.
*/
window {
background-color: rgba(12, 12, 12, 0.8);
}
button {
color: oklab(from var(--view-fg-color) var(--standalone-color-oklab));
background-color: var(--view-bg-color);
border: none;
padding: 10px;
}
button label.action-name {
font-size: 24px;
font-weight: 400;
}
button label.keybind {
font-size: 20px;
font-family: monospace;
}
button:hover label.keybind, button:focus label.keybind {
opacity: 1;
}
button:focus,
button:hover {
background-color: color-mix(in srgb, var(--accent-bg-color), var(--view-bg-color));
}
button:active {
color: var(--accent-fg-color);
background-color: var(--accent-bg-color);
}
button#shutdown {
--view-fg-color: #ff8d8d;
}
button#hibernate {
--view-fg-color: #a8c0ff;
}
button#reboot {
--view-fg-color: #84ffaa;
}
button#lock {
--view-fg-color: #ffe8b6;
}
button#logout {
--view-fg-color: #ffcca8;
}
button#suspend {
--view-fg-color: #caaff9;
}