PluginProbe
Extendify / 3.2.1
Extendify v3.2.1
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
← All changes | src/AutoLaunch/auto-launch.css +10 -5 3.0.63.2.1 View file →
@@ -1,8 +1,12 @@
1 1 @import "tailwindcss" source(none) important;
2 2 @import "../tailwind.css" source(none);
3 3 @source ".";
4 4
5 +:root {
6 + color-scheme: only light;
7 +}
8 +
5 9 /* no-prefix */
6 10 .extendify-auto-launch {
7 11 -webkit-font-smoothing: antialiased;
8 12 }
@@ -57,15 +61,16 @@
57 61 }
58 62 }
59 63
60 64 .status-animation {
65 + /* Follows the ink token so the shimmer stays legible on a dark palette. */
61 66 background-image: linear-gradient(
62 67 to right,
63 - #1e1e1e 0%,
64 - #1e1e1e 25%,
65 - #999999 50%,
66 - #1e1e1e 75%,
67 - #1e1e1e 100%
68 + var(--ext-ui-status-color, var(--color-ui-ink)) 0%,
69 + var(--ext-ui-status-color, var(--color-ui-ink)) 25%,
70 + var(--color-ui-ink-muted) 50%,
71 + var(--ext-ui-status-color, var(--color-ui-ink)) 75%,
72 + var(--ext-ui-status-color, var(--color-ui-ink)) 100%
68 73 );
69 74 background-size: 300% 100%;
70 75 color: transparent;
71 76 background-clip: text;