We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d244f3 commit 6c9df23Copy full SHA for 6c9df23
1 file changed
webui/styles.css
@@ -30,15 +30,25 @@ body {
30
}
31
32
.splash-icon {
33
+ --icon-bg: var(--md-sys-color-primary);
34
+ --icon-fill: var(--md-sys-color-surface-container);
35
+
36
border-radius: 50%;
- background-color: white;
37
+ background-color: var(--icon-bg);
38
transition: opacity 0.05s ease;
39
opacity: 0;
40
41
svg {
42
width: min(45vw, 240px);
43
height: auto;
- fill: black;
44
+ fill: var(--icon-fill);
45
+ }
46
+}
47
48
+@media (prefers-color-scheme: dark) {
49
+ .splash-icon {
50
51
52
53
54
0 commit comments