@hanzo/ui 8.0.52 → 8.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/glass.css +19 -7
- package/dist/gui-config.cjs +47 -0
- package/dist/gui-config.d.ts +582 -1
- package/dist/gui-config.d.ts.map +1 -1
- package/dist/gui-config.js +47 -0
- package/dist/gui-config.js.map +1 -1
- package/dist/styles.css +271 -259
- package/dist/theme.css +22 -10
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
So EVERY token whose dark value is a --white-* rung must be restated below,
|
|
230
230
|
and check-tokens.mjs fails the build if one is missed — that class of bug is
|
|
231
231
|
silent (the border simply stops existing) and has shipped before. */
|
|
232
|
-
.light, :root.t_light{
|
|
232
|
+
.light, :root.t_light, .t_light{
|
|
233
233
|
color-scheme:light;
|
|
234
234
|
--background:#ffffff;
|
|
235
235
|
--foreground:#0a0a0a;
|
|
@@ -608,7 +608,7 @@
|
|
|
608
608
|
obvious spelling would invalidate the whole declaration and take the drop
|
|
609
609
|
shadow down with it. A zero-size transparent shadow composes to nothing and
|
|
610
610
|
costs nothing. */
|
|
611
|
-
.light, :root.t_light{
|
|
611
|
+
.light, :root.t_light, .t_light{
|
|
612
612
|
--shadow-floating:0 24px 60px -16px rgb(0 0 0 / .18);
|
|
613
613
|
--shadow-inset-hairline:inset 0 0 0 1px rgb(0 0 0 / .10);
|
|
614
614
|
--edge-highlight:inset 0 0 0 0 transparent;
|
|
@@ -895,7 +895,7 @@
|
|
|
895
895
|
stays INSIDE the layer — an unlayered rule here would outrank an app's own
|
|
896
896
|
utilities, which is the defect check 1c exists to catch. */
|
|
897
897
|
:where(html){scrollbar-color:var(--white-15) transparent;scrollbar-width:thin}
|
|
898
|
-
.light, :root.t_light{scrollbar-color:rgb(0 0 0 / .18) transparent}
|
|
898
|
+
.light, :root.t_light, .t_light{scrollbar-color:rgb(0 0 0 / .18) transparent}
|
|
899
899
|
:where(*)::-webkit-scrollbar{width:6px;height:6px}
|
|
900
900
|
:where(*)::-webkit-scrollbar-track{background:transparent}
|
|
901
901
|
:where(*)::-webkit-scrollbar-thumb{background:var(--white-15);border-radius:var(--radius-full)}
|
|
@@ -1186,16 +1186,19 @@
|
|
|
1186
1186
|
drop does all the work and must be light enough not to smudge, on near-black
|
|
1187
1187
|
it must be heavy enough to exist at all. The values are design's own, and
|
|
1188
1188
|
glass.test.ts fails if either column stops matching what design publishes.
|
|
1189
|
-
`:root.t_light` alongside `.light`
|
|
1190
|
-
compose-theme teaches design's sheet
|
|
1191
|
-
ships on its own, says
|
|
1189
|
+
`:root.t_light` and `.t_light` alongside `.light` are gui's spelling of the
|
|
1190
|
+
same idea — compose-theme teaches design's sheet those aliases, and this
|
|
1191
|
+
file, which also ships on its own, says them outright. The bare class is for
|
|
1192
|
+
a NESTED light scope: gui puts `t_light` on a span for `<Theme name="light">`
|
|
1193
|
+
inside a dark app, which `:root.t_light` cannot match, so without it a light
|
|
1194
|
+
island stood on the dark ladder. */
|
|
1192
1195
|
:root {
|
|
1193
1196
|
--glass-shadow-1: 0 1px 2px 0 rgb(0 0 0 / .40);
|
|
1194
1197
|
--glass-shadow-2: 0 10px 15px -3px rgb(0 0 0 / .55), 0 4px 6px -4px rgb(0 0 0 / .55);
|
|
1195
1198
|
--glass-shadow-3: 0 24px 60px -16px rgb(0 0 0 / .75);
|
|
1196
1199
|
}
|
|
1197
1200
|
|
|
1198
|
-
.light, :root.t_light {
|
|
1201
|
+
.light, :root.t_light, .t_light {
|
|
1199
1202
|
--glass-shadow-1: 0 1px 2px 0 rgb(0 0 0 / .06);
|
|
1200
1203
|
--glass-shadow-2: 0 10px 15px -3px rgb(0 0 0 / .09), 0 4px 6px -4px rgb(0 0 0 / .07);
|
|
1201
1204
|
--glass-shadow-3: 0 24px 60px -16px rgb(0 0 0 / .18);
|
|
@@ -1234,10 +1237,19 @@
|
|
|
1234
1237
|
|
|
1235
1238
|
One value, in one place: the recipes module reads the same token, so the dim
|
|
1236
1239
|
behind a component dialog and the dim behind a hand-rolled one are the same
|
|
1237
|
-
dim by construction rather than by two people remembering a number.
|
|
1240
|
+
dim by construction rather than by two people remembering a number.
|
|
1241
|
+
|
|
1242
|
+
!important for the same reason the material above carries it, and it was
|
|
1243
|
+
missing here: gui compiles `opacity` and `background-color` into atomic
|
|
1244
|
+
classes (`_o-0--5`, `_bg-rgba0000--538295333`) that land in an inline <style>
|
|
1245
|
+
a bundler orders AFTER this sheet, so at equal specificity they won and the
|
|
1246
|
+
rule read as if it had never been written. Measured on hanzo.app's ⌘K
|
|
1247
|
+
palette: `rgba(0,0,0,.5)` under `opacity: .5` — a quarter black, exactly the
|
|
1248
|
+
double dim these two lines exist to end. A rule written to beat a compiled
|
|
1249
|
+
class has to be written with the weight to beat one. */
|
|
1238
1250
|
[data-slot="dialog-overlay"] {
|
|
1239
|
-
opacity: 1;
|
|
1240
|
-
background-color: var(--surface-scrim, rgb(0 0 0 / .8));
|
|
1251
|
+
opacity: 1 !important;
|
|
1252
|
+
background-color: var(--surface-scrim, rgb(0 0 0 / .8)) !important;
|
|
1241
1253
|
}
|
|
1242
1254
|
|
|
1243
1255
|
/* ── Grouped rows ───────────────────────────────────────────────────────────
|
|
@@ -1506,7 +1518,7 @@
|
|
|
1506
1518
|
._hsb-y::-webkit-scrollbar:vertical { display: none !important; }
|
|
1507
1519
|
._hsb-x { scrollbar-width: none !important; }
|
|
1508
1520
|
._hsb-y { scrollbar-width: none !important; }
|
|
1509
|
-
:root{--t0:hsla(0, 0%, 20%, 1);--t1:hsla(0, 0%, 93%, 1);--t2:hsla(0, 0%, 4%, 0);--t3:hsla(0, 0%, 8%, 0.2);--t4:hsla(0, 0%, 8%, 0.4);--t5:hsla(0, 0%, 8%, 0.6);--t6:hsla(0, 0%, 8%, 0.8);--t7:hsla(0, 0%, 4%, 1);--t8:hsla(0, 0%, 8%, 1);--t9:hsla(0, 0%, 10%, 1);--t10:hsla(0, 0%, 14%, 1);--t11:hsla(0, 0%, 27%, 1);--t12:hsla(0, 0%, 40%, 1);--t13:hsla(0, 0%, 47%, 1);--t14:hsla(0, 0%, 52%, 1);--t15:hsla(0, 0%, 67%, 1);--t16:hsla(0, 0%, 80%, 1);--t17:hsla(0, 0%, 100%, 1);--t18:hsla(0, 0%, 100%, 0);--t19:hsla(0, 0%, 100%, 0.2);--t20:hsla(0, 0%, 100%, 0.4);--t21:hsla(0, 0%, 100%, 0.6);--t22:hsla(0, 0%, 100%, 0.8);--t23:#090909;--t24:#151515;--t25:#191919;--t26:#232323;--t27:#333;--t28:#444;--t29:#666;--t30:#777;--t31:#858585;--t32:#aaa;--t33:#ccc;--t34:#ffffff;--t35:#fff;--t36:#f8f8f8;--t37:hsl(0, 0%, 93%);--t38:hsl(0, 0%, 85%);--t39:hsl(0, 0%, 80%);--t40:hsl(0, 0%, 70%);--t41:hsl(0, 0%, 59%);--t42:hsl(0, 0%, 45%);--t43:hsl(0, 0%, 30%);--t44:hsl(0, 0%, 20%);--t45:hsl(0, 0%, 14%);--t46:hsl(0, 0%, 2%);--t47:rgba(255,255,255,1);--t48:rgba(255,255,255,0);--t49:rgba(255,255,255,0.2);--t50:rgba(255,255,255,0.4);--t51:rgba(255,255,255,0.6);--t52:rgba(255,255,255,0.8);--t53:rgba(0,0,0,1);--t54:rgba(0,0,0,0);--t55:rgba(0,0,0,0.2);--t56:rgba(0,0,0,0.4);--t57:rgba(0,0,0,0.6);--t58:rgba(0,0,0,0.8);--t59:rgba(0,0,0,0.15);--t60:rgba(0,0,0,0.23);--t61:rgba(0,0,0,0.33);--t62:rgba(0,0,0,0.45);--t63:rgba(0,0,0,0.65);--t64:rgba(0,0,0,0.9);--t65:rgba(255,255,255,0.1);--t66:rgba(255,255,255,0.3);--t67:rgba(255,255,255,0.45);--t68:rgba(255,255,255,0.65);--t69:rgba(255,255,255,0.85);--t70:rgba(255,255,255,0.95);--t71:#111111;--t72:#222222;--t73:#2a2a2a;--t74:#313131;--t75:#3a3a3a;--t76:#484848;--t77:#606060;--t78:#6e6e6e;--t79:#7b7b7b;--t80:#b4b4b4;--t81:#eeeeee;--t82:#0d1520;--t83:#111927;--t84:#0d2847;--t85:#003362;--t86:#004074;--t87:#104d87;--t88:#205d9e;--t89:#2870bd;--t90:#0090ff;--t91:#3b9eff;--t92:#70b8ff;--t93:#c2e6ff;--t94:#191111;--t95:#201314;--t96:#3b1219;--t97:#500f1c;--t98:#611623;--t99:#72232d;--t100:#8c333a;--t101:#b54548;--t102:#e5484d;--t103:#ec5d5e;--t104:#ff9592;--t105:#ffd1d9;--t106:#14120b;--t107:#1b180f;--t108:#2d2305;--t109:#362b00;--t110:#433500;--t111:#524202;--t112:#665417;--t113:#836a21;--t114:#ffe629;--t115:#ffff57;--t116:#f5e147;--t117:#f6eeb4;--t118:#0e1512;--t119:#121b17;--t120:#132d21;--t121:#113b29;--t122:#174933;--t123:#20573e;--t124:#28684a;--t125:#2f7c57;--t126:#30a46c;--t127:#33b074;--t128:#3dd68c;--t129:#b1f1cb;--t130:#17120e;--t131:#1e160f;--t132:#331e0b;--t133:#462100;--t134:#562800;--t135:#66350c;--t136:#7e451d;--t137:#a35829;--t138:#f76b15;--t139:#ff801f;--t140:#ffa057;--t141:#ffe0c2;--t142:#191117;--t143:#21121d;--t144:#37172f;--t145:#4b143d;--t146:#591c47;--t147:#692955;--t148:#833869;--t149:#a84885;--t150:#d6409f;--t151:#de51a8;--t152:#ff8dcc;--t153:#fdd1ea;--t154:#18111b;--t155:#1e1523;--t156:#301c3b;--t157:#3d224e;--t158:#48295c;--t159:#54346b;--t160:#664282;--t161:#8457aa;--t162:#8e4ec6;--t163:#9a5cd0;--t164:#d19dff;--t165:#ecd9fa;--t166:#0d1514;--t167:#111c1b;--t168:#0d2d2a;--t169:#023b37;--t170:#084843;--t171:#145750;--t172:#1c6961;--t173:#207e73;--t174:#12a594;--t175:#0eb39e;--t176:#0bd8b6;--t177:#adf0dd;--t178:hsl(0, 0%, 68%);--t179:hsl(0, 0%, 65%);--t180:hsl(0, 0%, 62%);--t181:hsl(0, 0%, 56%);--t182:hsl(0, 0%, 53%);--t183:hsl(0, 0%, 50%);--t184:hsl(0, 0%, 47%);--t185:hsl(0, 0%, 44%);--t186:hsl(0, 0%, 41%);--t187:hsl(0, 0%, 38%);--t188:hsl(0, 0%, 32%);--t189:hsla(0, 0%, 97%, 1);--t190:hsla(0, 0%, 85%, 1);--t191:hsla(0, 0%, 70%, 1);--t192:hsla(0, 0%, 59%, 1);--t193:hsla(0, 0%, 45%, 1);--t194:hsla(0, 0%, 30%, 1);--t195:hsla(0, 0%, 2%, 1);--t196:hsla(0, 0%, 100%, 0.1);--t197:hsla(0, 0%, 100%, 0.075);--t198:hsla(0, 0%, 100%, 0.05);--t199:hsla(0, 0%, 100%, 0.025);--t200:hsla(0, 0%, 100%, 0.02);--t201:hsla(0, 0%, 100%, 0.01);--t202:hsla(0, 0%, 8%, 0.1);--t203:hsla(0, 0%, 8%, 0.075);--t204:hsla(0, 0%, 8%, 0.05);--t205:hsla(0, 0%, 8%, 0.025);--t206:hsla(0, 0%, 8%, 0.02);--t207:hsla(0, 0%, 8%, 0.01);--t208:hsla(0, 0%, 27%, 0.6);--t209:hsla(0, 0%, 4%, 0.2);--t210:hsla(0, 0%, 4%, 0.4);--t211:hsla(0, 0%, 4%, 0.6);--t212:hsla(0, 0%, 4%, 0.8);--t213:hsla(0, 0%, 97%, 0.2);--t214:hsla(0, 0%, 97%, 0.4);--t215:hsla(0, 0%, 97%, 0.6);--t216:hsla(0, 0%, 97%, 0.8);--t217:hsla(0, 0%, 2%, 0);--t218:hsla(0, 0%, 2%, 0.2);--t219:hsla(0, 0%, 2%, 0.4);--t220:hsla(0, 0%, 2%, 0.6);--t221:hsla(0, 0%, 2%, 0.8);--t222:hsla(0, 0%, 2%, 0.1);--t223:hsla(0, 0%, 2%, 0.075);--t224:hsla(0, 0%, 2%, 0.05);--t225:hsla(0, 0%, 2%, 0.025);--t226:hsla(0, 0%, 2%, 0.02);--t227:hsla(0, 0%, 2%, 0.01);--t228:hsla(0, 0%, 97%, 0.1);--t229:hsla(0, 0%, 97%, 0.075);--t230:hsla(0, 0%, 97%, 0.05);--t231:hsla(0, 0%, 97%, 0.025);--t232:hsla(0, 0%, 97%, 0.02);--t233:hsla(0, 0%, 97%, 0.01);--t234:hsla(0, 0%, 70%, 0.6);--t235:hsla(216, 43%, 9%, 0);--t236:hsla(218, 39%, 11%, 0.2);--t237:hsla(218, 39%, 11%, 0.4);--t238:hsla(218, 39%, 11%, 0.6);--t239:hsla(218, 39%, 11%, 0.8);--t240:hsla(215, 42%, 9%, 1);--t241:hsla(218, 39%, 11%, 1);--t242:hsla(212, 69%, 16%, 1);--t243:hsla(209, 100%, 19%, 1);--t244:hsla(207, 100%, 23%, 1);--t245:hsla(209, 79%, 30%, 1);--t246:hsla(211, 66%, 37%, 1);--t247:hsla(211, 65%, 45%, 1);--t248:hsla(206, 100%, 50%, 1);--t249:hsla(210, 100%, 62%, 1);--t250:hsla(210, 100%, 72%, 1);--t251:hsla(205, 100%, 88%, 1);--t252:hsla(205, 100%, 88%, 0);--t253:hsla(205, 100%, 88%, 0.2);--t254:hsla(205, 100%, 88%, 0.4);--t255:hsla(205, 100%, 88%, 0.6);--t256:hsla(205, 100%, 88%, 0.8);--t257:hsla(205, 100%, 88%, 0.1);--t258:hsla(205, 100%, 88%, 0.075);--t259:hsla(205, 100%, 88%, 0.05);--t260:hsla(205, 100%, 88%, 0.025);--t261:hsla(205, 100%, 88%, 0.02);--t262:hsla(205, 100%, 88%, 0.01);--t263:hsla(218, 39%, 11%, 0.1);--t264:hsla(218, 39%, 11%, 0.075);--t265:hsla(218, 39%, 11%, 0.05);--t266:hsla(218, 39%, 11%, 0.025);--t267:hsla(218, 39%, 11%, 0.02);--t268:hsla(218, 39%, 11%, 0.01);--t269:hsla(209, 79%, 30%, 0.6);--t270:hsla(216, 43%, 9%, 0.2);--t271:hsla(216, 43%, 9%, 0.4);--t272:hsla(216, 43%, 9%, 0.6);--t273:hsla(216, 43%, 9%, 0.8);--t274:hsla(0, 0%, 7%, 0);--t275:hsla(0, 0%, 10%, 0.2);--t276:hsla(0, 0%, 10%, 0.4);--t277:hsla(0, 0%, 10%, 0.6);--t278:hsla(0, 0%, 10%, 0.8);--t279:hsla(0, 0%, 7%, 1);--t280:hsla(0, 0%, 13%, 1);--t281:hsla(0, 0%, 16%, 1);--t282:hsla(0, 0%, 19%, 1);--t283:hsla(0, 0%, 23%, 1);--t284:hsla(0, 0%, 28%, 1);--t285:hsla(0, 0%, 38%, 1);--t286:hsla(0, 0%, 43%, 1);--t287:hsla(0, 0%, 48%, 1);--t288:hsla(0, 0%, 71%, 1);--t289:hsla(0, 0%, 93%, 0);--t290:hsla(0, 0%, 93%, 0.2);--t291:hsla(0, 0%, 93%, 0.4);--t292:hsla(0, 0%, 93%, 0.6);--t293:hsla(0, 0%, 93%, 0.8);--t294:hsla(0, 0%, 93%, 0.1);--t295:hsla(0, 0%, 93%, 0.075);--t296:hsla(0, 0%, 93%, 0.05);--t297:hsla(0, 0%, 93%, 0.025);--t298:hsla(0, 0%, 93%, 0.02);--t299:hsla(0, 0%, 93%, 0.01);--t300:hsla(0, 0%, 10%, 0.1);--t301:hsla(0, 0%, 10%, 0.075);--t302:hsla(0, 0%, 10%, 0.05);--t303:hsla(0, 0%, 10%, 0.025);--t304:hsla(0, 0%, 10%, 0.02);--t305:hsla(0, 0%, 10%, 0.01);--t306:hsla(0, 0%, 23%, 0.6);--t307:hsla(0, 0%, 7%, 0.2);--t308:hsla(0, 0%, 7%, 0.4);--t309:hsla(0, 0%, 7%, 0.6);--t310:hsla(0, 0%, 7%, 0.8);--t311:hsla(154, 20%, 7%, 0);--t312:hsla(153, 20%, 9%, 0.2);--t313:hsla(153, 20%, 9%, 0.4);--t314:hsla(153, 20%, 9%, 0.6);--t315:hsla(153, 20%, 9%, 0.8);--t316:hsla(154, 20%, 7%, 1);--t317:hsla(153, 20%, 9%, 1);--t318:hsla(152, 41%, 13%, 1);--t319:hsla(154, 55%, 15%, 1);--t320:hsla(154, 52%, 19%, 1);--t321:hsla(153, 46%, 23%, 1);--t322:hsla(152, 44%, 28%, 1);--t323:hsla(151, 45%, 34%, 1);--t324:hsla(151, 55%, 42%, 1);--t325:hsla(151, 55%, 45%, 1);--t326:hsla(151, 65%, 54%, 1);--t327:hsla(144, 70%, 82%, 1);--t328:hsla(144, 70%, 82%, 0);--t329:hsla(144, 70%, 82%, 0.2);--t330:hsla(144, 70%, 82%, 0.4);--t331:hsla(144, 70%, 82%, 0.6);--t332:hsla(144, 70%, 82%, 0.8);--t333:hsla(144, 70%, 82%, 0.1);--t334:hsla(144, 70%, 82%, 0.075);--t335:hsla(144, 70%, 82%, 0.05);--t336:hsla(144, 70%, 82%, 0.025);--t337:hsla(144, 70%, 82%, 0.02);--t338:hsla(144, 70%, 82%, 0.01);--t339:hsla(153, 20%, 9%, 0.1);--t340:hsla(153, 20%, 9%, 0.075);--t341:hsla(153, 20%, 9%, 0.05);--t342:hsla(153, 20%, 9%, 0.025);--t343:hsla(153, 20%, 9%, 0.02);--t344:hsla(153, 20%, 9%, 0.01);--t345:hsla(153, 46%, 23%, 0.6);--t346:hsla(154, 20%, 7%, 0.2);--t347:hsla(154, 20%, 7%, 0.4);--t348:hsla(154, 20%, 7%, 0.6);--t349:hsla(154, 20%, 7%, 0.8);--t350:hsla(0, 0%, 68%, 0);--t351:hsla(0, 0%, 65%, 0.2);--t352:hsla(0, 0%, 65%, 0.4);--t353:hsla(0, 0%, 65%, 0.6);--t354:hsla(0, 0%, 65%, 0.8);--t355:hsla(0, 0%, 68%, 1);--t356:hsla(0, 0%, 65%, 1);--t357:hsla(0, 0%, 62%, 1);--t358:hsla(0, 0%, 56%, 1);--t359:hsla(0, 0%, 53%, 1);--t360:hsla(0, 0%, 50%, 1);--t361:hsla(0, 0%, 44%, 1);--t362:hsla(0, 0%, 41%, 1);--t363:hsla(0, 0%, 32%, 1);--t364:hsla(0, 0%, 32%, 0);--t365:hsla(0, 0%, 32%, 0.2);--t366:hsla(0, 0%, 32%, 0.4);--t367:hsla(0, 0%, 32%, 0.6);--t368:hsla(0, 0%, 32%, 0.8);--t369:hsla(0, 0%, 32%, 0.1);--t370:hsla(0, 0%, 32%, 0.075);--t371:hsla(0, 0%, 32%, 0.05);--t372:hsla(0, 0%, 32%, 0.025);--t373:hsla(0, 0%, 32%, 0.02);--t374:hsla(0, 0%, 32%, 0.01);--t375:hsla(0, 0%, 65%, 0.1);--t376:hsla(0, 0%, 65%, 0.075);--t377:hsla(0, 0%, 65%, 0.05);--t378:hsla(0, 0%, 65%, 0.025);--t379:hsla(0, 0%, 65%, 0.02);--t380:hsla(0, 0%, 65%, 0.01);--t381:hsla(0, 0%, 53%, 0.6);--t382:hsla(0, 0%, 68%, 0.2);--t383:hsla(0, 0%, 68%, 0.4);--t384:hsla(0, 0%, 68%, 0.6);--t385:hsla(0, 0%, 68%, 0.8);--t386:hsla(23, 22%, 7%, 0);--t387:hsla(28, 33%, 9%, 0.2);--t388:hsla(28, 33%, 9%, 0.4);--t389:hsla(28, 33%, 9%, 0.6);--t390:hsla(28, 33%, 9%, 0.8);--t391:hsla(27, 24%, 7%, 1);--t392:hsla(28, 33%, 9%, 1);--t393:hsla(29, 65%, 12%, 1);--t394:hsla(28, 100%, 14%, 1);--t395:hsla(28, 100%, 17%, 1);--t396:hsla(27, 79%, 22%, 1);--t397:hsla(25, 63%, 30%, 1);--t398:hsla(23, 60%, 40%, 1);--t399:hsla(23, 93%, 53%, 1);--t400:hsla(26, 100%, 56%, 1);--t401:hsla(26, 100%, 67%, 1);--t402:hsla(30, 100%, 88%, 1);--t403:hsla(30, 100%, 88%, 0);--t404:hsla(30, 100%, 88%, 0.2);--t405:hsla(30, 100%, 88%, 0.4);--t406:hsla(30, 100%, 88%, 0.6);--t407:hsla(30, 100%, 88%, 0.8);--t408:hsla(30, 100%, 88%, 0.1);--t409:hsla(30, 100%, 88%, 0.075);--t410:hsla(30, 100%, 88%, 0.05);--t411:hsla(30, 100%, 88%, 0.025);--t412:hsla(30, 100%, 88%, 0.02);--t413:hsla(30, 100%, 88%, 0.01);--t414:hsla(28, 33%, 9%, 0.1);--t415:hsla(28, 33%, 9%, 0.075);--t416:hsla(28, 33%, 9%, 0.05);--t417:hsla(28, 33%, 9%, 0.025);--t418:hsla(28, 33%, 9%, 0.02);--t419:hsla(28, 33%, 9%, 0.01);--t420:hsla(27, 79%, 22%, 0.6);--t421:hsla(23, 22%, 7%, 0.2);--t422:hsla(23, 22%, 7%, 0.4);--t423:hsla(23, 22%, 7%, 0.6);--t424:hsla(23, 22%, 7%, 0.8);--t425:hsla(317, 17%, 8%, 0);--t426:hsla(316, 29%, 10%, 0.2);--t427:hsla(316, 29%, 10%, 0.4);--t428:hsla(316, 29%, 10%, 0.6);--t429:hsla(316, 29%, 10%, 0.8);--t430:hsla(315, 19%, 8%, 1);--t431:hsla(316, 29%, 10%, 1);--t432:hsla(315, 41%, 15%, 1);--t433:hsla(315, 58%, 19%, 1);--t434:hsla(318, 52%, 23%, 1);--t435:hsla(319, 44%, 29%, 1);--t436:hsla(321, 40%, 37%, 1);--t437:hsla(322, 40%, 47%, 1);--t438:hsla(322, 65%, 55%, 1);--t439:hsla(323, 68%, 59%, 1);--t440:hsla(327, 100%, 78%, 1);--t441:hsla(326, 92%, 91%, 1);--t442:hsla(326, 91%, 91%, 0);--t443:hsla(326, 91%, 91%, 0.2);--t444:hsla(326, 91%, 91%, 0.4);--t445:hsla(326, 91%, 91%, 0.6);--t446:hsla(326, 91%, 91%, 0.8);--t447:hsla(326, 91%, 91%, 0.1);--t448:hsla(326, 91%, 91%, 0.075);--t449:hsla(326, 91%, 91%, 0.05);--t450:hsla(326, 91%, 91%, 0.025);--t451:hsla(326, 91%, 91%, 0.02);--t452:hsla(326, 91%, 91%, 0.01);--t453:hsla(316, 29%, 10%, 0.1);--t454:hsla(316, 29%, 10%, 0.075);--t455:hsla(316, 29%, 10%, 0.05);--t456:hsla(316, 29%, 10%, 0.025);--t457:hsla(316, 29%, 10%, 0.02);--t458:hsla(316, 29%, 10%, 0.01);--t459:hsla(319, 44%, 29%, 0.6);--t460:hsla(317, 17%, 8%, 0.2);--t461:hsla(317, 17%, 8%, 0.4);--t462:hsla(317, 17%, 8%, 0.6);--t463:hsla(317, 17%, 8%, 0.8);--t464:hsla(282, 22%, 9%, 0);--t465:hsla(279, 25%, 11%, 0.2);--t466:hsla(279, 25%, 11%, 0.4);--t467:hsla(279, 25%, 11%, 0.6);--t468:hsla(279, 25%, 11%, 0.8);--t469:hsla(282, 23%, 9%, 1);--t470:hsla(279, 25%, 11%, 1);--t471:hsla(279, 36%, 17%, 1);--t472:hsla(277, 39%, 22%, 1);--t473:hsla(276, 38%, 26%, 1);--t474:hsla(275, 35%, 31%, 1);--t475:hsla(274, 33%, 38%, 1);--t476:hsla(273, 33%, 50%, 1);--t477:hsla(272, 51%, 54%, 1);--t478:hsla(272, 55%, 59%, 1);--t479:hsla(272, 100%, 81%, 1);--t480:hsla(275, 77%, 92%, 1);--t481:hsla(275, 76%, 92%, 0);--t482:hsla(275, 76%, 92%, 0.2);--t483:hsla(275, 76%, 92%, 0.4);--t484:hsla(275, 76%, 92%, 0.6);--t485:hsla(275, 76%, 92%, 0.8);--t486:hsla(275, 76%, 92%, 0.1);--t487:hsla(275, 76%, 92%, 0.075);--t488:hsla(275, 76%, 92%, 0.05);--t489:hsla(275, 76%, 92%, 0.025);--t490:hsla(275, 76%, 92%, 0.02);--t491:hsla(275, 76%, 92%, 0.01);--t492:hsla(279, 25%, 11%, 0.1);--t493:hsla(279, 25%, 11%, 0.075);--t494:hsla(279, 25%, 11%, 0.05);--t495:hsla(279, 25%, 11%, 0.025);--t496:hsla(279, 25%, 11%, 0.02);--t497:hsla(279, 25%, 11%, 0.01);--t498:hsla(275, 35%, 31%, 0.6);--t499:hsla(282, 22%, 9%, 0.2);--t500:hsla(282, 22%, 9%, 0.4);--t501:hsla(282, 22%, 9%, 0.6);--t502:hsla(282, 22%, 9%, 0.8);--t503:hsla(0, 17%, 8%, 0);--t504:hsla(355, 25%, 10%, 0.2);--t505:hsla(355, 25%, 10%, 0.4);--t506:hsla(355, 25%, 10%, 0.6);--t507:hsla(355, 25%, 10%, 0.8);--t508:hsla(0, 19%, 8%, 1);--t509:hsla(355, 25%, 10%, 1);--t510:hsla(350, 53%, 15%, 1);--t511:hsla(348, 68%, 19%, 1);--t512:hsla(350, 63%, 23%, 1);--t513:hsla(352, 53%, 29%, 1);--t514:hsla(355, 47%, 37%, 1);--t515:hsla(358, 45%, 49%, 1);--t516:hsla(358, 75%, 59%, 1);--t517:hsla(360, 79%, 65%, 1);--t518:hsla(2, 100%, 79%, 1);--t519:hsla(350, 100%, 91%, 1);--t520:hsla(350, 100%, 91%, 0);--t521:hsla(350, 100%, 91%, 0.2);--t522:hsla(350, 100%, 91%, 0.4);--t523:hsla(350, 100%, 91%, 0.6);--t524:hsla(350, 100%, 91%, 0.8);--t525:hsla(350, 100%, 91%, 0.1);--t526:hsla(350, 100%, 91%, 0.075);--t527:hsla(350, 100%, 91%, 0.05);--t528:hsla(350, 100%, 91%, 0.025);--t529:hsla(350, 100%, 91%, 0.02);--t530:hsla(350, 100%, 91%, 0.01);--t531:hsla(355, 25%, 10%, 0.1);--t532:hsla(355, 25%, 10%, 0.075);--t533:hsla(355, 25%, 10%, 0.05);--t534:hsla(355, 25%, 10%, 0.025);--t535:hsla(355, 25%, 10%, 0.02);--t536:hsla(355, 25%, 10%, 0.01);--t537:hsla(352, 53%, 29%, 0.6);--t538:hsla(0, 17%, 8%, 0.2);--t539:hsla(0, 17%, 8%, 0.4);--t540:hsla(0, 17%, 8%, 0.6);--t541:hsla(0, 17%, 8%, 0.8);--t542:hsla(173, 22%, 7%, 0);--t543:hsla(175, 24%, 9%, 0.2);--t544:hsla(175, 24%, 9%, 0.4);--t545:hsla(175, 24%, 9%, 0.6);--t546:hsla(175, 24%, 9%, 0.8);--t547:hsla(173, 24%, 7%, 1);--t548:hsla(175, 24%, 9%, 1);--t549:hsla(174, 55%, 11%, 1);--t550:hsla(176, 93%, 12%, 1);--t551:hsla(175, 80%, 16%, 1);--t552:hsla(174, 63%, 21%, 1);--t553:hsla(174, 58%, 26%, 1);--t554:hsla(173, 59%, 31%, 1);--t555:hsla(173, 80%, 36%, 1);--t556:hsla(172, 85%, 38%, 1);--t557:hsla(170, 90%, 45%, 1);--t558:hsla(163, 69%, 81%, 1);--t559:hsla(163, 69%, 81%, 0);--t560:hsla(163, 69%, 81%, 0.2);--t561:hsla(163, 69%, 81%, 0.4);--t562:hsla(163, 69%, 81%, 0.6);--t563:hsla(163, 69%, 81%, 0.8);--t564:hsla(163, 69%, 81%, 0.1);--t565:hsla(163, 69%, 81%, 0.075);--t566:hsla(163, 69%, 81%, 0.05);--t567:hsla(163, 69%, 81%, 0.025);--t568:hsla(163, 69%, 81%, 0.02);--t569:hsla(163, 69%, 81%, 0.01);--t570:hsla(175, 24%, 9%, 0.1);--t571:hsla(175, 24%, 9%, 0.075);--t572:hsla(175, 24%, 9%, 0.05);--t573:hsla(175, 24%, 9%, 0.025);--t574:hsla(175, 24%, 9%, 0.02);--t575:hsla(175, 24%, 9%, 0.01);--t576:hsla(174, 63%, 21%, 0.6);--t577:hsla(173, 22%, 7%, 0.2);--t578:hsla(173, 22%, 7%, 0.4);--t579:hsla(173, 22%, 7%, 0.6);--t580:hsla(173, 22%, 7%, 0.8);--t581:hsla(47, 29%, 6%, 0);--t582:hsla(45, 29%, 8%, 0.2);--t583:hsla(45, 29%, 8%, 0.4);--t584:hsla(45, 29%, 8%, 0.6);--t585:hsla(45, 29%, 8%, 0.8);--t586:hsla(47, 29%, 6%, 1);--t587:hsla(45, 29%, 8%, 1);--t588:hsla(45, 80%, 10%, 1);--t589:hsla(48, 100%, 11%, 1);--t590:hsla(47, 100%, 13%, 1);--t591:hsla(48, 95%, 16%, 1);--t592:hsla(46, 63%, 25%, 1);--t593:hsla(45, 60%, 32%, 1);--t594:hsla(53, 100%, 58%, 1);--t595:hsla(60, 100%, 67%, 1);--t596:hsla(53, 90%, 62%, 1);--t597:hsla(53, 79%, 84%, 1);--t598:hsla(53, 78%, 84%, 0);--t599:hsla(53, 78%, 84%, 0.2);--t600:hsla(53, 78%, 84%, 0.4);--t601:hsla(53, 78%, 84%, 0.6);--t602:hsla(53, 78%, 84%, 0.8);--t603:hsla(53, 78%, 84%, 0.1);--t604:hsla(53, 78%, 84%, 0.075);--t605:hsla(53, 78%, 84%, 0.05);--t606:hsla(53, 78%, 84%, 0.025);--t607:hsla(53, 78%, 84%, 0.02);--t608:hsla(53, 78%, 84%, 0.01);--t609:hsla(45, 29%, 8%, 0.1);--t610:hsla(45, 29%, 8%, 0.075);--t611:hsla(45, 29%, 8%, 0.05);--t612:hsla(45, 29%, 8%, 0.025);--t613:hsla(45, 29%, 8%, 0.02);--t614:hsla(45, 29%, 8%, 0.01);--t615:hsla(48, 95%, 16%, 0.6);--t616:hsla(47, 29%, 6%, 0.2);--t617:hsla(47, 29%, 6%, 0.4);--t618:hsla(47, 29%, 6%, 0.6);--t619:hsla(47, 29%, 6%, 0.8);--t620:rgba(0,0,0,0.04);--t621:rgba(0,0,0,0.08);--t622:rgba(0,0,0,0.12);--t623:rgba(0,0,0,0.22);--t624:rgba(0,0,0,0.44);--t625:rgba(0,0,0,0.75);--t626:rgba(255,255,255,0.05);--t627:rgba(255,255,255,0.15);--t628:rgba(255,255,255,0.55);--t629:rgba(255,255,255,0.7);--t630:#fcfcfc;--t631:#f9f9f9;--t632:#f0f0f0;--t633:#e8e8e8;--t634:#e0e0e0;--t635:#d9d9d9;--t636:#cecece;--t637:#bbbbbb;--t638:#8d8d8d;--t639:#838383;--t640:#646464;--t641:#202020;--t642:#fbfdff;--t643:#f4faff;--t644:#e6f4fe;--t645:#d5efff;--t646:#c2e5ff;--t647:#acd8fc;--t648:#8ec8f6;--t649:#5eb1ef;--t650:#0588f0;--t651:#0d74ce;--t652:#113264;--t653:#fffcfc;--t654:#fff7f7;--t655:#feebec;--t656:#ffdbdc;--t657:#ffcdce;--t658:#fdbdbe;--t659:#f4a9aa;--t660:#eb8e90;--t661:#dc3e42;--t662:#ce2c31;--t663:#641723;--t664:#fdfdf9;--t665:#fefce9;--t666:#fffab8;--t667:#fff394;--t668:#ffe770;--t669:#f3d768;--t670:#e4c767;--t671:#d5ae39;--t672:#ffdc00;--t673:#9e6c00;--t674:#473b1f;--t675:#fbfefc;--t676:#f4fbf6;--t677:#e6f6eb;--t678:#d6f1df;--t679:#c4e8d1;--t680:#adddc0;--t681:#8eceaa;--t682:#5bb98b;--t683:#2b9a66;--t684:#218358;--t685:#193b2d;--t686:#fefcfb;--t687:#fff7ed;--t688:#ffefd6;--t689:#ffdfb5;--t690:#ffd19a;--t691:#ffc182;--t692:#f5ae73;--t693:#ec9455;--t694:#ef5f00;--t695:#cc4e00;--t696:#582d1d;--t697:#fffcfe;--t698:#fef7fb;--t699:#fee9f5;--t700:#fbdcef;--t701:#f6cee7;--t702:#efbfdd;--t703:#e7acd0;--t704:#dd93c2;--t705:#cf3897;--t706:#c2298a;--t707:#651249;--t708:#fefcfe;--t709:#fbf7fe;--t710:#f7edfe;--t711:#f2e2fc;--t712:#ead5f9;--t713:#e0c4f4;--t714:#d1afec;--t715:#be93e4;--t716:#8347b9;--t717:#8145b5;--t718:#402060;--t719:#fafefd;--t720:#f3fbf9;--t721:#e0f8f3;--t722:#ccf3ea;--t723:#b8eae0;--t724:#a1ded2;--t725:#83cdc1;--t726:#53b9ab;--t727:#0d9b8a;--t728:#008573;--t729:#0d3d38;--t730:hsla(216, 100%, 99%, 0);--t731:hsla(207, 100%, 98%, 0.2);--t732:hsla(207, 100%, 98%, 0.4);--t733:hsla(207, 100%, 98%, 0.6);--t734:hsla(207, 100%, 98%, 0.8);--t735:hsla(210, 100%, 99%, 1);--t736:hsla(207, 100%, 98%, 1);--t737:hsla(205, 92%, 95%, 1);--t738:hsla(203, 100%, 92%, 1);--t739:hsla(206, 100%, 88%, 1);--t740:hsla(207, 93%, 83%, 1);--t741:hsla(207, 85%, 76%, 1);--t742:hsla(206, 82%, 65%, 1);--t743:hsla(207, 96%, 48%, 1);--t744:hsla(208, 88%, 43%, 1);--t745:hsla(216, 71%, 23%, 1);--t746:hsla(216, 71%, 23%, 0);--t747:hsla(216, 71%, 23%, 0.2);--t748:hsla(216, 71%, 23%, 0.4);--t749:hsla(216, 71%, 23%, 0.6);--t750:hsla(216, 71%, 23%, 0.8);--t751:hsla(216, 71%, 23%, 0.1);--t752:hsla(216, 71%, 23%, 0.075);--t753:hsla(216, 71%, 23%, 0.05);--t754:hsla(216, 71%, 23%, 0.025);--t755:hsla(216, 71%, 23%, 0.02);--t756:hsla(216, 71%, 23%, 0.01);--t757:hsla(207, 100%, 98%, 0.1);--t758:hsla(207, 100%, 98%, 0.075);--t759:hsla(207, 100%, 98%, 0.05);--t760:hsla(207, 100%, 98%, 0.025);--t761:hsla(207, 100%, 98%, 0.02);--t762:hsla(207, 100%, 98%, 0.01);--t763:hsla(207, 93%, 83%, 0.6);--t764:hsla(216, 100%, 99%, 0.2);--t765:hsla(216, 100%, 99%, 0.4);--t766:hsla(216, 100%, 99%, 0.6);--t767:hsla(216, 100%, 99%, 0.8);--t768:hsla(0, 0%, 99%, 0);--t769:hsla(0, 0%, 98%, 0.2);--t770:hsla(0, 0%, 98%, 0.4);--t771:hsla(0, 0%, 98%, 0.6);--t772:hsla(0, 0%, 98%, 0.8);--t773:hsla(0, 0%, 99%, 1);--t774:hsla(0, 0%, 98%, 1);--t775:hsla(0, 0%, 94%, 1);--t776:hsla(0, 0%, 91%, 1);--t777:hsla(0, 0%, 88%, 1);--t778:hsla(0, 0%, 81%, 1);--t779:hsla(0, 0%, 73%, 1);--t780:hsla(0, 0%, 55%, 1);--t781:hsla(0, 0%, 51%, 1);--t782:hsla(0, 0%, 39%, 1);--t783:hsla(0, 0%, 13%, 0);--t784:hsla(0, 0%, 13%, 0.2);--t785:hsla(0, 0%, 13%, 0.4);--t786:hsla(0, 0%, 13%, 0.6);--t787:hsla(0, 0%, 13%, 0.8);--t788:hsla(0, 0%, 13%, 0.1);--t789:hsla(0, 0%, 13%, 0.075);--t790:hsla(0, 0%, 13%, 0.05);--t791:hsla(0, 0%, 13%, 0.025);--t792:hsla(0, 0%, 13%, 0.02);--t793:hsla(0, 0%, 13%, 0.01);--t794:hsla(0, 0%, 98%, 0.1);--t795:hsla(0, 0%, 98%, 0.075);--t796:hsla(0, 0%, 98%, 0.05);--t797:hsla(0, 0%, 98%, 0.025);--t798:hsla(0, 0%, 98%, 0.02);--t799:hsla(0, 0%, 98%, 0.01);--t800:hsla(0, 0%, 85%, 0.6);--t801:hsla(0, 0%, 99%, 0.2);--t802:hsla(0, 0%, 99%, 0.4);--t803:hsla(0, 0%, 99%, 0.6);--t804:hsla(0, 0%, 99%, 0.8);--t805:hsla(140, 60%, 99%, 0);--t806:hsla(137, 47%, 97%, 0.2);--t807:hsla(137, 47%, 97%, 0.4);--t808:hsla(137, 47%, 97%, 0.6);--t809:hsla(137, 47%, 97%, 0.8);--t810:hsla(140, 60%, 99%, 1);--t811:hsla(137, 47%, 97%, 1);--t812:hsla(139, 47%, 93%, 1);--t813:hsla(140, 49%, 89%, 1);--t814:hsla(142, 44%, 84%, 1);--t815:hsla(144, 41%, 77%, 1);--t816:hsla(146, 40%, 68%, 1);--t817:hsla(151, 40%, 54%, 1);--t818:hsla(152, 56%, 39%, 1);--t819:hsla(154, 60%, 32%, 1);--t820:hsla(155, 40%, 16%, 1);--t821:hsla(156, 41%, 16%, 0);--t822:hsla(156, 41%, 16%, 0.2);--t823:hsla(156, 41%, 16%, 0.4);--t824:hsla(156, 41%, 16%, 0.6);--t825:hsla(156, 41%, 16%, 0.8);--t826:hsla(156, 41%, 16%, 0.1);--t827:hsla(156, 41%, 16%, 0.075);--t828:hsla(156, 41%, 16%, 0.05);--t829:hsla(156, 41%, 16%, 0.025);--t830:hsla(156, 41%, 16%, 0.02);--t831:hsla(156, 41%, 16%, 0.01);--t832:hsla(137, 47%, 97%, 0.1);--t833:hsla(137, 47%, 97%, 0.075);--t834:hsla(137, 47%, 97%, 0.05);--t835:hsla(137, 47%, 97%, 0.025);--t836:hsla(137, 47%, 97%, 0.02);--t837:hsla(137, 47%, 97%, 0.01);--t838:hsla(144, 41%, 77%, 0.6);--t839:hsla(140, 60%, 99%, 0.2);--t840:hsla(140, 60%, 99%, 0.4);--t841:hsla(140, 60%, 99%, 0.6);--t842:hsla(140, 60%, 99%, 0.8);--t843:hsla(20, 60%, 99%, 0);--t844:hsla(33, 100%, 96%, 0.2);--t845:hsla(33, 100%, 96%, 0.4);--t846:hsla(33, 100%, 96%, 0.6);--t847:hsla(33, 100%, 96%, 0.8);--t848:hsla(20, 60%, 99%, 1);--t849:hsla(33, 100%, 96%, 1);--t850:hsla(37, 100%, 92%, 1);--t851:hsla(34, 100%, 85%, 1);--t852:hsla(33, 100%, 80%, 1);--t853:hsla(30, 100%, 75%, 1);--t854:hsla(27, 87%, 71%, 1);--t855:hsla(25, 80%, 63%, 1);--t856:hsla(24, 100%, 47%, 1);--t857:hsla(23, 100%, 40%, 1);--t858:hsla(16, 50%, 23%, 1);--t859:hsla(16, 50%, 23%, 0);--t860:hsla(16, 50%, 23%, 0.2);--t861:hsla(16, 50%, 23%, 0.4);--t862:hsla(16, 50%, 23%, 0.6);--t863:hsla(16, 50%, 23%, 0.8);--t864:hsla(16, 50%, 23%, 0.1);--t865:hsla(16, 50%, 23%, 0.075);--t866:hsla(16, 50%, 23%, 0.05);--t867:hsla(16, 50%, 23%, 0.025);--t868:hsla(16, 50%, 23%, 0.02);--t869:hsla(16, 50%, 23%, 0.01);--t870:hsla(33, 100%, 96%, 0.1);--t871:hsla(33, 100%, 96%, 0.075);--t872:hsla(33, 100%, 96%, 0.05);--t873:hsla(33, 100%, 96%, 0.025);--t874:hsla(33, 100%, 96%, 0.02);--t875:hsla(33, 100%, 96%, 0.01);--t876:hsla(30, 100%, 75%, 0.6);--t877:hsla(20, 60%, 99%, 0.2);--t878:hsla(20, 60%, 99%, 0.4);--t879:hsla(20, 60%, 99%, 0.6);--t880:hsla(20, 60%, 99%, 0.8);--t881:hsla(324, 100%, 99%, 0);--t882:hsla(326, 78%, 98%, 0.2);--t883:hsla(326, 78%, 98%, 0.4);--t884:hsla(326, 78%, 98%, 0.6);--t885:hsla(326, 78%, 98%, 0.8);--t886:hsla(320, 100%, 99%, 1);--t887:hsla(326, 78%, 98%, 1);--t888:hsla(326, 91%, 95%, 1);--t889:hsla(323, 79%, 92%, 1);--t890:hsla(323, 69%, 89%, 1);--t891:hsla(323, 60%, 84%, 1);--t892:hsla(323, 55%, 79%, 1);--t893:hsla(322, 52%, 72%, 1);--t894:hsla(322, 61%, 52%, 1);--t895:hsla(322, 65%, 46%, 1);--t896:hsla(320, 70%, 23%, 1);--t897:hsla(320, 69%, 23%, 0);--t898:hsla(320, 69%, 23%, 0.2);--t899:hsla(320, 69%, 23%, 0.4);--t900:hsla(320, 69%, 23%, 0.6);--t901:hsla(320, 69%, 23%, 0.8);--t902:hsla(320, 69%, 23%, 0.1);--t903:hsla(320, 69%, 23%, 0.075);--t904:hsla(320, 69%, 23%, 0.05);--t905:hsla(320, 69%, 23%, 0.025);--t906:hsla(320, 69%, 23%, 0.02);--t907:hsla(320, 69%, 23%, 0.01);--t908:hsla(326, 78%, 98%, 0.1);--t909:hsla(326, 78%, 98%, 0.075);--t910:hsla(326, 78%, 98%, 0.05);--t911:hsla(326, 78%, 98%, 0.025);--t912:hsla(326, 78%, 98%, 0.02);--t913:hsla(326, 78%, 98%, 0.01);--t914:hsla(323, 60%, 84%, 0.6);--t915:hsla(324, 100%, 99%, 0.2);--t916:hsla(324, 100%, 99%, 0.4);--t917:hsla(324, 100%, 99%, 0.6);--t918:hsla(324, 100%, 99%, 0.8);--t919:hsla(300, 60%, 99%, 0);--t920:hsla(274, 78%, 98%, 0.2);--t921:hsla(274, 78%, 98%, 0.4);--t922:hsla(274, 78%, 98%, 0.6);--t923:hsla(274, 78%, 98%, 0.8);--t924:hsla(300, 50%, 99%, 1);--t925:hsla(274, 78%, 98%, 1);--t926:hsla(275, 89%, 96%, 1);--t927:hsla(277, 81%, 94%, 1);--t928:hsla(275, 75%, 91%, 1);--t929:hsla(275, 69%, 86%, 1);--t930:hsla(273, 62%, 81%, 1);--t931:hsla(272, 60%, 74%, 1);--t932:hsla(272, 45%, 50%, 1);--t933:hsla(272, 45%, 49%, 1);--t934:hsla(270, 50%, 25%, 1);--t935:hsla(270, 50%, 25%, 0);--t936:hsla(270, 50%, 25%, 0.2);--t937:hsla(270, 50%, 25%, 0.4);--t938:hsla(270, 50%, 25%, 0.6);--t939:hsla(270, 50%, 25%, 0.8);--t940:hsla(270, 50%, 25%, 0.1);--t941:hsla(270, 50%, 25%, 0.075);--t942:hsla(270, 50%, 25%, 0.05);--t943:hsla(270, 50%, 25%, 0.025);--t944:hsla(270, 50%, 25%, 0.02);--t945:hsla(270, 50%, 25%, 0.01);--t946:hsla(274, 78%, 98%, 0.1);--t947:hsla(274, 78%, 98%, 0.075);--t948:hsla(274, 78%, 98%, 0.05);--t949:hsla(274, 78%, 98%, 0.025);--t950:hsla(274, 78%, 98%, 0.02);--t951:hsla(274, 78%, 98%, 0.01);--t952:hsla(275, 69%, 86%, 0.6);--t953:hsla(300, 60%, 99%, 0.2);--t954:hsla(300, 60%, 99%, 0.4);--t955:hsla(300, 60%, 99%, 0.6);--t956:hsla(300, 60%, 99%, 0.8);--t957:hsla(0, 100%, 99%, 0);--t958:hsla(0, 100%, 98%, 0.2);--t959:hsla(0, 100%, 98%, 0.4);--t960:hsla(0, 100%, 98%, 0.6);--t961:hsla(0, 100%, 98%, 0.8);--t962:hsla(0, 100%, 99%, 1);--t963:hsla(0, 100%, 98%, 1);--t964:hsla(357, 90%, 96%, 1);--t965:hsla(358, 100%, 93%, 1);--t966:hsla(359, 100%, 90%, 1);--t967:hsla(359, 94%, 87%, 1);--t968:hsla(359, 77%, 81%, 1);--t969:hsla(359, 70%, 74%, 1);--t970:hsla(358, 69%, 55%, 1);--t971:hsla(358, 65%, 49%, 1);--t972:hsla(351, 63%, 24%, 1);--t973:hsla(351, 63%, 24%, 0);--t974:hsla(351, 63%, 24%, 0.2);--t975:hsla(351, 63%, 24%, 0.4);--t976:hsla(351, 63%, 24%, 0.6);--t977:hsla(351, 63%, 24%, 0.8);--t978:hsla(351, 63%, 24%, 0.1);--t979:hsla(351, 63%, 24%, 0.075);--t980:hsla(351, 63%, 24%, 0.05);--t981:hsla(351, 63%, 24%, 0.025);--t982:hsla(351, 63%, 24%, 0.02);--t983:hsla(351, 63%, 24%, 0.01);--t984:hsla(0, 100%, 98%, 0.1);--t985:hsla(0, 100%, 98%, 0.075);--t986:hsla(0, 100%, 98%, 0.05);--t987:hsla(0, 100%, 98%, 0.025);--t988:hsla(0, 100%, 98%, 0.02);--t989:hsla(0, 100%, 98%, 0.01);--t990:hsla(359, 94%, 87%, 0.6);--t991:hsla(0, 100%, 99%, 0.2);--t992:hsla(0, 100%, 99%, 0.4);--t993:hsla(0, 100%, 99%, 0.6);--t994:hsla(0, 100%, 99%, 0.8);--t995:hsla(160, 60%, 99%, 0);--t996:hsla(165, 50%, 97%, 0.2);--t997:hsla(165, 50%, 97%, 0.4);--t998:hsla(165, 50%, 97%, 0.6);--t999:hsla(165, 50%, 97%, 0.8);--t1000:hsla(165, 67%, 99%, 1);--t1001:hsla(165, 50%, 97%, 1);--t1002:hsla(167, 63%, 93%, 1);--t1003:hsla(166, 62%, 88%, 1);--t1004:hsla(168, 54%, 82%, 1);--t1005:hsla(168, 48%, 75%, 1);--t1006:hsla(170, 43%, 66%, 1);--t1007:hsla(172, 42%, 53%, 1);--t1008:hsla(173, 85%, 33%, 1);--t1009:hsla(172, 100%, 26%, 1);--t1010:hsla(174, 65%, 15%, 1);--t1011:hsla(174, 66%, 15%, 0);--t1012:hsla(174, 66%, 15%, 0.2);--t1013:hsla(174, 66%, 15%, 0.4);--t1014:hsla(174, 66%, 15%, 0.6);--t1015:hsla(174, 66%, 15%, 0.8);--t1016:hsla(174, 66%, 15%, 0.1);--t1017:hsla(174, 66%, 15%, 0.075);--t1018:hsla(174, 66%, 15%, 0.05);--t1019:hsla(174, 66%, 15%, 0.025);--t1020:hsla(174, 66%, 15%, 0.02);--t1021:hsla(174, 66%, 15%, 0.01);--t1022:hsla(165, 50%, 97%, 0.1);--t1023:hsla(165, 50%, 97%, 0.075);--t1024:hsla(165, 50%, 97%, 0.05);--t1025:hsla(165, 50%, 97%, 0.025);--t1026:hsla(165, 50%, 97%, 0.02);--t1027:hsla(165, 50%, 97%, 0.01);--t1028:hsla(168, 48%, 75%, 0.6);--t1029:hsla(160, 60%, 99%, 0.2);--t1030:hsla(160, 60%, 99%, 0.4);--t1031:hsla(160, 60%, 99%, 0.6);--t1032:hsla(160, 60%, 99%, 0.8);--t1033:hsla(60, 45%, 98%, 0);--t1034:hsla(54, 91%, 95%, 0.2);--t1035:hsla(54, 91%, 95%, 0.4);--t1036:hsla(54, 91%, 95%, 0.6);--t1037:hsla(54, 91%, 95%, 0.8);--t1038:hsla(60, 50%, 98%, 1);--t1039:hsla(54, 91%, 95%, 1);--t1040:hsla(56, 100%, 86%, 1);--t1041:hsla(53, 100%, 79%, 1);--t1042:hsla(50, 100%, 72%, 1);--t1043:hsla(48, 85%, 68%, 1);--t1044:hsla(46, 70%, 65%, 1);--t1045:hsla(45, 65%, 53%, 1);--t1046:hsla(52, 100%, 50%, 1);--t1047:hsla(41, 100%, 31%, 1);--t1048:hsla(42, 39%, 20%, 1);--t1049:hsla(42, 39%, 20%, 0);--t1050:hsla(42, 39%, 20%, 0.2);--t1051:hsla(42, 39%, 20%, 0.4);--t1052:hsla(42, 39%, 20%, 0.6);--t1053:hsla(42, 39%, 20%, 0.8);--t1054:hsla(42, 39%, 20%, 0.1);--t1055:hsla(42, 39%, 20%, 0.075);--t1056:hsla(42, 39%, 20%, 0.05);--t1057:hsla(42, 39%, 20%, 0.025);--t1058:hsla(42, 39%, 20%, 0.02);--t1059:hsla(42, 39%, 20%, 0.01);--t1060:hsla(54, 91%, 95%, 0.1);--t1061:hsla(54, 91%, 95%, 0.075);--t1062:hsla(54, 91%, 95%, 0.05);--t1063:hsla(54, 91%, 95%, 0.025);--t1064:hsla(54, 91%, 95%, 0.02);--t1065:hsla(54, 91%, 95%, 0.01);--t1066:hsla(48, 85%, 68%, 0.6);--t1067:hsla(60, 45%, 98%, 0.2);--t1068:hsla(60, 45%, 98%, 0.4);--t1069:hsla(60, 45%, 98%, 0.6);--t1070:hsla(60, 45%, 98%, 0.8)}
|
|
1521
|
+
:root{--t0:hsla(0, 0%, 20%, 1);--t1:hsla(0, 0%, 93%, 1);--t2:hsla(0, 0%, 4%, 0);--t3:hsla(0, 0%, 8%, 0.2);--t4:hsla(0, 0%, 8%, 0.4);--t5:hsla(0, 0%, 8%, 0.6);--t6:hsla(0, 0%, 8%, 0.8);--t7:hsla(0, 0%, 4%, 1);--t8:hsla(0, 0%, 8%, 1);--t9:hsla(0, 0%, 10%, 1);--t10:var(--border, rgb(255 255 255 / .10));--t11:hsla(0, 0%, 27%, 1);--t12:hsla(0, 0%, 40%, 1);--t13:hsla(0, 0%, 47%, 1);--t14:hsla(0, 0%, 52%, 1);--t15:hsla(0, 0%, 67%, 1);--t16:hsla(0, 0%, 80%, 1);--t17:var(--foreground, #fafafa);--t18:hsla(0, 0%, 100%, 0);--t19:hsla(0, 0%, 100%, 0.2);--t20:hsla(0, 0%, 100%, 0.4);--t21:hsla(0, 0%, 100%, 0.6);--t22:hsla(0, 0%, 100%, 0.8);--t23:hsla(0, 0%, 100%, 1);--t24:hsla(0, 0%, 14%, 1);--t25:#090909;--t26:#151515;--t27:#191919;--t28:#232323;--t29:#333;--t30:#444;--t31:#666;--t32:#777;--t33:#858585;--t34:#aaa;--t35:#ccc;--t36:#ffffff;--t37:#fff;--t38:#f8f8f8;--t39:hsl(0, 0%, 93%);--t40:hsl(0, 0%, 85%);--t41:hsl(0, 0%, 80%);--t42:hsl(0, 0%, 70%);--t43:hsl(0, 0%, 59%);--t44:hsl(0, 0%, 45%);--t45:hsl(0, 0%, 30%);--t46:hsl(0, 0%, 20%);--t47:hsl(0, 0%, 14%);--t48:hsl(0, 0%, 2%);--t49:rgba(255,255,255,1);--t50:rgba(255,255,255,0);--t51:rgba(255,255,255,0.2);--t52:rgba(255,255,255,0.4);--t53:rgba(255,255,255,0.6);--t54:rgba(255,255,255,0.8);--t55:rgba(0,0,0,1);--t56:rgba(0,0,0,0);--t57:rgba(0,0,0,0.2);--t58:rgba(0,0,0,0.4);--t59:rgba(0,0,0,0.6);--t60:rgba(0,0,0,0.8);--t61:rgba(0,0,0,0.15);--t62:rgba(0,0,0,0.23);--t63:rgba(0,0,0,0.33);--t64:rgba(0,0,0,0.45);--t65:rgba(0,0,0,0.65);--t66:rgba(0,0,0,0.9);--t67:rgba(255,255,255,0.1);--t68:rgba(255,255,255,0.3);--t69:rgba(255,255,255,0.45);--t70:rgba(255,255,255,0.65);--t71:rgba(255,255,255,0.85);--t72:rgba(255,255,255,0.95);--t73:#111111;--t74:#222222;--t75:#2a2a2a;--t76:#313131;--t77:#3a3a3a;--t78:#484848;--t79:#606060;--t80:#6e6e6e;--t81:#7b7b7b;--t82:#b4b4b4;--t83:#eeeeee;--t84:#0d1520;--t85:#111927;--t86:#0d2847;--t87:#003362;--t88:#004074;--t89:#104d87;--t90:#205d9e;--t91:#2870bd;--t92:#0090ff;--t93:#3b9eff;--t94:#70b8ff;--t95:#c2e6ff;--t96:#191111;--t97:#201314;--t98:#3b1219;--t99:#500f1c;--t100:#611623;--t101:#72232d;--t102:#8c333a;--t103:#b54548;--t104:#e5484d;--t105:#ec5d5e;--t106:#ff9592;--t107:#ffd1d9;--t108:#14120b;--t109:#1b180f;--t110:#2d2305;--t111:#362b00;--t112:#433500;--t113:#524202;--t114:#665417;--t115:#836a21;--t116:#ffe629;--t117:#ffff57;--t118:#f5e147;--t119:#f6eeb4;--t120:#0e1512;--t121:#121b17;--t122:#132d21;--t123:#113b29;--t124:#174933;--t125:#20573e;--t126:#28684a;--t127:#2f7c57;--t128:#30a46c;--t129:#33b074;--t130:#3dd68c;--t131:#b1f1cb;--t132:#17120e;--t133:#1e160f;--t134:#331e0b;--t135:#462100;--t136:#562800;--t137:#66350c;--t138:#7e451d;--t139:#a35829;--t140:#f76b15;--t141:#ff801f;--t142:#ffa057;--t143:#ffe0c2;--t144:#191117;--t145:#21121d;--t146:#37172f;--t147:#4b143d;--t148:#591c47;--t149:#692955;--t150:#833869;--t151:#a84885;--t152:#d6409f;--t153:#de51a8;--t154:#ff8dcc;--t155:#fdd1ea;--t156:#18111b;--t157:#1e1523;--t158:#301c3b;--t159:#3d224e;--t160:#48295c;--t161:#54346b;--t162:#664282;--t163:#8457aa;--t164:#8e4ec6;--t165:#9a5cd0;--t166:#d19dff;--t167:#ecd9fa;--t168:#0d1514;--t169:#111c1b;--t170:#0d2d2a;--t171:#023b37;--t172:#084843;--t173:#145750;--t174:#1c6961;--t175:#207e73;--t176:#12a594;--t177:#0eb39e;--t178:#0bd8b6;--t179:#adf0dd;--t180:hsl(0, 0%, 68%);--t181:hsl(0, 0%, 65%);--t182:hsl(0, 0%, 62%);--t183:hsl(0, 0%, 56%);--t184:hsl(0, 0%, 53%);--t185:hsl(0, 0%, 50%);--t186:hsl(0, 0%, 47%);--t187:hsl(0, 0%, 44%);--t188:hsl(0, 0%, 41%);--t189:hsl(0, 0%, 38%);--t190:hsl(0, 0%, 32%);--t191:hsla(0, 0%, 97%, 1);--t192:hsla(0, 0%, 85%, 1);--t193:hsla(0, 0%, 70%, 1);--t194:hsla(0, 0%, 59%, 1);--t195:hsla(0, 0%, 45%, 1);--t196:hsla(0, 0%, 30%, 1);--t197:hsla(0, 0%, 2%, 1);--t198:hsla(0, 0%, 100%, 0.1);--t199:hsla(0, 0%, 100%, 0.075);--t200:hsla(0, 0%, 100%, 0.05);--t201:hsla(0, 0%, 100%, 0.025);--t202:hsla(0, 0%, 100%, 0.02);--t203:hsla(0, 0%, 100%, 0.01);--t204:hsla(0, 0%, 8%, 0.1);--t205:hsla(0, 0%, 8%, 0.075);--t206:hsla(0, 0%, 8%, 0.05);--t207:hsla(0, 0%, 8%, 0.025);--t208:hsla(0, 0%, 8%, 0.02);--t209:hsla(0, 0%, 8%, 0.01);--t210:hsla(0, 0%, 27%, 0.6);--t211:hsla(0, 0%, 4%, 0.2);--t212:hsla(0, 0%, 4%, 0.4);--t213:hsla(0, 0%, 4%, 0.6);--t214:hsla(0, 0%, 4%, 0.8);--t215:hsla(0, 0%, 97%, 0.2);--t216:hsla(0, 0%, 97%, 0.4);--t217:hsla(0, 0%, 97%, 0.6);--t218:hsla(0, 0%, 97%, 0.8);--t219:hsla(0, 0%, 2%, 0);--t220:hsla(0, 0%, 2%, 0.2);--t221:hsla(0, 0%, 2%, 0.4);--t222:hsla(0, 0%, 2%, 0.6);--t223:hsla(0, 0%, 2%, 0.8);--t224:hsla(0, 0%, 2%, 0.1);--t225:hsla(0, 0%, 2%, 0.075);--t226:hsla(0, 0%, 2%, 0.05);--t227:hsla(0, 0%, 2%, 0.025);--t228:hsla(0, 0%, 2%, 0.02);--t229:hsla(0, 0%, 2%, 0.01);--t230:hsla(0, 0%, 97%, 0.1);--t231:hsla(0, 0%, 97%, 0.075);--t232:hsla(0, 0%, 97%, 0.05);--t233:hsla(0, 0%, 97%, 0.025);--t234:hsla(0, 0%, 97%, 0.02);--t235:hsla(0, 0%, 97%, 0.01);--t236:hsla(0, 0%, 70%, 0.6);--t237:hsla(216, 43%, 9%, 0);--t238:hsla(218, 39%, 11%, 0.2);--t239:hsla(218, 39%, 11%, 0.4);--t240:hsla(218, 39%, 11%, 0.6);--t241:hsla(218, 39%, 11%, 0.8);--t242:hsla(215, 42%, 9%, 1);--t243:hsla(218, 39%, 11%, 1);--t244:hsla(212, 69%, 16%, 1);--t245:hsla(209, 100%, 19%, 1);--t246:hsla(207, 100%, 23%, 1);--t247:hsla(209, 79%, 30%, 1);--t248:hsla(211, 66%, 37%, 1);--t249:hsla(211, 65%, 45%, 1);--t250:hsla(206, 100%, 50%, 1);--t251:hsla(210, 100%, 62%, 1);--t252:hsla(210, 100%, 72%, 1);--t253:hsla(205, 100%, 88%, 1);--t254:hsla(205, 100%, 88%, 0);--t255:hsla(205, 100%, 88%, 0.2);--t256:hsla(205, 100%, 88%, 0.4);--t257:hsla(205, 100%, 88%, 0.6);--t258:hsla(205, 100%, 88%, 0.8);--t259:hsla(205, 100%, 88%, 0.1);--t260:hsla(205, 100%, 88%, 0.075);--t261:hsla(205, 100%, 88%, 0.05);--t262:hsla(205, 100%, 88%, 0.025);--t263:hsla(205, 100%, 88%, 0.02);--t264:hsla(205, 100%, 88%, 0.01);--t265:hsla(218, 39%, 11%, 0.1);--t266:hsla(218, 39%, 11%, 0.075);--t267:hsla(218, 39%, 11%, 0.05);--t268:hsla(218, 39%, 11%, 0.025);--t269:hsla(218, 39%, 11%, 0.02);--t270:hsla(218, 39%, 11%, 0.01);--t271:hsla(209, 79%, 30%, 0.6);--t272:hsla(216, 43%, 9%, 0.2);--t273:hsla(216, 43%, 9%, 0.4);--t274:hsla(216, 43%, 9%, 0.6);--t275:hsla(216, 43%, 9%, 0.8);--t276:hsla(0, 0%, 7%, 0);--t277:hsla(0, 0%, 10%, 0.2);--t278:hsla(0, 0%, 10%, 0.4);--t279:hsla(0, 0%, 10%, 0.6);--t280:hsla(0, 0%, 10%, 0.8);--t281:hsla(0, 0%, 7%, 1);--t282:hsla(0, 0%, 13%, 1);--t283:hsla(0, 0%, 16%, 1);--t284:hsla(0, 0%, 19%, 1);--t285:hsla(0, 0%, 23%, 1);--t286:hsla(0, 0%, 28%, 1);--t287:hsla(0, 0%, 38%, 1);--t288:hsla(0, 0%, 43%, 1);--t289:hsla(0, 0%, 48%, 1);--t290:hsla(0, 0%, 71%, 1);--t291:hsla(0, 0%, 93%, 0);--t292:hsla(0, 0%, 93%, 0.2);--t293:hsla(0, 0%, 93%, 0.4);--t294:hsla(0, 0%, 93%, 0.6);--t295:hsla(0, 0%, 93%, 0.8);--t296:hsla(0, 0%, 93%, 0.1);--t297:hsla(0, 0%, 93%, 0.075);--t298:hsla(0, 0%, 93%, 0.05);--t299:hsla(0, 0%, 93%, 0.025);--t300:hsla(0, 0%, 93%, 0.02);--t301:hsla(0, 0%, 93%, 0.01);--t302:hsla(0, 0%, 10%, 0.1);--t303:hsla(0, 0%, 10%, 0.075);--t304:hsla(0, 0%, 10%, 0.05);--t305:hsla(0, 0%, 10%, 0.025);--t306:hsla(0, 0%, 10%, 0.02);--t307:hsla(0, 0%, 10%, 0.01);--t308:hsla(0, 0%, 23%, 0.6);--t309:hsla(0, 0%, 7%, 0.2);--t310:hsla(0, 0%, 7%, 0.4);--t311:hsla(0, 0%, 7%, 0.6);--t312:hsla(0, 0%, 7%, 0.8);--t313:hsla(154, 20%, 7%, 0);--t314:hsla(153, 20%, 9%, 0.2);--t315:hsla(153, 20%, 9%, 0.4);--t316:hsla(153, 20%, 9%, 0.6);--t317:hsla(153, 20%, 9%, 0.8);--t318:hsla(154, 20%, 7%, 1);--t319:hsla(153, 20%, 9%, 1);--t320:hsla(152, 41%, 13%, 1);--t321:hsla(154, 55%, 15%, 1);--t322:hsla(154, 52%, 19%, 1);--t323:hsla(153, 46%, 23%, 1);--t324:hsla(152, 44%, 28%, 1);--t325:hsla(151, 45%, 34%, 1);--t326:hsla(151, 55%, 42%, 1);--t327:hsla(151, 55%, 45%, 1);--t328:hsla(151, 65%, 54%, 1);--t329:hsla(144, 70%, 82%, 1);--t330:hsla(144, 70%, 82%, 0);--t331:hsla(144, 70%, 82%, 0.2);--t332:hsla(144, 70%, 82%, 0.4);--t333:hsla(144, 70%, 82%, 0.6);--t334:hsla(144, 70%, 82%, 0.8);--t335:hsla(144, 70%, 82%, 0.1);--t336:hsla(144, 70%, 82%, 0.075);--t337:hsla(144, 70%, 82%, 0.05);--t338:hsla(144, 70%, 82%, 0.025);--t339:hsla(144, 70%, 82%, 0.02);--t340:hsla(144, 70%, 82%, 0.01);--t341:hsla(153, 20%, 9%, 0.1);--t342:hsla(153, 20%, 9%, 0.075);--t343:hsla(153, 20%, 9%, 0.05);--t344:hsla(153, 20%, 9%, 0.025);--t345:hsla(153, 20%, 9%, 0.02);--t346:hsla(153, 20%, 9%, 0.01);--t347:hsla(153, 46%, 23%, 0.6);--t348:hsla(154, 20%, 7%, 0.2);--t349:hsla(154, 20%, 7%, 0.4);--t350:hsla(154, 20%, 7%, 0.6);--t351:hsla(154, 20%, 7%, 0.8);--t352:hsla(0, 0%, 68%, 0);--t353:hsla(0, 0%, 65%, 0.2);--t354:hsla(0, 0%, 65%, 0.4);--t355:hsla(0, 0%, 65%, 0.6);--t356:hsla(0, 0%, 65%, 0.8);--t357:hsla(0, 0%, 68%, 1);--t358:hsla(0, 0%, 65%, 1);--t359:hsla(0, 0%, 62%, 1);--t360:hsla(0, 0%, 56%, 1);--t361:hsla(0, 0%, 53%, 1);--t362:hsla(0, 0%, 50%, 1);--t363:hsla(0, 0%, 44%, 1);--t364:hsla(0, 0%, 41%, 1);--t365:hsla(0, 0%, 32%, 1);--t366:hsla(0, 0%, 32%, 0);--t367:hsla(0, 0%, 32%, 0.2);--t368:hsla(0, 0%, 32%, 0.4);--t369:hsla(0, 0%, 32%, 0.6);--t370:hsla(0, 0%, 32%, 0.8);--t371:hsla(0, 0%, 32%, 0.1);--t372:hsla(0, 0%, 32%, 0.075);--t373:hsla(0, 0%, 32%, 0.05);--t374:hsla(0, 0%, 32%, 0.025);--t375:hsla(0, 0%, 32%, 0.02);--t376:hsla(0, 0%, 32%, 0.01);--t377:hsla(0, 0%, 65%, 0.1);--t378:hsla(0, 0%, 65%, 0.075);--t379:hsla(0, 0%, 65%, 0.05);--t380:hsla(0, 0%, 65%, 0.025);--t381:hsla(0, 0%, 65%, 0.02);--t382:hsla(0, 0%, 65%, 0.01);--t383:hsla(0, 0%, 53%, 0.6);--t384:hsla(0, 0%, 68%, 0.2);--t385:hsla(0, 0%, 68%, 0.4);--t386:hsla(0, 0%, 68%, 0.6);--t387:hsla(0, 0%, 68%, 0.8);--t388:hsla(23, 22%, 7%, 0);--t389:hsla(28, 33%, 9%, 0.2);--t390:hsla(28, 33%, 9%, 0.4);--t391:hsla(28, 33%, 9%, 0.6);--t392:hsla(28, 33%, 9%, 0.8);--t393:hsla(27, 24%, 7%, 1);--t394:hsla(28, 33%, 9%, 1);--t395:hsla(29, 65%, 12%, 1);--t396:hsla(28, 100%, 14%, 1);--t397:hsla(28, 100%, 17%, 1);--t398:hsla(27, 79%, 22%, 1);--t399:hsla(25, 63%, 30%, 1);--t400:hsla(23, 60%, 40%, 1);--t401:hsla(23, 93%, 53%, 1);--t402:hsla(26, 100%, 56%, 1);--t403:hsla(26, 100%, 67%, 1);--t404:hsla(30, 100%, 88%, 1);--t405:hsla(30, 100%, 88%, 0);--t406:hsla(30, 100%, 88%, 0.2);--t407:hsla(30, 100%, 88%, 0.4);--t408:hsla(30, 100%, 88%, 0.6);--t409:hsla(30, 100%, 88%, 0.8);--t410:hsla(30, 100%, 88%, 0.1);--t411:hsla(30, 100%, 88%, 0.075);--t412:hsla(30, 100%, 88%, 0.05);--t413:hsla(30, 100%, 88%, 0.025);--t414:hsla(30, 100%, 88%, 0.02);--t415:hsla(30, 100%, 88%, 0.01);--t416:hsla(28, 33%, 9%, 0.1);--t417:hsla(28, 33%, 9%, 0.075);--t418:hsla(28, 33%, 9%, 0.05);--t419:hsla(28, 33%, 9%, 0.025);--t420:hsla(28, 33%, 9%, 0.02);--t421:hsla(28, 33%, 9%, 0.01);--t422:hsla(27, 79%, 22%, 0.6);--t423:hsla(23, 22%, 7%, 0.2);--t424:hsla(23, 22%, 7%, 0.4);--t425:hsla(23, 22%, 7%, 0.6);--t426:hsla(23, 22%, 7%, 0.8);--t427:hsla(317, 17%, 8%, 0);--t428:hsla(316, 29%, 10%, 0.2);--t429:hsla(316, 29%, 10%, 0.4);--t430:hsla(316, 29%, 10%, 0.6);--t431:hsla(316, 29%, 10%, 0.8);--t432:hsla(315, 19%, 8%, 1);--t433:hsla(316, 29%, 10%, 1);--t434:hsla(315, 41%, 15%, 1);--t435:hsla(315, 58%, 19%, 1);--t436:hsla(318, 52%, 23%, 1);--t437:hsla(319, 44%, 29%, 1);--t438:hsla(321, 40%, 37%, 1);--t439:hsla(322, 40%, 47%, 1);--t440:hsla(322, 65%, 55%, 1);--t441:hsla(323, 68%, 59%, 1);--t442:hsla(327, 100%, 78%, 1);--t443:hsla(326, 92%, 91%, 1);--t444:hsla(326, 91%, 91%, 0);--t445:hsla(326, 91%, 91%, 0.2);--t446:hsla(326, 91%, 91%, 0.4);--t447:hsla(326, 91%, 91%, 0.6);--t448:hsla(326, 91%, 91%, 0.8);--t449:hsla(326, 91%, 91%, 0.1);--t450:hsla(326, 91%, 91%, 0.075);--t451:hsla(326, 91%, 91%, 0.05);--t452:hsla(326, 91%, 91%, 0.025);--t453:hsla(326, 91%, 91%, 0.02);--t454:hsla(326, 91%, 91%, 0.01);--t455:hsla(316, 29%, 10%, 0.1);--t456:hsla(316, 29%, 10%, 0.075);--t457:hsla(316, 29%, 10%, 0.05);--t458:hsla(316, 29%, 10%, 0.025);--t459:hsla(316, 29%, 10%, 0.02);--t460:hsla(316, 29%, 10%, 0.01);--t461:hsla(319, 44%, 29%, 0.6);--t462:hsla(317, 17%, 8%, 0.2);--t463:hsla(317, 17%, 8%, 0.4);--t464:hsla(317, 17%, 8%, 0.6);--t465:hsla(317, 17%, 8%, 0.8);--t466:hsla(282, 22%, 9%, 0);--t467:hsla(279, 25%, 11%, 0.2);--t468:hsla(279, 25%, 11%, 0.4);--t469:hsla(279, 25%, 11%, 0.6);--t470:hsla(279, 25%, 11%, 0.8);--t471:hsla(282, 23%, 9%, 1);--t472:hsla(279, 25%, 11%, 1);--t473:hsla(279, 36%, 17%, 1);--t474:hsla(277, 39%, 22%, 1);--t475:hsla(276, 38%, 26%, 1);--t476:hsla(275, 35%, 31%, 1);--t477:hsla(274, 33%, 38%, 1);--t478:hsla(273, 33%, 50%, 1);--t479:hsla(272, 51%, 54%, 1);--t480:hsla(272, 55%, 59%, 1);--t481:hsla(272, 100%, 81%, 1);--t482:hsla(275, 77%, 92%, 1);--t483:hsla(275, 76%, 92%, 0);--t484:hsla(275, 76%, 92%, 0.2);--t485:hsla(275, 76%, 92%, 0.4);--t486:hsla(275, 76%, 92%, 0.6);--t487:hsla(275, 76%, 92%, 0.8);--t488:hsla(275, 76%, 92%, 0.1);--t489:hsla(275, 76%, 92%, 0.075);--t490:hsla(275, 76%, 92%, 0.05);--t491:hsla(275, 76%, 92%, 0.025);--t492:hsla(275, 76%, 92%, 0.02);--t493:hsla(275, 76%, 92%, 0.01);--t494:hsla(279, 25%, 11%, 0.1);--t495:hsla(279, 25%, 11%, 0.075);--t496:hsla(279, 25%, 11%, 0.05);--t497:hsla(279, 25%, 11%, 0.025);--t498:hsla(279, 25%, 11%, 0.02);--t499:hsla(279, 25%, 11%, 0.01);--t500:hsla(275, 35%, 31%, 0.6);--t501:hsla(282, 22%, 9%, 0.2);--t502:hsla(282, 22%, 9%, 0.4);--t503:hsla(282, 22%, 9%, 0.6);--t504:hsla(282, 22%, 9%, 0.8);--t505:hsla(0, 17%, 8%, 0);--t506:hsla(355, 25%, 10%, 0.2);--t507:hsla(355, 25%, 10%, 0.4);--t508:hsla(355, 25%, 10%, 0.6);--t509:hsla(355, 25%, 10%, 0.8);--t510:hsla(0, 19%, 8%, 1);--t511:hsla(355, 25%, 10%, 1);--t512:hsla(350, 53%, 15%, 1);--t513:hsla(348, 68%, 19%, 1);--t514:hsla(350, 63%, 23%, 1);--t515:hsla(352, 53%, 29%, 1);--t516:hsla(355, 47%, 37%, 1);--t517:hsla(358, 45%, 49%, 1);--t518:hsla(358, 75%, 59%, 1);--t519:hsla(360, 79%, 65%, 1);--t520:hsla(2, 100%, 79%, 1);--t521:hsla(350, 100%, 91%, 1);--t522:hsla(350, 100%, 91%, 0);--t523:hsla(350, 100%, 91%, 0.2);--t524:hsla(350, 100%, 91%, 0.4);--t525:hsla(350, 100%, 91%, 0.6);--t526:hsla(350, 100%, 91%, 0.8);--t527:hsla(350, 100%, 91%, 0.1);--t528:hsla(350, 100%, 91%, 0.075);--t529:hsla(350, 100%, 91%, 0.05);--t530:hsla(350, 100%, 91%, 0.025);--t531:hsla(350, 100%, 91%, 0.02);--t532:hsla(350, 100%, 91%, 0.01);--t533:hsla(355, 25%, 10%, 0.1);--t534:hsla(355, 25%, 10%, 0.075);--t535:hsla(355, 25%, 10%, 0.05);--t536:hsla(355, 25%, 10%, 0.025);--t537:hsla(355, 25%, 10%, 0.02);--t538:hsla(355, 25%, 10%, 0.01);--t539:hsla(352, 53%, 29%, 0.6);--t540:hsla(0, 17%, 8%, 0.2);--t541:hsla(0, 17%, 8%, 0.4);--t542:hsla(0, 17%, 8%, 0.6);--t543:hsla(0, 17%, 8%, 0.8);--t544:hsla(173, 22%, 7%, 0);--t545:hsla(175, 24%, 9%, 0.2);--t546:hsla(175, 24%, 9%, 0.4);--t547:hsla(175, 24%, 9%, 0.6);--t548:hsla(175, 24%, 9%, 0.8);--t549:hsla(173, 24%, 7%, 1);--t550:hsla(175, 24%, 9%, 1);--t551:hsla(174, 55%, 11%, 1);--t552:hsla(176, 93%, 12%, 1);--t553:hsla(175, 80%, 16%, 1);--t554:hsla(174, 63%, 21%, 1);--t555:hsla(174, 58%, 26%, 1);--t556:hsla(173, 59%, 31%, 1);--t557:hsla(173, 80%, 36%, 1);--t558:hsla(172, 85%, 38%, 1);--t559:hsla(170, 90%, 45%, 1);--t560:hsla(163, 69%, 81%, 1);--t561:hsla(163, 69%, 81%, 0);--t562:hsla(163, 69%, 81%, 0.2);--t563:hsla(163, 69%, 81%, 0.4);--t564:hsla(163, 69%, 81%, 0.6);--t565:hsla(163, 69%, 81%, 0.8);--t566:hsla(163, 69%, 81%, 0.1);--t567:hsla(163, 69%, 81%, 0.075);--t568:hsla(163, 69%, 81%, 0.05);--t569:hsla(163, 69%, 81%, 0.025);--t570:hsla(163, 69%, 81%, 0.02);--t571:hsla(163, 69%, 81%, 0.01);--t572:hsla(175, 24%, 9%, 0.1);--t573:hsla(175, 24%, 9%, 0.075);--t574:hsla(175, 24%, 9%, 0.05);--t575:hsla(175, 24%, 9%, 0.025);--t576:hsla(175, 24%, 9%, 0.02);--t577:hsla(175, 24%, 9%, 0.01);--t578:hsla(174, 63%, 21%, 0.6);--t579:hsla(173, 22%, 7%, 0.2);--t580:hsla(173, 22%, 7%, 0.4);--t581:hsla(173, 22%, 7%, 0.6);--t582:hsla(173, 22%, 7%, 0.8);--t583:hsla(47, 29%, 6%, 0);--t584:hsla(45, 29%, 8%, 0.2);--t585:hsla(45, 29%, 8%, 0.4);--t586:hsla(45, 29%, 8%, 0.6);--t587:hsla(45, 29%, 8%, 0.8);--t588:hsla(47, 29%, 6%, 1);--t589:hsla(45, 29%, 8%, 1);--t590:hsla(45, 80%, 10%, 1);--t591:hsla(48, 100%, 11%, 1);--t592:hsla(47, 100%, 13%, 1);--t593:hsla(48, 95%, 16%, 1);--t594:hsla(46, 63%, 25%, 1);--t595:hsla(45, 60%, 32%, 1);--t596:hsla(53, 100%, 58%, 1);--t597:hsla(60, 100%, 67%, 1);--t598:hsla(53, 90%, 62%, 1);--t599:hsla(53, 79%, 84%, 1);--t600:hsla(53, 78%, 84%, 0);--t601:hsla(53, 78%, 84%, 0.2);--t602:hsla(53, 78%, 84%, 0.4);--t603:hsla(53, 78%, 84%, 0.6);--t604:hsla(53, 78%, 84%, 0.8);--t605:hsla(53, 78%, 84%, 0.1);--t606:hsla(53, 78%, 84%, 0.075);--t607:hsla(53, 78%, 84%, 0.05);--t608:hsla(53, 78%, 84%, 0.025);--t609:hsla(53, 78%, 84%, 0.02);--t610:hsla(53, 78%, 84%, 0.01);--t611:hsla(45, 29%, 8%, 0.1);--t612:hsla(45, 29%, 8%, 0.075);--t613:hsla(45, 29%, 8%, 0.05);--t614:hsla(45, 29%, 8%, 0.025);--t615:hsla(45, 29%, 8%, 0.02);--t616:hsla(45, 29%, 8%, 0.01);--t617:hsla(48, 95%, 16%, 0.6);--t618:hsla(47, 29%, 6%, 0.2);--t619:hsla(47, 29%, 6%, 0.4);--t620:hsla(47, 29%, 6%, 0.6);--t621:hsla(47, 29%, 6%, 0.8);--t622:var(--border, rgb(0 0 0 / .10));--t623:var(--foreground, #0a0a0a);--t624:rgba(0,0,0,0.04);--t625:rgba(0,0,0,0.08);--t626:rgba(0,0,0,0.12);--t627:rgba(0,0,0,0.22);--t628:rgba(0,0,0,0.44);--t629:rgba(0,0,0,0.75);--t630:rgba(255,255,255,0.05);--t631:rgba(255,255,255,0.15);--t632:rgba(255,255,255,0.55);--t633:rgba(255,255,255,0.7);--t634:#fcfcfc;--t635:#f9f9f9;--t636:#f0f0f0;--t637:#e8e8e8;--t638:#e0e0e0;--t639:#d9d9d9;--t640:#cecece;--t641:#bbbbbb;--t642:#8d8d8d;--t643:#838383;--t644:#646464;--t645:#202020;--t646:#fbfdff;--t647:#f4faff;--t648:#e6f4fe;--t649:#d5efff;--t650:#c2e5ff;--t651:#acd8fc;--t652:#8ec8f6;--t653:#5eb1ef;--t654:#0588f0;--t655:#0d74ce;--t656:#113264;--t657:#fffcfc;--t658:#fff7f7;--t659:#feebec;--t660:#ffdbdc;--t661:#ffcdce;--t662:#fdbdbe;--t663:#f4a9aa;--t664:#eb8e90;--t665:#dc3e42;--t666:#ce2c31;--t667:#641723;--t668:#fdfdf9;--t669:#fefce9;--t670:#fffab8;--t671:#fff394;--t672:#ffe770;--t673:#f3d768;--t674:#e4c767;--t675:#d5ae39;--t676:#ffdc00;--t677:#9e6c00;--t678:#473b1f;--t679:#fbfefc;--t680:#f4fbf6;--t681:#e6f6eb;--t682:#d6f1df;--t683:#c4e8d1;--t684:#adddc0;--t685:#8eceaa;--t686:#5bb98b;--t687:#2b9a66;--t688:#218358;--t689:#193b2d;--t690:#fefcfb;--t691:#fff7ed;--t692:#ffefd6;--t693:#ffdfb5;--t694:#ffd19a;--t695:#ffc182;--t696:#f5ae73;--t697:#ec9455;--t698:#ef5f00;--t699:#cc4e00;--t700:#582d1d;--t701:#fffcfe;--t702:#fef7fb;--t703:#fee9f5;--t704:#fbdcef;--t705:#f6cee7;--t706:#efbfdd;--t707:#e7acd0;--t708:#dd93c2;--t709:#cf3897;--t710:#c2298a;--t711:#651249;--t712:#fefcfe;--t713:#fbf7fe;--t714:#f7edfe;--t715:#f2e2fc;--t716:#ead5f9;--t717:#e0c4f4;--t718:#d1afec;--t719:#be93e4;--t720:#8347b9;--t721:#8145b5;--t722:#402060;--t723:#fafefd;--t724:#f3fbf9;--t725:#e0f8f3;--t726:#ccf3ea;--t727:#b8eae0;--t728:#a1ded2;--t729:#83cdc1;--t730:#53b9ab;--t731:#0d9b8a;--t732:#008573;--t733:#0d3d38;--t734:hsla(216, 100%, 99%, 0);--t735:hsla(207, 100%, 98%, 0.2);--t736:hsla(207, 100%, 98%, 0.4);--t737:hsla(207, 100%, 98%, 0.6);--t738:hsla(207, 100%, 98%, 0.8);--t739:hsla(210, 100%, 99%, 1);--t740:hsla(207, 100%, 98%, 1);--t741:hsla(205, 92%, 95%, 1);--t742:hsla(203, 100%, 92%, 1);--t743:hsla(206, 100%, 88%, 1);--t744:hsla(207, 93%, 83%, 1);--t745:hsla(207, 85%, 76%, 1);--t746:hsla(206, 82%, 65%, 1);--t747:hsla(207, 96%, 48%, 1);--t748:hsla(208, 88%, 43%, 1);--t749:hsla(216, 71%, 23%, 1);--t750:hsla(216, 71%, 23%, 0);--t751:hsla(216, 71%, 23%, 0.2);--t752:hsla(216, 71%, 23%, 0.4);--t753:hsla(216, 71%, 23%, 0.6);--t754:hsla(216, 71%, 23%, 0.8);--t755:hsla(216, 71%, 23%, 0.1);--t756:hsla(216, 71%, 23%, 0.075);--t757:hsla(216, 71%, 23%, 0.05);--t758:hsla(216, 71%, 23%, 0.025);--t759:hsla(216, 71%, 23%, 0.02);--t760:hsla(216, 71%, 23%, 0.01);--t761:hsla(207, 100%, 98%, 0.1);--t762:hsla(207, 100%, 98%, 0.075);--t763:hsla(207, 100%, 98%, 0.05);--t764:hsla(207, 100%, 98%, 0.025);--t765:hsla(207, 100%, 98%, 0.02);--t766:hsla(207, 100%, 98%, 0.01);--t767:hsla(207, 93%, 83%, 0.6);--t768:hsla(216, 100%, 99%, 0.2);--t769:hsla(216, 100%, 99%, 0.4);--t770:hsla(216, 100%, 99%, 0.6);--t771:hsla(216, 100%, 99%, 0.8);--t772:hsla(0, 0%, 99%, 0);--t773:hsla(0, 0%, 98%, 0.2);--t774:hsla(0, 0%, 98%, 0.4);--t775:hsla(0, 0%, 98%, 0.6);--t776:hsla(0, 0%, 98%, 0.8);--t777:hsla(0, 0%, 99%, 1);--t778:hsla(0, 0%, 98%, 1);--t779:hsla(0, 0%, 94%, 1);--t780:hsla(0, 0%, 91%, 1);--t781:hsla(0, 0%, 88%, 1);--t782:hsla(0, 0%, 81%, 1);--t783:hsla(0, 0%, 73%, 1);--t784:hsla(0, 0%, 55%, 1);--t785:hsla(0, 0%, 51%, 1);--t786:hsla(0, 0%, 39%, 1);--t787:hsla(0, 0%, 13%, 0);--t788:hsla(0, 0%, 13%, 0.2);--t789:hsla(0, 0%, 13%, 0.4);--t790:hsla(0, 0%, 13%, 0.6);--t791:hsla(0, 0%, 13%, 0.8);--t792:hsla(0, 0%, 13%, 0.1);--t793:hsla(0, 0%, 13%, 0.075);--t794:hsla(0, 0%, 13%, 0.05);--t795:hsla(0, 0%, 13%, 0.025);--t796:hsla(0, 0%, 13%, 0.02);--t797:hsla(0, 0%, 13%, 0.01);--t798:hsla(0, 0%, 98%, 0.1);--t799:hsla(0, 0%, 98%, 0.075);--t800:hsla(0, 0%, 98%, 0.05);--t801:hsla(0, 0%, 98%, 0.025);--t802:hsla(0, 0%, 98%, 0.02);--t803:hsla(0, 0%, 98%, 0.01);--t804:hsla(0, 0%, 85%, 0.6);--t805:hsla(0, 0%, 99%, 0.2);--t806:hsla(0, 0%, 99%, 0.4);--t807:hsla(0, 0%, 99%, 0.6);--t808:hsla(0, 0%, 99%, 0.8);--t809:hsla(140, 60%, 99%, 0);--t810:hsla(137, 47%, 97%, 0.2);--t811:hsla(137, 47%, 97%, 0.4);--t812:hsla(137, 47%, 97%, 0.6);--t813:hsla(137, 47%, 97%, 0.8);--t814:hsla(140, 60%, 99%, 1);--t815:hsla(137, 47%, 97%, 1);--t816:hsla(139, 47%, 93%, 1);--t817:hsla(140, 49%, 89%, 1);--t818:hsla(142, 44%, 84%, 1);--t819:hsla(144, 41%, 77%, 1);--t820:hsla(146, 40%, 68%, 1);--t821:hsla(151, 40%, 54%, 1);--t822:hsla(152, 56%, 39%, 1);--t823:hsla(154, 60%, 32%, 1);--t824:hsla(155, 40%, 16%, 1);--t825:hsla(156, 41%, 16%, 0);--t826:hsla(156, 41%, 16%, 0.2);--t827:hsla(156, 41%, 16%, 0.4);--t828:hsla(156, 41%, 16%, 0.6);--t829:hsla(156, 41%, 16%, 0.8);--t830:hsla(156, 41%, 16%, 0.1);--t831:hsla(156, 41%, 16%, 0.075);--t832:hsla(156, 41%, 16%, 0.05);--t833:hsla(156, 41%, 16%, 0.025);--t834:hsla(156, 41%, 16%, 0.02);--t835:hsla(156, 41%, 16%, 0.01);--t836:hsla(137, 47%, 97%, 0.1);--t837:hsla(137, 47%, 97%, 0.075);--t838:hsla(137, 47%, 97%, 0.05);--t839:hsla(137, 47%, 97%, 0.025);--t840:hsla(137, 47%, 97%, 0.02);--t841:hsla(137, 47%, 97%, 0.01);--t842:hsla(144, 41%, 77%, 0.6);--t843:hsla(140, 60%, 99%, 0.2);--t844:hsla(140, 60%, 99%, 0.4);--t845:hsla(140, 60%, 99%, 0.6);--t846:hsla(140, 60%, 99%, 0.8);--t847:hsla(20, 60%, 99%, 0);--t848:hsla(33, 100%, 96%, 0.2);--t849:hsla(33, 100%, 96%, 0.4);--t850:hsla(33, 100%, 96%, 0.6);--t851:hsla(33, 100%, 96%, 0.8);--t852:hsla(20, 60%, 99%, 1);--t853:hsla(33, 100%, 96%, 1);--t854:hsla(37, 100%, 92%, 1);--t855:hsla(34, 100%, 85%, 1);--t856:hsla(33, 100%, 80%, 1);--t857:hsla(30, 100%, 75%, 1);--t858:hsla(27, 87%, 71%, 1);--t859:hsla(25, 80%, 63%, 1);--t860:hsla(24, 100%, 47%, 1);--t861:hsla(23, 100%, 40%, 1);--t862:hsla(16, 50%, 23%, 1);--t863:hsla(16, 50%, 23%, 0);--t864:hsla(16, 50%, 23%, 0.2);--t865:hsla(16, 50%, 23%, 0.4);--t866:hsla(16, 50%, 23%, 0.6);--t867:hsla(16, 50%, 23%, 0.8);--t868:hsla(16, 50%, 23%, 0.1);--t869:hsla(16, 50%, 23%, 0.075);--t870:hsla(16, 50%, 23%, 0.05);--t871:hsla(16, 50%, 23%, 0.025);--t872:hsla(16, 50%, 23%, 0.02);--t873:hsla(16, 50%, 23%, 0.01);--t874:hsla(33, 100%, 96%, 0.1);--t875:hsla(33, 100%, 96%, 0.075);--t876:hsla(33, 100%, 96%, 0.05);--t877:hsla(33, 100%, 96%, 0.025);--t878:hsla(33, 100%, 96%, 0.02);--t879:hsla(33, 100%, 96%, 0.01);--t880:hsla(30, 100%, 75%, 0.6);--t881:hsla(20, 60%, 99%, 0.2);--t882:hsla(20, 60%, 99%, 0.4);--t883:hsla(20, 60%, 99%, 0.6);--t884:hsla(20, 60%, 99%, 0.8);--t885:hsla(324, 100%, 99%, 0);--t886:hsla(326, 78%, 98%, 0.2);--t887:hsla(326, 78%, 98%, 0.4);--t888:hsla(326, 78%, 98%, 0.6);--t889:hsla(326, 78%, 98%, 0.8);--t890:hsla(320, 100%, 99%, 1);--t891:hsla(326, 78%, 98%, 1);--t892:hsla(326, 91%, 95%, 1);--t893:hsla(323, 79%, 92%, 1);--t894:hsla(323, 69%, 89%, 1);--t895:hsla(323, 60%, 84%, 1);--t896:hsla(323, 55%, 79%, 1);--t897:hsla(322, 52%, 72%, 1);--t898:hsla(322, 61%, 52%, 1);--t899:hsla(322, 65%, 46%, 1);--t900:hsla(320, 70%, 23%, 1);--t901:hsla(320, 69%, 23%, 0);--t902:hsla(320, 69%, 23%, 0.2);--t903:hsla(320, 69%, 23%, 0.4);--t904:hsla(320, 69%, 23%, 0.6);--t905:hsla(320, 69%, 23%, 0.8);--t906:hsla(320, 69%, 23%, 0.1);--t907:hsla(320, 69%, 23%, 0.075);--t908:hsla(320, 69%, 23%, 0.05);--t909:hsla(320, 69%, 23%, 0.025);--t910:hsla(320, 69%, 23%, 0.02);--t911:hsla(320, 69%, 23%, 0.01);--t912:hsla(326, 78%, 98%, 0.1);--t913:hsla(326, 78%, 98%, 0.075);--t914:hsla(326, 78%, 98%, 0.05);--t915:hsla(326, 78%, 98%, 0.025);--t916:hsla(326, 78%, 98%, 0.02);--t917:hsla(326, 78%, 98%, 0.01);--t918:hsla(323, 60%, 84%, 0.6);--t919:hsla(324, 100%, 99%, 0.2);--t920:hsla(324, 100%, 99%, 0.4);--t921:hsla(324, 100%, 99%, 0.6);--t922:hsla(324, 100%, 99%, 0.8);--t923:hsla(300, 60%, 99%, 0);--t924:hsla(274, 78%, 98%, 0.2);--t925:hsla(274, 78%, 98%, 0.4);--t926:hsla(274, 78%, 98%, 0.6);--t927:hsla(274, 78%, 98%, 0.8);--t928:hsla(300, 50%, 99%, 1);--t929:hsla(274, 78%, 98%, 1);--t930:hsla(275, 89%, 96%, 1);--t931:hsla(277, 81%, 94%, 1);--t932:hsla(275, 75%, 91%, 1);--t933:hsla(275, 69%, 86%, 1);--t934:hsla(273, 62%, 81%, 1);--t935:hsla(272, 60%, 74%, 1);--t936:hsla(272, 45%, 50%, 1);--t937:hsla(272, 45%, 49%, 1);--t938:hsla(270, 50%, 25%, 1);--t939:hsla(270, 50%, 25%, 0);--t940:hsla(270, 50%, 25%, 0.2);--t941:hsla(270, 50%, 25%, 0.4);--t942:hsla(270, 50%, 25%, 0.6);--t943:hsla(270, 50%, 25%, 0.8);--t944:hsla(270, 50%, 25%, 0.1);--t945:hsla(270, 50%, 25%, 0.075);--t946:hsla(270, 50%, 25%, 0.05);--t947:hsla(270, 50%, 25%, 0.025);--t948:hsla(270, 50%, 25%, 0.02);--t949:hsla(270, 50%, 25%, 0.01);--t950:hsla(274, 78%, 98%, 0.1);--t951:hsla(274, 78%, 98%, 0.075);--t952:hsla(274, 78%, 98%, 0.05);--t953:hsla(274, 78%, 98%, 0.025);--t954:hsla(274, 78%, 98%, 0.02);--t955:hsla(274, 78%, 98%, 0.01);--t956:hsla(275, 69%, 86%, 0.6);--t957:hsla(300, 60%, 99%, 0.2);--t958:hsla(300, 60%, 99%, 0.4);--t959:hsla(300, 60%, 99%, 0.6);--t960:hsla(300, 60%, 99%, 0.8);--t961:hsla(0, 100%, 99%, 0);--t962:hsla(0, 100%, 98%, 0.2);--t963:hsla(0, 100%, 98%, 0.4);--t964:hsla(0, 100%, 98%, 0.6);--t965:hsla(0, 100%, 98%, 0.8);--t966:hsla(0, 100%, 99%, 1);--t967:hsla(0, 100%, 98%, 1);--t968:hsla(357, 90%, 96%, 1);--t969:hsla(358, 100%, 93%, 1);--t970:hsla(359, 100%, 90%, 1);--t971:hsla(359, 94%, 87%, 1);--t972:hsla(359, 77%, 81%, 1);--t973:hsla(359, 70%, 74%, 1);--t974:hsla(358, 69%, 55%, 1);--t975:hsla(358, 65%, 49%, 1);--t976:hsla(351, 63%, 24%, 1);--t977:hsla(351, 63%, 24%, 0);--t978:hsla(351, 63%, 24%, 0.2);--t979:hsla(351, 63%, 24%, 0.4);--t980:hsla(351, 63%, 24%, 0.6);--t981:hsla(351, 63%, 24%, 0.8);--t982:hsla(351, 63%, 24%, 0.1);--t983:hsla(351, 63%, 24%, 0.075);--t984:hsla(351, 63%, 24%, 0.05);--t985:hsla(351, 63%, 24%, 0.025);--t986:hsla(351, 63%, 24%, 0.02);--t987:hsla(351, 63%, 24%, 0.01);--t988:hsla(0, 100%, 98%, 0.1);--t989:hsla(0, 100%, 98%, 0.075);--t990:hsla(0, 100%, 98%, 0.05);--t991:hsla(0, 100%, 98%, 0.025);--t992:hsla(0, 100%, 98%, 0.02);--t993:hsla(0, 100%, 98%, 0.01);--t994:hsla(359, 94%, 87%, 0.6);--t995:hsla(0, 100%, 99%, 0.2);--t996:hsla(0, 100%, 99%, 0.4);--t997:hsla(0, 100%, 99%, 0.6);--t998:hsla(0, 100%, 99%, 0.8);--t999:hsla(160, 60%, 99%, 0);--t1000:hsla(165, 50%, 97%, 0.2);--t1001:hsla(165, 50%, 97%, 0.4);--t1002:hsla(165, 50%, 97%, 0.6);--t1003:hsla(165, 50%, 97%, 0.8);--t1004:hsla(165, 67%, 99%, 1);--t1005:hsla(165, 50%, 97%, 1);--t1006:hsla(167, 63%, 93%, 1);--t1007:hsla(166, 62%, 88%, 1);--t1008:hsla(168, 54%, 82%, 1);--t1009:hsla(168, 48%, 75%, 1);--t1010:hsla(170, 43%, 66%, 1);--t1011:hsla(172, 42%, 53%, 1);--t1012:hsla(173, 85%, 33%, 1);--t1013:hsla(172, 100%, 26%, 1);--t1014:hsla(174, 65%, 15%, 1);--t1015:hsla(174, 66%, 15%, 0);--t1016:hsla(174, 66%, 15%, 0.2);--t1017:hsla(174, 66%, 15%, 0.4);--t1018:hsla(174, 66%, 15%, 0.6);--t1019:hsla(174, 66%, 15%, 0.8);--t1020:hsla(174, 66%, 15%, 0.1);--t1021:hsla(174, 66%, 15%, 0.075);--t1022:hsla(174, 66%, 15%, 0.05);--t1023:hsla(174, 66%, 15%, 0.025);--t1024:hsla(174, 66%, 15%, 0.02);--t1025:hsla(174, 66%, 15%, 0.01);--t1026:hsla(165, 50%, 97%, 0.1);--t1027:hsla(165, 50%, 97%, 0.075);--t1028:hsla(165, 50%, 97%, 0.05);--t1029:hsla(165, 50%, 97%, 0.025);--t1030:hsla(165, 50%, 97%, 0.02);--t1031:hsla(165, 50%, 97%, 0.01);--t1032:hsla(168, 48%, 75%, 0.6);--t1033:hsla(160, 60%, 99%, 0.2);--t1034:hsla(160, 60%, 99%, 0.4);--t1035:hsla(160, 60%, 99%, 0.6);--t1036:hsla(160, 60%, 99%, 0.8);--t1037:hsla(60, 45%, 98%, 0);--t1038:hsla(54, 91%, 95%, 0.2);--t1039:hsla(54, 91%, 95%, 0.4);--t1040:hsla(54, 91%, 95%, 0.6);--t1041:hsla(54, 91%, 95%, 0.8);--t1042:hsla(60, 50%, 98%, 1);--t1043:hsla(54, 91%, 95%, 1);--t1044:hsla(56, 100%, 86%, 1);--t1045:hsla(53, 100%, 79%, 1);--t1046:hsla(50, 100%, 72%, 1);--t1047:hsla(48, 85%, 68%, 1);--t1048:hsla(46, 70%, 65%, 1);--t1049:hsla(45, 65%, 53%, 1);--t1050:hsla(52, 100%, 50%, 1);--t1051:hsla(41, 100%, 31%, 1);--t1052:hsla(42, 39%, 20%, 1);--t1053:hsla(42, 39%, 20%, 0);--t1054:hsla(42, 39%, 20%, 0.2);--t1055:hsla(42, 39%, 20%, 0.4);--t1056:hsla(42, 39%, 20%, 0.6);--t1057:hsla(42, 39%, 20%, 0.8);--t1058:hsla(42, 39%, 20%, 0.1);--t1059:hsla(42, 39%, 20%, 0.075);--t1060:hsla(42, 39%, 20%, 0.05);--t1061:hsla(42, 39%, 20%, 0.025);--t1062:hsla(42, 39%, 20%, 0.02);--t1063:hsla(42, 39%, 20%, 0.01);--t1064:hsla(54, 91%, 95%, 0.1);--t1065:hsla(54, 91%, 95%, 0.075);--t1066:hsla(54, 91%, 95%, 0.05);--t1067:hsla(54, 91%, 95%, 0.025);--t1068:hsla(54, 91%, 95%, 0.02);--t1069:hsla(54, 91%, 95%, 0.01);--t1070:hsla(48, 85%, 68%, 0.6);--t1071:hsla(60, 45%, 98%, 0.2);--t1072:hsla(60, 45%, 98%, 0.4);--t1073:hsla(60, 45%, 98%, 0.6);--t1074:hsla(60, 45%, 98%, 0.8)}
|
|
1510
1522
|
:root { --c-radius-0:0px; --c-radius-1:6px; --c-radius-10:9999px; --c-radius-11:9999px; --c-radius-12:9999px; --c-radius-2:6px; --c-radius-3:8px; --c-radius-4:8px; --c-radius-5:12px; --c-radius-6:12px; --c-radius-7:12px; --c-radius-8:12px; --c-radius-9:12px; --c-radius-true:8px; --c-size-0:0px; --c-size-0--25:2px; --c-size-0--5:4px; --c-size-0--75:8px; --c-size-1:20px; --c-size-1--5:24px; --c-size-10:104px; --c-size-11:124px; --c-size-12:144px; --c-size-13:164px; --c-size-14:184px; --c-size-15:204px; --c-size-16:224px; --c-size-17:224px; --c-size-18:244px; --c-size-19:264px; --c-size-2:28px; --c-size-2--5:32px; --c-size-20:284px; --c-size-3:36px; --c-size-3--5:40px; --c-size-4:44px; --c-size-4--5:48px; --c-size-5:52px; --c-size-6:64px; --c-size-7:74px; --c-size-8:84px; --c-size-9:94px; --c-size-true:44px; --c-space--0:0px; --c-space--0--25:-1px; --c-space--0--5:-2px; --c-space--0--75:-3px; --c-space--1:-4px; --c-space--1--5:-6px; --c-space--10:-64px; --c-space--11:-80px; --c-space--12:-96px; --c-space--13:-112px; --c-space--14:-128px; --c-space--15:-144px; --c-space--16:-160px; --c-space--17:-160px; --c-space--18:-176px; --c-space--19:-192px; --c-space--2:-8px; --c-space--2--5:-10px; --c-space--20:-208px; --c-space--3:-12px; --c-space--3--5:-14px; --c-space--4:-16px; --c-space--4--5:-20px; --c-space--5:-24px; --c-space--6:-32px; --c-space--7:-40px; --c-space--8:-48px; --c-space--9:-56px; --c-space--true:-16px; --c-space-0:0px; --c-space-0--25:1px; --c-space-0--5:2px; --c-space-0--75:3px; --c-space-1:4px; --c-space-1--5:6px; --c-space-10:64px; --c-space-11:80px; --c-space-12:96px; --c-space-13:112px; --c-space-14:128px; --c-space-15:144px; --c-space-16:160px; --c-space-17:160px; --c-space-18:176px; --c-space-19:192px; --c-space-2:8px; --c-space-2--5:10px; --c-space-20:208px; --c-space-3:12px; --c-space-3--5:14px; --c-space-4:16px; --c-space-4--5:20px; --c-space-5:24px; --c-space-6:32px; --c-space-7:40px; --c-space-8:48px; --c-space-9:56px; --c-space-true:16px; --c-zIndex-0:0; --c-zIndex-1:100; --c-zIndex-2:200; --c-zIndex-3:300; --c-zIndex-4:400; --c-zIndex-5:500
|
|
1511
1523
|
}
|
|
1512
1524
|
:root .font_body, :root .t_lang-body-default .font_body { --f-family:'Geist', system-ui, -apple-system, sans-serif; --f-lineHeight-1:16px; --f-lineHeight-2:18px; --f-lineHeight-3:20px; --f-lineHeight-4:22px; --f-lineHeight-5:22px; --f-lineHeight-6:24px; --f-lineHeight-7:28px; --f-lineHeight-8:32px; --f-lineHeight-9:32px; --f-lineHeight-10:38px; --f-lineHeight-11:46px; --f-lineHeight-12:54px; --f-lineHeight-13:62px; --f-lineHeight-14:70px; --f-lineHeight-15:86px; --f-lineHeight-16:102px; --f-lineHeight-true:20px; --f-weight-1:400; --f-weight-2:400; --f-weight-3:400; --f-weight-4:400; --f-weight-5:400; --f-weight-6:400; --f-weight-7:400; --f-weight-8:400; --f-weight-9:400; --f-weight-10:400; --f-weight-11:400; --f-weight-12:400; --f-weight-13:400; --f-weight-14:400; --f-weight-15:400; --f-weight-16:400; --f-weight-true:400; --f-letterSpacing-1:0px; --f-letterSpacing-2:0px; --f-letterSpacing-3:0px; --f-letterSpacing-4:0px; --f-letterSpacing-5:0px; --f-letterSpacing-6:0px; --f-letterSpacing-7:0px; --f-letterSpacing-8:0px; --f-letterSpacing-9:0px; --f-letterSpacing-10:0px; --f-letterSpacing-11:0px; --f-letterSpacing-12:0px; --f-letterSpacing-13:0px; --f-letterSpacing-14:0px; --f-letterSpacing-15:0px; --f-letterSpacing-16:0px; --f-letterSpacing-true:0px; --f-size-1:11px; --f-size-2:13px; --f-size-3:14px; --f-size-4:15px; --f-size-5:15px; --f-size-6:17px; --f-size-7:21px; --f-size-8:26px; --f-size-9:26px; --f-size-10:32px; --f-size-11:40px; --f-size-12:48px; --f-size-13:56px; --f-size-14:64px; --f-size-15:80px; --f-size-16:96px; --f-size-true:14px
|
|
@@ -1516,554 +1528,554 @@
|
|
|
1516
1528
|
:root .font_mono, :root .t_lang-mono-default .font_mono { --f-family:'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; --f-lineHeight-1:16px; --f-lineHeight-2:18px; --f-lineHeight-3:20px; --f-lineHeight-4:22px; --f-lineHeight-5:22px; --f-lineHeight-6:24px; --f-lineHeight-7:28px; --f-lineHeight-8:32px; --f-lineHeight-9:32px; --f-lineHeight-10:38px; --f-lineHeight-11:46px; --f-lineHeight-12:54px; --f-lineHeight-13:62px; --f-lineHeight-14:70px; --f-lineHeight-15:86px; --f-lineHeight-16:102px; --f-lineHeight-true:20px; --f-weight-1:400; --f-weight-2:400; --f-weight-3:400; --f-weight-4:400; --f-weight-5:400; --f-weight-6:400; --f-weight-7:400; --f-weight-8:400; --f-weight-9:400; --f-weight-10:400; --f-weight-11:400; --f-weight-12:400; --f-weight-13:400; --f-weight-14:400; --f-weight-15:400; --f-weight-16:400; --f-weight-true:400; --f-letterSpacing-1:0px; --f-letterSpacing-2:0px; --f-letterSpacing-3:0px; --f-letterSpacing-4:0px; --f-letterSpacing-5:0px; --f-letterSpacing-6:0px; --f-letterSpacing-7:0px; --f-letterSpacing-8:0px; --f-letterSpacing-9:0px; --f-letterSpacing-10:0px; --f-letterSpacing-11:0px; --f-letterSpacing-12:0px; --f-letterSpacing-13:0px; --f-letterSpacing-14:0px; --f-letterSpacing-15:0px; --f-letterSpacing-16:0px; --f-letterSpacing-true:0px; --f-size-1:11px; --f-size-2:13px; --f-size-3:14px; --f-size-4:15px; --f-size-5:15px; --f-size-6:17px; --f-size-7:21px; --f-size-8:26px; --f-size-9:26px; --f-size-10:32px; --f-size-11:40px; --f-size-12:48px; --f-size-13:56px; --f-size-14:64px; --f-size-15:80px; --f-size-16:96px; --f-size-true:14px
|
|
1517
1529
|
}
|
|
1518
1530
|
.font_body, .font_heading, .font_mono, .is_View {font-family: var(--f-family); letter-spacing: var(--f-letterSpacing-true); line-height: var(--f-lineHeight-true); font-weight: var(--f-weight-true)}
|
|
1519
|
-
:root.t_dark, :root.t_dark , :root.t_light .t_dark , .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--t10);--color5:var(--t0);--color6:var(--t11);--color7:var(--t12);--color8:var(--t13);--color9:var(--t14);--color10:var(--t15);--color11:var(--t16);--color12:var(--t17);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--
|
|
1531
|
+
:root.t_dark, :root.t_dark , :root.t_light .t_dark , .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--t10);--color5:var(--t0);--color6:var(--t11);--color7:var(--t12);--color8:var(--t13);--color9:var(--t14);--color10:var(--t15);--color11:var(--t16);--color12:var(--t17);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t23);--colorHover:var(--t22);--colorPress:var(--t23);--colorFocus:var(--t16);--backgroundHover:var(--t9);--backgroundPress:var(--t7);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t10);--borderColorHover:var(--t0);--borderColorFocus:var(--t24);--borderColorPress:var(--t9);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--black1:var(--t25);--black2:var(--t26);--black3:var(--t27);--black4:var(--t28);--black5:var(--t29);--black6:var(--t30);--black7:var(--t31);--black8:var(--t32);--black9:var(--t33);--black10:var(--t34);--black11:var(--t35);--black12:var(--t36);--white1:var(--t37);--white2:var(--t38);--white3:var(--t39);--white4:var(--t40);--white5:var(--t41);--white6:var(--t42);--white7:var(--t43);--white8:var(--t44);--white9:var(--t45);--white10:var(--t46);--white11:var(--t47);--white12:var(--t48);--white0:var(--t50);--white02:var(--t51);--white04:var(--t52);--white06:var(--t53);--white08:var(--t54);--black0:var(--t56);--black02:var(--t57);--black04:var(--t58);--black06:var(--t59);--black08:var(--t60);--shadow1:var(--t61);--shadow2:var(--t62);--shadow3:var(--t63);--shadow4:var(--t64);--shadow5:var(--t65);--shadow6:var(--t60);--shadow7:var(--t66);--shadow8:var(--t55);--highlight1:var(--t67);--highlight2:var(--t51);--highlight3:var(--t68);--highlight4:var(--t69);--highlight5:var(--t70);--highlight6:var(--t71);--highlight7:var(--t72);--highlight8:var(--t49);--shadowColor:var(--t63);--gray1:var(--t73);--gray2:var(--t27);--gray3:var(--t74);--gray4:var(--t75);--gray5:var(--t76);--gray6:var(--t77);--gray7:var(--t78);--gray8:var(--t79);--gray9:var(--t80);--gray10:var(--t81);--gray11:var(--t82);--gray12:var(--t83);--blue1:var(--t84);--blue2:var(--t85);--blue3:var(--t86);--blue4:var(--t87);--blue5:var(--t88);--blue6:var(--t89);--blue7:var(--t90);--blue8:var(--t91);--blue9:var(--t92);--blue10:var(--t93);--blue11:var(--t94);--blue12:var(--t95);--red1:var(--t96);--red2:var(--t97);--red3:var(--t98);--red4:var(--t99);--red5:var(--t100);--red6:var(--t101);--red7:var(--t102);--red8:var(--t103);--red9:var(--t104);--red10:var(--t105);--red11:var(--t106);--red12:var(--t107);--yellow1:var(--t108);--yellow2:var(--t109);--yellow3:var(--t110);--yellow4:var(--t111);--yellow5:var(--t112);--yellow6:var(--t113);--yellow7:var(--t114);--yellow8:var(--t115);--yellow9:var(--t116);--yellow10:var(--t117);--yellow11:var(--t118);--yellow12:var(--t119);--green1:var(--t120);--green2:var(--t121);--green3:var(--t122);--green4:var(--t123);--green5:var(--t124);--green6:var(--t125);--green7:var(--t126);--green8:var(--t127);--green9:var(--t128);--green10:var(--t129);--green11:var(--t130);--green12:var(--t131);--orange1:var(--t132);--orange2:var(--t133);--orange3:var(--t134);--orange4:var(--t135);--orange5:var(--t136);--orange6:var(--t137);--orange7:var(--t138);--orange8:var(--t139);--orange9:var(--t140);--orange10:var(--t141);--orange11:var(--t142);--orange12:var(--t143);--pink1:var(--t144);--pink2:var(--t145);--pink3:var(--t146);--pink4:var(--t147);--pink5:var(--t148);--pink6:var(--t149);--pink7:var(--t150);--pink8:var(--t151);--pink9:var(--t152);--pink10:var(--t153);--pink11:var(--t154);--pink12:var(--t155);--purple1:var(--t156);--purple2:var(--t157);--purple3:var(--t158);--purple4:var(--t159);--purple5:var(--t160);--purple6:var(--t161);--purple7:var(--t162);--purple8:var(--t163);--purple9:var(--t164);--purple10:var(--t165);--purple11:var(--t166);--purple12:var(--t167);--teal1:var(--t168);--teal2:var(--t169);--teal3:var(--t170);--teal4:var(--t171);--teal5:var(--t172);--teal6:var(--t173);--teal7:var(--t174);--teal8:var(--t175);--teal9:var(--t176);--teal10:var(--t177);--teal11:var(--t178);--teal12:var(--t179);--neutral1:var(--t180);--neutral2:var(--t181);--neutral3:var(--t182);--neutral4:var(--t43);--neutral5:var(--t183);--neutral6:var(--t184);--neutral7:var(--t185);--neutral8:var(--t186);--neutral9:var(--t187);--neutral10:var(--t188);--neutral11:var(--t189);--neutral12:var(--t190);--accent1:var(--t23);--accent2:var(--t191);--accent3:var(--t1);--accent4:var(--t192);--accent5:var(--t16);--accent6:var(--t193);--accent7:var(--t194);--accent8:var(--t195);--accent9:var(--t196);--accent10:var(--t0);--accent11:var(--t24);--accent12:var(--t197);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--outlineColor:var(--t210);}
|
|
1520
1532
|
@media(prefers-color-scheme:dark){
|
|
1521
1533
|
body{background:var(--background);color:var(--color)}
|
|
1522
|
-
:root {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--t10);--color5:var(--t0);--color6:var(--t11);--color7:var(--t12);--color8:var(--t13);--color9:var(--t14);--color10:var(--t15);--color11:var(--t16);--color12:var(--t17);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--
|
|
1534
|
+
:root {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--t10);--color5:var(--t0);--color6:var(--t11);--color7:var(--t12);--color8:var(--t13);--color9:var(--t14);--color10:var(--t15);--color11:var(--t16);--color12:var(--t17);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t23);--colorHover:var(--t22);--colorPress:var(--t23);--colorFocus:var(--t16);--backgroundHover:var(--t9);--backgroundPress:var(--t7);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t10);--borderColorHover:var(--t0);--borderColorFocus:var(--t24);--borderColorPress:var(--t9);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--black1:var(--t25);--black2:var(--t26);--black3:var(--t27);--black4:var(--t28);--black5:var(--t29);--black6:var(--t30);--black7:var(--t31);--black8:var(--t32);--black9:var(--t33);--black10:var(--t34);--black11:var(--t35);--black12:var(--t36);--white1:var(--t37);--white2:var(--t38);--white3:var(--t39);--white4:var(--t40);--white5:var(--t41);--white6:var(--t42);--white7:var(--t43);--white8:var(--t44);--white9:var(--t45);--white10:var(--t46);--white11:var(--t47);--white12:var(--t48);--white0:var(--t50);--white02:var(--t51);--white04:var(--t52);--white06:var(--t53);--white08:var(--t54);--black0:var(--t56);--black02:var(--t57);--black04:var(--t58);--black06:var(--t59);--black08:var(--t60);--shadow1:var(--t61);--shadow2:var(--t62);--shadow3:var(--t63);--shadow4:var(--t64);--shadow5:var(--t65);--shadow6:var(--t60);--shadow7:var(--t66);--shadow8:var(--t55);--highlight1:var(--t67);--highlight2:var(--t51);--highlight3:var(--t68);--highlight4:var(--t69);--highlight5:var(--t70);--highlight6:var(--t71);--highlight7:var(--t72);--highlight8:var(--t49);--shadowColor:var(--t63);--gray1:var(--t73);--gray2:var(--t27);--gray3:var(--t74);--gray4:var(--t75);--gray5:var(--t76);--gray6:var(--t77);--gray7:var(--t78);--gray8:var(--t79);--gray9:var(--t80);--gray10:var(--t81);--gray11:var(--t82);--gray12:var(--t83);--blue1:var(--t84);--blue2:var(--t85);--blue3:var(--t86);--blue4:var(--t87);--blue5:var(--t88);--blue6:var(--t89);--blue7:var(--t90);--blue8:var(--t91);--blue9:var(--t92);--blue10:var(--t93);--blue11:var(--t94);--blue12:var(--t95);--red1:var(--t96);--red2:var(--t97);--red3:var(--t98);--red4:var(--t99);--red5:var(--t100);--red6:var(--t101);--red7:var(--t102);--red8:var(--t103);--red9:var(--t104);--red10:var(--t105);--red11:var(--t106);--red12:var(--t107);--yellow1:var(--t108);--yellow2:var(--t109);--yellow3:var(--t110);--yellow4:var(--t111);--yellow5:var(--t112);--yellow6:var(--t113);--yellow7:var(--t114);--yellow8:var(--t115);--yellow9:var(--t116);--yellow10:var(--t117);--yellow11:var(--t118);--yellow12:var(--t119);--green1:var(--t120);--green2:var(--t121);--green3:var(--t122);--green4:var(--t123);--green5:var(--t124);--green6:var(--t125);--green7:var(--t126);--green8:var(--t127);--green9:var(--t128);--green10:var(--t129);--green11:var(--t130);--green12:var(--t131);--orange1:var(--t132);--orange2:var(--t133);--orange3:var(--t134);--orange4:var(--t135);--orange5:var(--t136);--orange6:var(--t137);--orange7:var(--t138);--orange8:var(--t139);--orange9:var(--t140);--orange10:var(--t141);--orange11:var(--t142);--orange12:var(--t143);--pink1:var(--t144);--pink2:var(--t145);--pink3:var(--t146);--pink4:var(--t147);--pink5:var(--t148);--pink6:var(--t149);--pink7:var(--t150);--pink8:var(--t151);--pink9:var(--t152);--pink10:var(--t153);--pink11:var(--t154);--pink12:var(--t155);--purple1:var(--t156);--purple2:var(--t157);--purple3:var(--t158);--purple4:var(--t159);--purple5:var(--t160);--purple6:var(--t161);--purple7:var(--t162);--purple8:var(--t163);--purple9:var(--t164);--purple10:var(--t165);--purple11:var(--t166);--purple12:var(--t167);--teal1:var(--t168);--teal2:var(--t169);--teal3:var(--t170);--teal4:var(--t171);--teal5:var(--t172);--teal6:var(--t173);--teal7:var(--t174);--teal8:var(--t175);--teal9:var(--t176);--teal10:var(--t177);--teal11:var(--t178);--teal12:var(--t179);--neutral1:var(--t180);--neutral2:var(--t181);--neutral3:var(--t182);--neutral4:var(--t43);--neutral5:var(--t183);--neutral6:var(--t184);--neutral7:var(--t185);--neutral8:var(--t186);--neutral9:var(--t187);--neutral10:var(--t188);--neutral11:var(--t189);--neutral12:var(--t190);--accent1:var(--t23);--accent2:var(--t191);--accent3:var(--t1);--accent4:var(--t192);--accent5:var(--t16);--accent6:var(--t193);--accent7:var(--t194);--accent8:var(--t195);--accent9:var(--t196);--accent10:var(--t0);--accent11:var(--t24);--accent12:var(--t197);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--outlineColor:var(--t210);}
|
|
1523
1535
|
}
|
|
1524
1536
|
.t_dark ::selection{background:var(--color5);color:var(--color11)}
|
|
1525
|
-
:root.t_dark .t_Button, :root.t_dark .t_SliderThumb, :root.t_dark .t_Switch, :root.t_dark .t_black_Button, :root.t_dark .t_black_SliderThumb, :root.t_dark .t_black_Switch, :root.t_dark .t_black_surface2, :root.t_dark .t_surface2, :root.t_light .t_dark .t_Button, :root.t_light .t_dark .t_SliderThumb, :root.t_light .t_dark .t_Switch, :root.t_light .t_dark .t_black_Button, :root.t_light .t_dark .t_black_SliderThumb, :root.t_light .t_dark .t_black_Switch, :root.t_light .t_dark .t_black_surface2, :root.t_light .t_dark .t_surface2, .tm_xxt {--color:var(--t16);--colorHover:var(--
|
|
1537
|
+
:root.t_dark .t_Button, :root.t_dark .t_SliderThumb, :root.t_dark .t_Switch, :root.t_dark .t_black_Button, :root.t_dark .t_black_SliderThumb, :root.t_dark .t_black_Switch, :root.t_dark .t_black_surface2, :root.t_dark .t_surface2, :root.t_light .t_dark .t_Button, :root.t_light .t_dark .t_SliderThumb, :root.t_light .t_dark .t_Switch, :root.t_light .t_dark .t_black_Button, :root.t_light .t_dark .t_black_SliderThumb, :root.t_light .t_dark .t_black_Switch, :root.t_light .t_dark .t_black_surface2, :root.t_light .t_dark .t_surface2, .tm_xxt {--color:var(--t16);--colorHover:var(--t23);--colorPress:var(--t16);--colorFocus:var(--t15);--background:var(--t24);--backgroundHover:var(--t0);--backgroundPress:var(--t9);--backgroundFocus:var(--t12);--backgroundActive:var(--t24);--borderColor:var(--t11);--borderColorHover:var(--t12);--borderColorFocus:var(--t11);--borderColorPress:var(--t0);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t210);}
|
|
1526
1538
|
@media(prefers-color-scheme:dark){
|
|
1527
|
-
.t_Button, .t_SliderThumb, .t_Switch, .t_black_Button, .t_black_SliderThumb, .t_black_Switch, .t_black_surface2, .t_surface2 {--color:var(--t16);--colorHover:var(--
|
|
1539
|
+
.t_Button, .t_SliderThumb, .t_Switch, .t_black_Button, .t_black_SliderThumb, .t_black_Switch, .t_black_surface2, .t_surface2 {--color:var(--t16);--colorHover:var(--t23);--colorPress:var(--t16);--colorFocus:var(--t15);--background:var(--t24);--backgroundHover:var(--t0);--backgroundPress:var(--t9);--backgroundFocus:var(--t12);--backgroundActive:var(--t24);--borderColor:var(--t11);--borderColorHover:var(--t12);--borderColorFocus:var(--t11);--borderColorPress:var(--t0);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t210);}
|
|
1528
1540
|
}
|
|
1529
|
-
:root.t_dark .t_Input, :root.t_dark .t_Progress, :root.t_dark .t_Slider, :root.t_dark .t_TextArea, :root.t_dark .t_black_Input, :root.t_dark .t_black_Progress, :root.t_dark .t_black_Slider, :root.t_dark .t_black_TextArea, :root.t_dark .t_black_surface1, :root.t_dark .t_surface1, :root.t_light .t_dark .t_Input, :root.t_light .t_dark .t_Progress, :root.t_light .t_dark .t_Slider, :root.t_light .t_dark .t_TextArea, :root.t_light .t_dark .t_black_Input, :root.t_light .t_dark .t_black_Progress, :root.t_light .t_dark .t_black_Slider, :root.t_light .t_dark .t_black_TextArea, :root.t_light .t_dark .t_black_surface1, :root.t_light .t_dark .t_surface1, .tm_xxt {--color:var(--t16);--colorHover:var(--
|
|
1541
|
+
:root.t_dark .t_Input, :root.t_dark .t_Progress, :root.t_dark .t_Slider, :root.t_dark .t_TextArea, :root.t_dark .t_black_Input, :root.t_dark .t_black_Progress, :root.t_dark .t_black_Slider, :root.t_dark .t_black_TextArea, :root.t_dark .t_black_surface1, :root.t_dark .t_surface1, :root.t_light .t_dark .t_Input, :root.t_light .t_dark .t_Progress, :root.t_light .t_dark .t_Slider, :root.t_light .t_dark .t_TextArea, :root.t_light .t_dark .t_black_Input, :root.t_light .t_dark .t_black_Progress, :root.t_light .t_dark .t_black_Slider, :root.t_light .t_dark .t_black_TextArea, :root.t_light .t_dark .t_black_surface1, :root.t_light .t_dark .t_surface1, .tm_xxt {--color:var(--t16);--colorHover:var(--t23);--colorPress:var(--t16);--colorFocus:var(--t15);--background:var(--t9);--backgroundHover:var(--t24);--backgroundPress:var(--t8);--backgroundFocus:var(--t0);--backgroundActive:var(--t9);--borderColor:var(--t0);--borderColorHover:var(--t11);--borderColorFocus:var(--t0);--borderColorPress:var(--t24);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t210);}
|
|
1530
1542
|
@media(prefers-color-scheme:dark){
|
|
1531
|
-
.t_Input, .t_Progress, .t_Slider, .t_TextArea, .t_black_Input, .t_black_Progress, .t_black_Slider, .t_black_TextArea, .t_black_surface1, .t_surface1 {--color:var(--t16);--colorHover:var(--
|
|
1543
|
+
.t_Input, .t_Progress, .t_Slider, .t_TextArea, .t_black_Input, .t_black_Progress, .t_black_Slider, .t_black_TextArea, .t_black_surface1, .t_surface1 {--color:var(--t16);--colorHover:var(--t23);--colorPress:var(--t16);--colorFocus:var(--t15);--background:var(--t9);--backgroundHover:var(--t24);--backgroundPress:var(--t8);--backgroundFocus:var(--t0);--backgroundActive:var(--t9);--borderColor:var(--t0);--borderColorHover:var(--t11);--borderColorFocus:var(--t0);--borderColorPress:var(--t24);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t210);}
|
|
1532
1544
|
}
|
|
1533
|
-
:root.t_dark .t_ProgressIndicator, :root.t_dark .t_SliderActive, :root.t_dark .t_black_ProgressIndicator, :root.t_dark .t_black_SliderActive, :root.t_light .t_dark .t_ProgressIndicator, :root.t_light .t_dark .t_SliderActive, :root.t_light .t_dark .t_black_ProgressIndicator, :root.t_light .t_dark .t_black_SliderActive, .tm_xxt {--color:var(--t16);--colorHover:var(--
|
|
1545
|
+
:root.t_dark .t_ProgressIndicator, :root.t_dark .t_SliderActive, :root.t_dark .t_black_ProgressIndicator, :root.t_dark .t_black_SliderActive, :root.t_light .t_dark .t_ProgressIndicator, :root.t_light .t_dark .t_SliderActive, :root.t_light .t_dark .t_black_ProgressIndicator, :root.t_light .t_dark .t_black_SliderActive, .tm_xxt {--color:var(--t16);--colorHover:var(--t23);--colorPress:var(--t16);--colorFocus:var(--t15);--background:var(--t11);--backgroundHover:var(--t12);--backgroundPress:var(--t0);--backgroundFocus:var(--t16);--backgroundActive:var(--t11);--borderColor:var(--t13);--borderColorHover:var(--t14);--borderColorFocus:var(--t13);--borderColorPress:var(--t12);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t210);}
|
|
1534
1546
|
@media(prefers-color-scheme:dark){
|
|
1535
|
-
.t_ProgressIndicator, .t_SliderActive, .t_black_ProgressIndicator, .t_black_SliderActive {--color:var(--t16);--colorHover:var(--
|
|
1547
|
+
.t_ProgressIndicator, .t_SliderActive, .t_black_ProgressIndicator, .t_black_SliderActive {--color:var(--t16);--colorHover:var(--t23);--colorPress:var(--t16);--colorFocus:var(--t15);--background:var(--t11);--backgroundHover:var(--t12);--backgroundPress:var(--t0);--backgroundFocus:var(--t16);--backgroundActive:var(--t11);--borderColor:var(--t13);--borderColorHover:var(--t14);--borderColorFocus:var(--t13);--borderColorPress:var(--t12);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t210);}
|
|
1536
1548
|
}
|
|
1537
|
-
:root.t_dark .t_SwitchThumb, :root.t_dark .t_Tooltip, :root.t_dark .t_black_SwitchThumb, :root.t_dark .t_black_Tooltip, :root.t_dark .t_black_accent, :root.t_light .t_dark .t_SwitchThumb, :root.t_light .t_dark .t_Tooltip, :root.t_light .t_dark .t_black_SwitchThumb, :root.t_light .t_dark .t_black_Tooltip, :root.t_light .t_dark .t_black_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t18);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--
|
|
1549
|
+
:root.t_dark .t_SwitchThumb, :root.t_dark .t_Tooltip, :root.t_dark .t_black_SwitchThumb, :root.t_dark .t_black_Tooltip, :root.t_dark .t_black_accent, :root.t_light .t_dark .t_SwitchThumb, :root.t_light .t_dark .t_Tooltip, :root.t_light .t_dark .t_black_SwitchThumb, :root.t_light .t_dark .t_black_Tooltip, :root.t_light .t_dark .t_black_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t18);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t23);--color2:var(--t16);--color3:var(--t15);--color4:var(--t14);--color5:var(--t13);--color6:var(--t12);--color7:var(--t11);--color8:var(--t0);--color9:var(--t24);--color10:var(--t9);--color11:var(--t8);--color12:var(--t7);--color0:var(--t2);--color02:var(--t211);--color04:var(--t212);--color06:var(--t213);--color08:var(--t214);--color:var(--t7);--colorHover:var(--t214);--colorPress:var(--t7);--colorFocus:var(--t8);--background:var(--t16);--backgroundHover:var(--t15);--backgroundPress:var(--t23);--backgroundFocus:var(--t15);--backgroundActive:var(--t16);--borderColor:var(--t14);--borderColorHover:var(--t13);--borderColorFocus:var(--t14);--borderColorPress:var(--t15);--placeholderColor:var(--t24);--colorTransparent:var(--t2);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--outlineColor:var(--t210);}
|
|
1538
1550
|
@media(prefers-color-scheme:dark){
|
|
1539
|
-
.t_SwitchThumb, .t_Tooltip, .t_black_SwitchThumb, .t_black_Tooltip, .t_black_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t18);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--
|
|
1551
|
+
.t_SwitchThumb, .t_Tooltip, .t_black_SwitchThumb, .t_black_Tooltip, .t_black_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t18);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t23);--color2:var(--t16);--color3:var(--t15);--color4:var(--t14);--color5:var(--t13);--color6:var(--t12);--color7:var(--t11);--color8:var(--t0);--color9:var(--t24);--color10:var(--t9);--color11:var(--t8);--color12:var(--t7);--color0:var(--t2);--color02:var(--t211);--color04:var(--t212);--color06:var(--t213);--color08:var(--t214);--color:var(--t7);--colorHover:var(--t214);--colorPress:var(--t7);--colorFocus:var(--t8);--background:var(--t16);--backgroundHover:var(--t15);--backgroundPress:var(--t23);--backgroundFocus:var(--t15);--backgroundActive:var(--t16);--borderColor:var(--t14);--borderColorHover:var(--t13);--borderColorFocus:var(--t14);--borderColorPress:var(--t15);--placeholderColor:var(--t24);--colorTransparent:var(--t2);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--outlineColor:var(--t210);}
|
|
1540
1552
|
}
|
|
1541
1553
|
.t_dark_SwitchThumb ::selection, .t_dark_Tooltip ::selection, .t_dark_black_SwitchThumb ::selection, .t_dark_black_Tooltip ::selection, .t_dark_black_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1542
|
-
:root.t_dark .t_accent, :root.t_light .t_dark .t_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t18);--background02:var(--
|
|
1554
|
+
:root.t_dark .t_accent, :root.t_light .t_dark .t_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t18);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--color1:var(--t23);--color2:var(--t191);--color3:var(--t1);--color4:var(--t192);--color5:var(--t16);--color6:var(--t193);--color7:var(--t194);--color8:var(--t195);--color9:var(--t196);--color10:var(--t0);--color11:var(--t24);--color12:var(--t197);--color0:var(--t219);--color02:var(--t220);--color04:var(--t221);--color06:var(--t222);--color08:var(--t223);--color:var(--t197);--colorHover:var(--t223);--colorPress:var(--t197);--colorFocus:var(--t24);--background:var(--t191);--backgroundHover:var(--t1);--backgroundPress:var(--t23);--backgroundFocus:var(--t1);--backgroundActive:var(--t191);--borderColor:var(--t192);--borderColorHover:var(--t16);--borderColorFocus:var(--t192);--borderColorPress:var(--t1);--placeholderColor:var(--t196);--colorTransparent:var(--t219);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--outlineColor:var(--t236);}
|
|
1543
1555
|
@media(prefers-color-scheme:dark){
|
|
1544
|
-
.t_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t18);--background02:var(--
|
|
1556
|
+
.t_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t18);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--color1:var(--t23);--color2:var(--t191);--color3:var(--t1);--color4:var(--t192);--color5:var(--t16);--color6:var(--t193);--color7:var(--t194);--color8:var(--t195);--color9:var(--t196);--color10:var(--t0);--color11:var(--t24);--color12:var(--t197);--color0:var(--t219);--color02:var(--t220);--color04:var(--t221);--color06:var(--t222);--color08:var(--t223);--color:var(--t197);--colorHover:var(--t223);--colorPress:var(--t197);--colorFocus:var(--t24);--background:var(--t191);--backgroundHover:var(--t1);--backgroundPress:var(--t23);--backgroundFocus:var(--t1);--backgroundActive:var(--t191);--borderColor:var(--t192);--borderColorHover:var(--t16);--borderColorFocus:var(--t192);--borderColorPress:var(--t1);--placeholderColor:var(--t196);--colorTransparent:var(--t219);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--outlineColor:var(--t236);}
|
|
1545
1557
|
}
|
|
1546
1558
|
.t_dark_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1547
|
-
:root.t_dark .t_black, :root.t_light .t_dark .t_black, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--
|
|
1559
|
+
:root.t_dark .t_black, :root.t_light .t_dark .t_black, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--t24);--color5:var(--t0);--color6:var(--t11);--color7:var(--t12);--color8:var(--t13);--color9:var(--t14);--color10:var(--t15);--color11:var(--t16);--color12:var(--t23);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t23);--colorHover:var(--t22);--colorPress:var(--t23);--colorFocus:var(--t16);--background:var(--t8);--backgroundHover:var(--t9);--backgroundPress:var(--t7);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t24);--borderColorHover:var(--t0);--borderColorFocus:var(--t24);--borderColorPress:var(--t9);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--outlineColor:var(--t210);}
|
|
1548
1560
|
@media(prefers-color-scheme:dark){
|
|
1549
|
-
.t_black {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--
|
|
1561
|
+
.t_black {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--t24);--color5:var(--t0);--color6:var(--t11);--color7:var(--t12);--color8:var(--t13);--color9:var(--t14);--color10:var(--t15);--color11:var(--t16);--color12:var(--t23);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t23);--colorHover:var(--t22);--colorPress:var(--t23);--colorFocus:var(--t16);--background:var(--t8);--backgroundHover:var(--t9);--backgroundPress:var(--t7);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t24);--borderColorHover:var(--t0);--borderColorFocus:var(--t24);--borderColorPress:var(--t9);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--outlineColor:var(--t210);}
|
|
1550
1562
|
}
|
|
1551
1563
|
.t_dark_black ::selection{background:var(--color5);color:var(--color11)}
|
|
1552
|
-
:root.t_dark .t_blue, :root.t_light .t_dark .t_blue, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1564
|
+
:root.t_dark .t_blue, :root.t_light .t_dark .t_blue, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t237);--background02:var(--t238);--background04:var(--t239);--background06:var(--t240);--background08:var(--t241);--color1:var(--t242);--color2:var(--t243);--color3:var(--t244);--color4:var(--t245);--color5:var(--t246);--color6:var(--t247);--color7:var(--t248);--color8:var(--t249);--color9:var(--t250);--color10:var(--t251);--color11:var(--t252);--color12:var(--t253);--color0:var(--t254);--color02:var(--t255);--color04:var(--t256);--color06:var(--t257);--color08:var(--t258);--color:var(--t253);--colorHover:var(--t258);--colorPress:var(--t253);--colorFocus:var(--t252);--background:var(--t243);--backgroundHover:var(--t244);--backgroundPress:var(--t242);--backgroundFocus:var(--t244);--backgroundActive:var(--t243);--borderColor:var(--t245);--borderColorHover:var(--t246);--borderColorFocus:var(--t245);--borderColorPress:var(--t244);--placeholderColor:var(--t250);--colorTransparent:var(--t254);--color01:var(--t259);--color0075:var(--t260);--color005:var(--t261);--color0025:var(--t262);--color002:var(--t263);--color001:var(--t264);--background01:var(--t265);--background0075:var(--t266);--background005:var(--t267);--background0025:var(--t268);--background002:var(--t269);--background001:var(--t270);--outlineColor:var(--t271);}
|
|
1553
1565
|
@media(prefers-color-scheme:dark){
|
|
1554
|
-
.t_blue {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1566
|
+
.t_blue {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t237);--background02:var(--t238);--background04:var(--t239);--background06:var(--t240);--background08:var(--t241);--color1:var(--t242);--color2:var(--t243);--color3:var(--t244);--color4:var(--t245);--color5:var(--t246);--color6:var(--t247);--color7:var(--t248);--color8:var(--t249);--color9:var(--t250);--color10:var(--t251);--color11:var(--t252);--color12:var(--t253);--color0:var(--t254);--color02:var(--t255);--color04:var(--t256);--color06:var(--t257);--color08:var(--t258);--color:var(--t253);--colorHover:var(--t258);--colorPress:var(--t253);--colorFocus:var(--t252);--background:var(--t243);--backgroundHover:var(--t244);--backgroundPress:var(--t242);--backgroundFocus:var(--t244);--backgroundActive:var(--t243);--borderColor:var(--t245);--borderColorHover:var(--t246);--borderColorFocus:var(--t245);--borderColorPress:var(--t244);--placeholderColor:var(--t250);--colorTransparent:var(--t254);--color01:var(--t259);--color0075:var(--t260);--color005:var(--t261);--color0025:var(--t262);--color002:var(--t263);--color001:var(--t264);--background01:var(--t265);--background0075:var(--t266);--background005:var(--t267);--background0025:var(--t268);--background002:var(--t269);--background001:var(--t270);--outlineColor:var(--t271);}
|
|
1555
1567
|
}
|
|
1556
1568
|
.t_dark_blue ::selection{background:var(--color5);color:var(--color11)}
|
|
1557
|
-
:root.t_dark .t_blue_Button, :root.t_dark .t_blue_SliderThumb, :root.t_dark .t_blue_Switch, :root.t_dark .t_blue_surface2, :root.t_light .t_dark .t_blue_Button, :root.t_light .t_dark .t_blue_SliderThumb, :root.t_light .t_dark .t_blue_Switch, :root.t_light .t_dark .t_blue_surface2, .tm_xxt {--color:var(--
|
|
1569
|
+
:root.t_dark .t_blue_Button, :root.t_dark .t_blue_SliderThumb, :root.t_dark .t_blue_Switch, :root.t_dark .t_blue_surface2, :root.t_light .t_dark .t_blue_Button, :root.t_light .t_dark .t_blue_SliderThumb, :root.t_light .t_dark .t_blue_Switch, :root.t_light .t_dark .t_blue_surface2, .tm_xxt {--color:var(--t252);--colorHover:var(--t253);--colorPress:var(--t252);--colorFocus:var(--t251);--background:var(--t245);--backgroundHover:var(--t246);--backgroundPress:var(--t244);--backgroundFocus:var(--t248);--backgroundActive:var(--t245);--borderColor:var(--t247);--borderColorHover:var(--t248);--borderColorFocus:var(--t247);--borderColorPress:var(--t246);--color01:var(--t259);--color0075:var(--t260);--color005:var(--t261);--color0025:var(--t262);--color002:var(--t263);--color001:var(--t264);--background01:var(--t265);--background0075:var(--t266);--background005:var(--t267);--background0025:var(--t268);--background002:var(--t269);--background001:var(--t270);--background02:var(--t238);--background04:var(--t239);--background06:var(--t240);--background08:var(--t241);--outlineColor:var(--t271);}
|
|
1558
1570
|
@media(prefers-color-scheme:dark){
|
|
1559
|
-
.t_blue_Button, .t_blue_SliderThumb, .t_blue_Switch, .t_blue_surface2 {--color:var(--
|
|
1571
|
+
.t_blue_Button, .t_blue_SliderThumb, .t_blue_Switch, .t_blue_surface2 {--color:var(--t252);--colorHover:var(--t253);--colorPress:var(--t252);--colorFocus:var(--t251);--background:var(--t245);--backgroundHover:var(--t246);--backgroundPress:var(--t244);--backgroundFocus:var(--t248);--backgroundActive:var(--t245);--borderColor:var(--t247);--borderColorHover:var(--t248);--borderColorFocus:var(--t247);--borderColorPress:var(--t246);--color01:var(--t259);--color0075:var(--t260);--color005:var(--t261);--color0025:var(--t262);--color002:var(--t263);--color001:var(--t264);--background01:var(--t265);--background0075:var(--t266);--background005:var(--t267);--background0025:var(--t268);--background002:var(--t269);--background001:var(--t270);--background02:var(--t238);--background04:var(--t239);--background06:var(--t240);--background08:var(--t241);--outlineColor:var(--t271);}
|
|
1560
1572
|
}
|
|
1561
|
-
:root.t_dark .t_blue_Input, :root.t_dark .t_blue_Progress, :root.t_dark .t_blue_Slider, :root.t_dark .t_blue_TextArea, :root.t_dark .t_blue_surface1, :root.t_light .t_dark .t_blue_Input, :root.t_light .t_dark .t_blue_Progress, :root.t_light .t_dark .t_blue_Slider, :root.t_light .t_dark .t_blue_TextArea, :root.t_light .t_dark .t_blue_surface1, .tm_xxt {--color:var(--
|
|
1573
|
+
:root.t_dark .t_blue_Input, :root.t_dark .t_blue_Progress, :root.t_dark .t_blue_Slider, :root.t_dark .t_blue_TextArea, :root.t_dark .t_blue_surface1, :root.t_light .t_dark .t_blue_Input, :root.t_light .t_dark .t_blue_Progress, :root.t_light .t_dark .t_blue_Slider, :root.t_light .t_dark .t_blue_TextArea, :root.t_light .t_dark .t_blue_surface1, .tm_xxt {--color:var(--t252);--colorHover:var(--t253);--colorPress:var(--t252);--colorFocus:var(--t251);--background:var(--t244);--backgroundHover:var(--t245);--backgroundPress:var(--t243);--backgroundFocus:var(--t246);--backgroundActive:var(--t244);--borderColor:var(--t246);--borderColorHover:var(--t247);--borderColorFocus:var(--t246);--borderColorPress:var(--t245);--color01:var(--t259);--color0075:var(--t260);--color005:var(--t261);--color0025:var(--t262);--color002:var(--t263);--color001:var(--t264);--background01:var(--t265);--background0075:var(--t266);--background005:var(--t267);--background0025:var(--t268);--background002:var(--t269);--background001:var(--t270);--background02:var(--t238);--background04:var(--t239);--background06:var(--t240);--background08:var(--t241);--outlineColor:var(--t271);}
|
|
1562
1574
|
@media(prefers-color-scheme:dark){
|
|
1563
|
-
.t_blue_Input, .t_blue_Progress, .t_blue_Slider, .t_blue_TextArea, .t_blue_surface1 {--color:var(--
|
|
1575
|
+
.t_blue_Input, .t_blue_Progress, .t_blue_Slider, .t_blue_TextArea, .t_blue_surface1 {--color:var(--t252);--colorHover:var(--t253);--colorPress:var(--t252);--colorFocus:var(--t251);--background:var(--t244);--backgroundHover:var(--t245);--backgroundPress:var(--t243);--backgroundFocus:var(--t246);--backgroundActive:var(--t244);--borderColor:var(--t246);--borderColorHover:var(--t247);--borderColorFocus:var(--t246);--borderColorPress:var(--t245);--color01:var(--t259);--color0075:var(--t260);--color005:var(--t261);--color0025:var(--t262);--color002:var(--t263);--color001:var(--t264);--background01:var(--t265);--background0075:var(--t266);--background005:var(--t267);--background0025:var(--t268);--background002:var(--t269);--background001:var(--t270);--background02:var(--t238);--background04:var(--t239);--background06:var(--t240);--background08:var(--t241);--outlineColor:var(--t271);}
|
|
1564
1576
|
}
|
|
1565
|
-
:root.t_dark .t_blue_ProgressIndicator, :root.t_dark .t_blue_SliderActive, :root.t_light .t_dark .t_blue_ProgressIndicator, :root.t_light .t_dark .t_blue_SliderActive, .tm_xxt {--color:var(--
|
|
1577
|
+
:root.t_dark .t_blue_ProgressIndicator, :root.t_dark .t_blue_SliderActive, :root.t_light .t_dark .t_blue_ProgressIndicator, :root.t_light .t_dark .t_blue_SliderActive, .tm_xxt {--color:var(--t252);--colorHover:var(--t253);--colorPress:var(--t252);--colorFocus:var(--t251);--background:var(--t247);--backgroundHover:var(--t248);--backgroundPress:var(--t246);--backgroundFocus:var(--t252);--backgroundActive:var(--t247);--borderColor:var(--t249);--borderColorHover:var(--t250);--borderColorFocus:var(--t249);--borderColorPress:var(--t248);--color01:var(--t259);--color0075:var(--t260);--color005:var(--t261);--color0025:var(--t262);--color002:var(--t263);--color001:var(--t264);--background01:var(--t265);--background0075:var(--t266);--background005:var(--t267);--background0025:var(--t268);--background002:var(--t269);--background001:var(--t270);--background02:var(--t238);--background04:var(--t239);--background06:var(--t240);--background08:var(--t241);--outlineColor:var(--t271);}
|
|
1566
1578
|
@media(prefers-color-scheme:dark){
|
|
1567
|
-
.t_blue_ProgressIndicator, .t_blue_SliderActive {--color:var(--
|
|
1579
|
+
.t_blue_ProgressIndicator, .t_blue_SliderActive {--color:var(--t252);--colorHover:var(--t253);--colorPress:var(--t252);--colorFocus:var(--t251);--background:var(--t247);--backgroundHover:var(--t248);--backgroundPress:var(--t246);--backgroundFocus:var(--t252);--backgroundActive:var(--t247);--borderColor:var(--t249);--borderColorHover:var(--t250);--borderColorFocus:var(--t249);--borderColorPress:var(--t248);--color01:var(--t259);--color0075:var(--t260);--color005:var(--t261);--color0025:var(--t262);--color002:var(--t263);--color001:var(--t264);--background01:var(--t265);--background0075:var(--t266);--background005:var(--t267);--background0025:var(--t268);--background002:var(--t269);--background001:var(--t270);--background02:var(--t238);--background04:var(--t239);--background06:var(--t240);--background08:var(--t241);--outlineColor:var(--t271);}
|
|
1568
1580
|
}
|
|
1569
|
-
:root.t_dark .t_blue_SwitchThumb, :root.t_dark .t_blue_Tooltip, :root.t_dark .t_blue_accent, :root.t_light .t_dark .t_blue_SwitchThumb, :root.t_light .t_dark .t_blue_Tooltip, :root.t_light .t_dark .t_blue_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1581
|
+
:root.t_dark .t_blue_SwitchThumb, :root.t_dark .t_blue_Tooltip, :root.t_dark .t_blue_accent, :root.t_light .t_dark .t_blue_SwitchThumb, :root.t_light .t_dark .t_blue_Tooltip, :root.t_light .t_dark .t_blue_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t254);--background02:var(--t238);--background04:var(--t239);--background06:var(--t240);--background08:var(--t241);--color1:var(--t253);--color2:var(--t252);--color3:var(--t251);--color4:var(--t250);--color5:var(--t249);--color6:var(--t248);--color7:var(--t247);--color8:var(--t246);--color9:var(--t245);--color10:var(--t244);--color11:var(--t243);--color12:var(--t242);--color0:var(--t237);--color02:var(--t272);--color04:var(--t273);--color06:var(--t274);--color08:var(--t275);--color:var(--t242);--colorHover:var(--t275);--colorPress:var(--t242);--colorFocus:var(--t243);--background:var(--t252);--backgroundHover:var(--t251);--backgroundPress:var(--t253);--backgroundFocus:var(--t251);--backgroundActive:var(--t252);--borderColor:var(--t250);--borderColorHover:var(--t249);--borderColorFocus:var(--t250);--borderColorPress:var(--t251);--placeholderColor:var(--t245);--colorTransparent:var(--t237);--color01:var(--t259);--color0075:var(--t260);--color005:var(--t261);--color0025:var(--t262);--color002:var(--t263);--color001:var(--t264);--background01:var(--t265);--background0075:var(--t266);--background005:var(--t267);--background0025:var(--t268);--background002:var(--t269);--background001:var(--t270);--outlineColor:var(--t271);}
|
|
1570
1582
|
@media(prefers-color-scheme:dark){
|
|
1571
|
-
.t_blue_SwitchThumb, .t_blue_Tooltip, .t_blue_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1583
|
+
.t_blue_SwitchThumb, .t_blue_Tooltip, .t_blue_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t254);--background02:var(--t238);--background04:var(--t239);--background06:var(--t240);--background08:var(--t241);--color1:var(--t253);--color2:var(--t252);--color3:var(--t251);--color4:var(--t250);--color5:var(--t249);--color6:var(--t248);--color7:var(--t247);--color8:var(--t246);--color9:var(--t245);--color10:var(--t244);--color11:var(--t243);--color12:var(--t242);--color0:var(--t237);--color02:var(--t272);--color04:var(--t273);--color06:var(--t274);--color08:var(--t275);--color:var(--t242);--colorHover:var(--t275);--colorPress:var(--t242);--colorFocus:var(--t243);--background:var(--t252);--backgroundHover:var(--t251);--backgroundPress:var(--t253);--backgroundFocus:var(--t251);--backgroundActive:var(--t252);--borderColor:var(--t250);--borderColorHover:var(--t249);--borderColorFocus:var(--t250);--borderColorPress:var(--t251);--placeholderColor:var(--t245);--colorTransparent:var(--t237);--color01:var(--t259);--color0075:var(--t260);--color005:var(--t261);--color0025:var(--t262);--color002:var(--t263);--color001:var(--t264);--background01:var(--t265);--background0075:var(--t266);--background005:var(--t267);--background0025:var(--t268);--background002:var(--t269);--background001:var(--t270);--outlineColor:var(--t271);}
|
|
1572
1584
|
}
|
|
1573
1585
|
.t_dark_blue_SwitchThumb ::selection, .t_dark_blue_Tooltip ::selection, .t_dark_blue_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1574
|
-
:root.t_dark .t_gray, :root.t_light .t_dark .t_gray, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1586
|
+
:root.t_dark .t_gray, :root.t_light .t_dark .t_gray, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t276);--background02:var(--t277);--background04:var(--t278);--background06:var(--t279);--background08:var(--t280);--color1:var(--t281);--color2:var(--t9);--color3:var(--t282);--color4:var(--t283);--color5:var(--t284);--color6:var(--t285);--color7:var(--t286);--color8:var(--t287);--color9:var(--t288);--color10:var(--t289);--color11:var(--t290);--color12:var(--t1);--color0:var(--t291);--color02:var(--t292);--color04:var(--t293);--color06:var(--t294);--color08:var(--t295);--color:var(--t1);--colorHover:var(--t295);--colorPress:var(--t1);--colorFocus:var(--t290);--background:var(--t9);--backgroundHover:var(--t282);--backgroundPress:var(--t281);--backgroundFocus:var(--t282);--backgroundActive:var(--t9);--borderColor:var(--t283);--borderColorHover:var(--t284);--borderColorFocus:var(--t283);--borderColorPress:var(--t282);--placeholderColor:var(--t288);--colorTransparent:var(--t291);--color01:var(--t296);--color0075:var(--t297);--color005:var(--t298);--color0025:var(--t299);--color002:var(--t300);--color001:var(--t301);--background01:var(--t302);--background0075:var(--t303);--background005:var(--t304);--background0025:var(--t305);--background002:var(--t306);--background001:var(--t307);--outlineColor:var(--t308);}
|
|
1575
1587
|
@media(prefers-color-scheme:dark){
|
|
1576
|
-
.t_gray {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1588
|
+
.t_gray {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t276);--background02:var(--t277);--background04:var(--t278);--background06:var(--t279);--background08:var(--t280);--color1:var(--t281);--color2:var(--t9);--color3:var(--t282);--color4:var(--t283);--color5:var(--t284);--color6:var(--t285);--color7:var(--t286);--color8:var(--t287);--color9:var(--t288);--color10:var(--t289);--color11:var(--t290);--color12:var(--t1);--color0:var(--t291);--color02:var(--t292);--color04:var(--t293);--color06:var(--t294);--color08:var(--t295);--color:var(--t1);--colorHover:var(--t295);--colorPress:var(--t1);--colorFocus:var(--t290);--background:var(--t9);--backgroundHover:var(--t282);--backgroundPress:var(--t281);--backgroundFocus:var(--t282);--backgroundActive:var(--t9);--borderColor:var(--t283);--borderColorHover:var(--t284);--borderColorFocus:var(--t283);--borderColorPress:var(--t282);--placeholderColor:var(--t288);--colorTransparent:var(--t291);--color01:var(--t296);--color0075:var(--t297);--color005:var(--t298);--color0025:var(--t299);--color002:var(--t300);--color001:var(--t301);--background01:var(--t302);--background0075:var(--t303);--background005:var(--t304);--background0025:var(--t305);--background002:var(--t306);--background001:var(--t307);--outlineColor:var(--t308);}
|
|
1577
1589
|
}
|
|
1578
1590
|
.t_dark_gray ::selection{background:var(--color5);color:var(--color11)}
|
|
1579
|
-
:root.t_dark .t_gray_Button, :root.t_dark .t_gray_SliderThumb, :root.t_dark .t_gray_Switch, :root.t_dark .t_gray_surface2, :root.t_light .t_dark .t_gray_Button, :root.t_light .t_dark .t_gray_SliderThumb, :root.t_light .t_dark .t_gray_Switch, :root.t_light .t_dark .t_gray_surface2, .tm_xxt {--color:var(--
|
|
1591
|
+
:root.t_dark .t_gray_Button, :root.t_dark .t_gray_SliderThumb, :root.t_dark .t_gray_Switch, :root.t_dark .t_gray_surface2, :root.t_light .t_dark .t_gray_Button, :root.t_light .t_dark .t_gray_SliderThumb, :root.t_light .t_dark .t_gray_Switch, :root.t_light .t_dark .t_gray_surface2, .tm_xxt {--color:var(--t290);--colorHover:var(--t1);--colorPress:var(--t290);--colorFocus:var(--t289);--background:var(--t283);--backgroundHover:var(--t284);--backgroundPress:var(--t282);--backgroundFocus:var(--t286);--backgroundActive:var(--t283);--borderColor:var(--t285);--borderColorHover:var(--t286);--borderColorFocus:var(--t285);--borderColorPress:var(--t284);--color01:var(--t296);--color0075:var(--t297);--color005:var(--t298);--color0025:var(--t299);--color002:var(--t300);--color001:var(--t301);--background01:var(--t302);--background0075:var(--t303);--background005:var(--t304);--background0025:var(--t305);--background002:var(--t306);--background001:var(--t307);--background02:var(--t277);--background04:var(--t278);--background06:var(--t279);--background08:var(--t280);--outlineColor:var(--t308);}
|
|
1580
1592
|
@media(prefers-color-scheme:dark){
|
|
1581
|
-
.t_gray_Button, .t_gray_SliderThumb, .t_gray_Switch, .t_gray_surface2 {--color:var(--
|
|
1593
|
+
.t_gray_Button, .t_gray_SliderThumb, .t_gray_Switch, .t_gray_surface2 {--color:var(--t290);--colorHover:var(--t1);--colorPress:var(--t290);--colorFocus:var(--t289);--background:var(--t283);--backgroundHover:var(--t284);--backgroundPress:var(--t282);--backgroundFocus:var(--t286);--backgroundActive:var(--t283);--borderColor:var(--t285);--borderColorHover:var(--t286);--borderColorFocus:var(--t285);--borderColorPress:var(--t284);--color01:var(--t296);--color0075:var(--t297);--color005:var(--t298);--color0025:var(--t299);--color002:var(--t300);--color001:var(--t301);--background01:var(--t302);--background0075:var(--t303);--background005:var(--t304);--background0025:var(--t305);--background002:var(--t306);--background001:var(--t307);--background02:var(--t277);--background04:var(--t278);--background06:var(--t279);--background08:var(--t280);--outlineColor:var(--t308);}
|
|
1582
1594
|
}
|
|
1583
|
-
:root.t_dark .t_gray_Input, :root.t_dark .t_gray_Progress, :root.t_dark .t_gray_Slider, :root.t_dark .t_gray_TextArea, :root.t_dark .t_gray_surface1, :root.t_light .t_dark .t_gray_Input, :root.t_light .t_dark .t_gray_Progress, :root.t_light .t_dark .t_gray_Slider, :root.t_light .t_dark .t_gray_TextArea, :root.t_light .t_dark .t_gray_surface1, .tm_xxt {--color:var(--
|
|
1595
|
+
:root.t_dark .t_gray_Input, :root.t_dark .t_gray_Progress, :root.t_dark .t_gray_Slider, :root.t_dark .t_gray_TextArea, :root.t_dark .t_gray_surface1, :root.t_light .t_dark .t_gray_Input, :root.t_light .t_dark .t_gray_Progress, :root.t_light .t_dark .t_gray_Slider, :root.t_light .t_dark .t_gray_TextArea, :root.t_light .t_dark .t_gray_surface1, .tm_xxt {--color:var(--t290);--colorHover:var(--t1);--colorPress:var(--t290);--colorFocus:var(--t289);--background:var(--t282);--backgroundHover:var(--t283);--backgroundPress:var(--t9);--backgroundFocus:var(--t284);--backgroundActive:var(--t282);--borderColor:var(--t284);--borderColorHover:var(--t285);--borderColorFocus:var(--t284);--borderColorPress:var(--t283);--color01:var(--t296);--color0075:var(--t297);--color005:var(--t298);--color0025:var(--t299);--color002:var(--t300);--color001:var(--t301);--background01:var(--t302);--background0075:var(--t303);--background005:var(--t304);--background0025:var(--t305);--background002:var(--t306);--background001:var(--t307);--background02:var(--t277);--background04:var(--t278);--background06:var(--t279);--background08:var(--t280);--outlineColor:var(--t308);}
|
|
1584
1596
|
@media(prefers-color-scheme:dark){
|
|
1585
|
-
.t_gray_Input, .t_gray_Progress, .t_gray_Slider, .t_gray_TextArea, .t_gray_surface1 {--color:var(--
|
|
1597
|
+
.t_gray_Input, .t_gray_Progress, .t_gray_Slider, .t_gray_TextArea, .t_gray_surface1 {--color:var(--t290);--colorHover:var(--t1);--colorPress:var(--t290);--colorFocus:var(--t289);--background:var(--t282);--backgroundHover:var(--t283);--backgroundPress:var(--t9);--backgroundFocus:var(--t284);--backgroundActive:var(--t282);--borderColor:var(--t284);--borderColorHover:var(--t285);--borderColorFocus:var(--t284);--borderColorPress:var(--t283);--color01:var(--t296);--color0075:var(--t297);--color005:var(--t298);--color0025:var(--t299);--color002:var(--t300);--color001:var(--t301);--background01:var(--t302);--background0075:var(--t303);--background005:var(--t304);--background0025:var(--t305);--background002:var(--t306);--background001:var(--t307);--background02:var(--t277);--background04:var(--t278);--background06:var(--t279);--background08:var(--t280);--outlineColor:var(--t308);}
|
|
1586
1598
|
}
|
|
1587
|
-
:root.t_dark .t_gray_ProgressIndicator, :root.t_dark .t_gray_SliderActive, :root.t_light .t_dark .t_gray_ProgressIndicator, :root.t_light .t_dark .t_gray_SliderActive, .tm_xxt {--color:var(--
|
|
1599
|
+
:root.t_dark .t_gray_ProgressIndicator, :root.t_dark .t_gray_SliderActive, :root.t_light .t_dark .t_gray_ProgressIndicator, :root.t_light .t_dark .t_gray_SliderActive, .tm_xxt {--color:var(--t290);--colorHover:var(--t1);--colorPress:var(--t290);--colorFocus:var(--t289);--background:var(--t285);--backgroundHover:var(--t286);--backgroundPress:var(--t284);--backgroundFocus:var(--t290);--backgroundActive:var(--t285);--borderColor:var(--t287);--borderColorHover:var(--t288);--borderColorFocus:var(--t287);--borderColorPress:var(--t286);--color01:var(--t296);--color0075:var(--t297);--color005:var(--t298);--color0025:var(--t299);--color002:var(--t300);--color001:var(--t301);--background01:var(--t302);--background0075:var(--t303);--background005:var(--t304);--background0025:var(--t305);--background002:var(--t306);--background001:var(--t307);--background02:var(--t277);--background04:var(--t278);--background06:var(--t279);--background08:var(--t280);--outlineColor:var(--t308);}
|
|
1588
1600
|
@media(prefers-color-scheme:dark){
|
|
1589
|
-
.t_gray_ProgressIndicator, .t_gray_SliderActive {--color:var(--
|
|
1601
|
+
.t_gray_ProgressIndicator, .t_gray_SliderActive {--color:var(--t290);--colorHover:var(--t1);--colorPress:var(--t290);--colorFocus:var(--t289);--background:var(--t285);--backgroundHover:var(--t286);--backgroundPress:var(--t284);--backgroundFocus:var(--t290);--backgroundActive:var(--t285);--borderColor:var(--t287);--borderColorHover:var(--t288);--borderColorFocus:var(--t287);--borderColorPress:var(--t286);--color01:var(--t296);--color0075:var(--t297);--color005:var(--t298);--color0025:var(--t299);--color002:var(--t300);--color001:var(--t301);--background01:var(--t302);--background0075:var(--t303);--background005:var(--t304);--background0025:var(--t305);--background002:var(--t306);--background001:var(--t307);--background02:var(--t277);--background04:var(--t278);--background06:var(--t279);--background08:var(--t280);--outlineColor:var(--t308);}
|
|
1590
1602
|
}
|
|
1591
|
-
:root.t_dark .t_gray_SwitchThumb, :root.t_dark .t_gray_Tooltip, :root.t_dark .t_gray_accent, :root.t_light .t_dark .t_gray_SwitchThumb, :root.t_light .t_dark .t_gray_Tooltip, :root.t_light .t_dark .t_gray_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1603
|
+
:root.t_dark .t_gray_SwitchThumb, :root.t_dark .t_gray_Tooltip, :root.t_dark .t_gray_accent, :root.t_light .t_dark .t_gray_SwitchThumb, :root.t_light .t_dark .t_gray_Tooltip, :root.t_light .t_dark .t_gray_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t291);--background02:var(--t277);--background04:var(--t278);--background06:var(--t279);--background08:var(--t280);--color1:var(--t1);--color2:var(--t290);--color3:var(--t289);--color4:var(--t288);--color5:var(--t287);--color6:var(--t286);--color7:var(--t285);--color8:var(--t284);--color9:var(--t283);--color10:var(--t282);--color11:var(--t9);--color12:var(--t281);--color0:var(--t276);--color02:var(--t309);--color04:var(--t310);--color06:var(--t311);--color08:var(--t312);--color:var(--t281);--colorHover:var(--t312);--colorPress:var(--t281);--colorFocus:var(--t9);--background:var(--t290);--backgroundHover:var(--t289);--backgroundPress:var(--t1);--backgroundFocus:var(--t289);--backgroundActive:var(--t290);--borderColor:var(--t288);--borderColorHover:var(--t287);--borderColorFocus:var(--t288);--borderColorPress:var(--t289);--placeholderColor:var(--t283);--colorTransparent:var(--t276);--color01:var(--t296);--color0075:var(--t297);--color005:var(--t298);--color0025:var(--t299);--color002:var(--t300);--color001:var(--t301);--background01:var(--t302);--background0075:var(--t303);--background005:var(--t304);--background0025:var(--t305);--background002:var(--t306);--background001:var(--t307);--outlineColor:var(--t308);}
|
|
1592
1604
|
@media(prefers-color-scheme:dark){
|
|
1593
|
-
.t_gray_SwitchThumb, .t_gray_Tooltip, .t_gray_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1605
|
+
.t_gray_SwitchThumb, .t_gray_Tooltip, .t_gray_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t291);--background02:var(--t277);--background04:var(--t278);--background06:var(--t279);--background08:var(--t280);--color1:var(--t1);--color2:var(--t290);--color3:var(--t289);--color4:var(--t288);--color5:var(--t287);--color6:var(--t286);--color7:var(--t285);--color8:var(--t284);--color9:var(--t283);--color10:var(--t282);--color11:var(--t9);--color12:var(--t281);--color0:var(--t276);--color02:var(--t309);--color04:var(--t310);--color06:var(--t311);--color08:var(--t312);--color:var(--t281);--colorHover:var(--t312);--colorPress:var(--t281);--colorFocus:var(--t9);--background:var(--t290);--backgroundHover:var(--t289);--backgroundPress:var(--t1);--backgroundFocus:var(--t289);--backgroundActive:var(--t290);--borderColor:var(--t288);--borderColorHover:var(--t287);--borderColorFocus:var(--t288);--borderColorPress:var(--t289);--placeholderColor:var(--t283);--colorTransparent:var(--t276);--color01:var(--t296);--color0075:var(--t297);--color005:var(--t298);--color0025:var(--t299);--color002:var(--t300);--color001:var(--t301);--background01:var(--t302);--background0075:var(--t303);--background005:var(--t304);--background0025:var(--t305);--background002:var(--t306);--background001:var(--t307);--outlineColor:var(--t308);}
|
|
1594
1606
|
}
|
|
1595
1607
|
.t_dark_gray_SwitchThumb ::selection, .t_dark_gray_Tooltip ::selection, .t_dark_gray_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1596
|
-
:root.t_dark .t_green, :root.t_light .t_dark .t_green, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1608
|
+
:root.t_dark .t_green, :root.t_light .t_dark .t_green, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t313);--background02:var(--t314);--background04:var(--t315);--background06:var(--t316);--background08:var(--t317);--color1:var(--t318);--color2:var(--t319);--color3:var(--t320);--color4:var(--t321);--color5:var(--t322);--color6:var(--t323);--color7:var(--t324);--color8:var(--t325);--color9:var(--t326);--color10:var(--t327);--color11:var(--t328);--color12:var(--t329);--color0:var(--t330);--color02:var(--t331);--color04:var(--t332);--color06:var(--t333);--color08:var(--t334);--color:var(--t329);--colorHover:var(--t334);--colorPress:var(--t329);--colorFocus:var(--t328);--background:var(--t319);--backgroundHover:var(--t320);--backgroundPress:var(--t318);--backgroundFocus:var(--t320);--backgroundActive:var(--t319);--borderColor:var(--t321);--borderColorHover:var(--t322);--borderColorFocus:var(--t321);--borderColorPress:var(--t320);--placeholderColor:var(--t326);--colorTransparent:var(--t330);--color01:var(--t335);--color0075:var(--t336);--color005:var(--t337);--color0025:var(--t338);--color002:var(--t339);--color001:var(--t340);--background01:var(--t341);--background0075:var(--t342);--background005:var(--t343);--background0025:var(--t344);--background002:var(--t345);--background001:var(--t346);--outlineColor:var(--t347);}
|
|
1597
1609
|
@media(prefers-color-scheme:dark){
|
|
1598
|
-
.t_green {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1610
|
+
.t_green {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t313);--background02:var(--t314);--background04:var(--t315);--background06:var(--t316);--background08:var(--t317);--color1:var(--t318);--color2:var(--t319);--color3:var(--t320);--color4:var(--t321);--color5:var(--t322);--color6:var(--t323);--color7:var(--t324);--color8:var(--t325);--color9:var(--t326);--color10:var(--t327);--color11:var(--t328);--color12:var(--t329);--color0:var(--t330);--color02:var(--t331);--color04:var(--t332);--color06:var(--t333);--color08:var(--t334);--color:var(--t329);--colorHover:var(--t334);--colorPress:var(--t329);--colorFocus:var(--t328);--background:var(--t319);--backgroundHover:var(--t320);--backgroundPress:var(--t318);--backgroundFocus:var(--t320);--backgroundActive:var(--t319);--borderColor:var(--t321);--borderColorHover:var(--t322);--borderColorFocus:var(--t321);--borderColorPress:var(--t320);--placeholderColor:var(--t326);--colorTransparent:var(--t330);--color01:var(--t335);--color0075:var(--t336);--color005:var(--t337);--color0025:var(--t338);--color002:var(--t339);--color001:var(--t340);--background01:var(--t341);--background0075:var(--t342);--background005:var(--t343);--background0025:var(--t344);--background002:var(--t345);--background001:var(--t346);--outlineColor:var(--t347);}
|
|
1599
1611
|
}
|
|
1600
1612
|
.t_dark_green ::selection{background:var(--color5);color:var(--color11)}
|
|
1601
|
-
:root.t_dark .t_green_Button, :root.t_dark .t_green_SliderThumb, :root.t_dark .t_green_Switch, :root.t_dark .t_green_surface2, :root.t_light .t_dark .t_green_Button, :root.t_light .t_dark .t_green_SliderThumb, :root.t_light .t_dark .t_green_Switch, :root.t_light .t_dark .t_green_surface2, .tm_xxt {--color:var(--
|
|
1613
|
+
:root.t_dark .t_green_Button, :root.t_dark .t_green_SliderThumb, :root.t_dark .t_green_Switch, :root.t_dark .t_green_surface2, :root.t_light .t_dark .t_green_Button, :root.t_light .t_dark .t_green_SliderThumb, :root.t_light .t_dark .t_green_Switch, :root.t_light .t_dark .t_green_surface2, .tm_xxt {--color:var(--t328);--colorHover:var(--t329);--colorPress:var(--t328);--colorFocus:var(--t327);--background:var(--t321);--backgroundHover:var(--t322);--backgroundPress:var(--t320);--backgroundFocus:var(--t324);--backgroundActive:var(--t321);--borderColor:var(--t323);--borderColorHover:var(--t324);--borderColorFocus:var(--t323);--borderColorPress:var(--t322);--color01:var(--t335);--color0075:var(--t336);--color005:var(--t337);--color0025:var(--t338);--color002:var(--t339);--color001:var(--t340);--background01:var(--t341);--background0075:var(--t342);--background005:var(--t343);--background0025:var(--t344);--background002:var(--t345);--background001:var(--t346);--background02:var(--t314);--background04:var(--t315);--background06:var(--t316);--background08:var(--t317);--outlineColor:var(--t347);}
|
|
1602
1614
|
@media(prefers-color-scheme:dark){
|
|
1603
|
-
.t_green_Button, .t_green_SliderThumb, .t_green_Switch, .t_green_surface2 {--color:var(--
|
|
1615
|
+
.t_green_Button, .t_green_SliderThumb, .t_green_Switch, .t_green_surface2 {--color:var(--t328);--colorHover:var(--t329);--colorPress:var(--t328);--colorFocus:var(--t327);--background:var(--t321);--backgroundHover:var(--t322);--backgroundPress:var(--t320);--backgroundFocus:var(--t324);--backgroundActive:var(--t321);--borderColor:var(--t323);--borderColorHover:var(--t324);--borderColorFocus:var(--t323);--borderColorPress:var(--t322);--color01:var(--t335);--color0075:var(--t336);--color005:var(--t337);--color0025:var(--t338);--color002:var(--t339);--color001:var(--t340);--background01:var(--t341);--background0075:var(--t342);--background005:var(--t343);--background0025:var(--t344);--background002:var(--t345);--background001:var(--t346);--background02:var(--t314);--background04:var(--t315);--background06:var(--t316);--background08:var(--t317);--outlineColor:var(--t347);}
|
|
1604
1616
|
}
|
|
1605
|
-
:root.t_dark .t_green_Input, :root.t_dark .t_green_Progress, :root.t_dark .t_green_Slider, :root.t_dark .t_green_TextArea, :root.t_dark .t_green_surface1, :root.t_light .t_dark .t_green_Input, :root.t_light .t_dark .t_green_Progress, :root.t_light .t_dark .t_green_Slider, :root.t_light .t_dark .t_green_TextArea, :root.t_light .t_dark .t_green_surface1, .tm_xxt {--color:var(--
|
|
1617
|
+
:root.t_dark .t_green_Input, :root.t_dark .t_green_Progress, :root.t_dark .t_green_Slider, :root.t_dark .t_green_TextArea, :root.t_dark .t_green_surface1, :root.t_light .t_dark .t_green_Input, :root.t_light .t_dark .t_green_Progress, :root.t_light .t_dark .t_green_Slider, :root.t_light .t_dark .t_green_TextArea, :root.t_light .t_dark .t_green_surface1, .tm_xxt {--color:var(--t328);--colorHover:var(--t329);--colorPress:var(--t328);--colorFocus:var(--t327);--background:var(--t320);--backgroundHover:var(--t321);--backgroundPress:var(--t319);--backgroundFocus:var(--t322);--backgroundActive:var(--t320);--borderColor:var(--t322);--borderColorHover:var(--t323);--borderColorFocus:var(--t322);--borderColorPress:var(--t321);--color01:var(--t335);--color0075:var(--t336);--color005:var(--t337);--color0025:var(--t338);--color002:var(--t339);--color001:var(--t340);--background01:var(--t341);--background0075:var(--t342);--background005:var(--t343);--background0025:var(--t344);--background002:var(--t345);--background001:var(--t346);--background02:var(--t314);--background04:var(--t315);--background06:var(--t316);--background08:var(--t317);--outlineColor:var(--t347);}
|
|
1606
1618
|
@media(prefers-color-scheme:dark){
|
|
1607
|
-
.t_green_Input, .t_green_Progress, .t_green_Slider, .t_green_TextArea, .t_green_surface1 {--color:var(--
|
|
1619
|
+
.t_green_Input, .t_green_Progress, .t_green_Slider, .t_green_TextArea, .t_green_surface1 {--color:var(--t328);--colorHover:var(--t329);--colorPress:var(--t328);--colorFocus:var(--t327);--background:var(--t320);--backgroundHover:var(--t321);--backgroundPress:var(--t319);--backgroundFocus:var(--t322);--backgroundActive:var(--t320);--borderColor:var(--t322);--borderColorHover:var(--t323);--borderColorFocus:var(--t322);--borderColorPress:var(--t321);--color01:var(--t335);--color0075:var(--t336);--color005:var(--t337);--color0025:var(--t338);--color002:var(--t339);--color001:var(--t340);--background01:var(--t341);--background0075:var(--t342);--background005:var(--t343);--background0025:var(--t344);--background002:var(--t345);--background001:var(--t346);--background02:var(--t314);--background04:var(--t315);--background06:var(--t316);--background08:var(--t317);--outlineColor:var(--t347);}
|
|
1608
1620
|
}
|
|
1609
|
-
:root.t_dark .t_green_ProgressIndicator, :root.t_dark .t_green_SliderActive, :root.t_light .t_dark .t_green_ProgressIndicator, :root.t_light .t_dark .t_green_SliderActive, .tm_xxt {--color:var(--
|
|
1621
|
+
:root.t_dark .t_green_ProgressIndicator, :root.t_dark .t_green_SliderActive, :root.t_light .t_dark .t_green_ProgressIndicator, :root.t_light .t_dark .t_green_SliderActive, .tm_xxt {--color:var(--t328);--colorHover:var(--t329);--colorPress:var(--t328);--colorFocus:var(--t327);--background:var(--t323);--backgroundHover:var(--t324);--backgroundPress:var(--t322);--backgroundFocus:var(--t328);--backgroundActive:var(--t323);--borderColor:var(--t325);--borderColorHover:var(--t326);--borderColorFocus:var(--t325);--borderColorPress:var(--t324);--color01:var(--t335);--color0075:var(--t336);--color005:var(--t337);--color0025:var(--t338);--color002:var(--t339);--color001:var(--t340);--background01:var(--t341);--background0075:var(--t342);--background005:var(--t343);--background0025:var(--t344);--background002:var(--t345);--background001:var(--t346);--background02:var(--t314);--background04:var(--t315);--background06:var(--t316);--background08:var(--t317);--outlineColor:var(--t347);}
|
|
1610
1622
|
@media(prefers-color-scheme:dark){
|
|
1611
|
-
.t_green_ProgressIndicator, .t_green_SliderActive {--color:var(--
|
|
1623
|
+
.t_green_ProgressIndicator, .t_green_SliderActive {--color:var(--t328);--colorHover:var(--t329);--colorPress:var(--t328);--colorFocus:var(--t327);--background:var(--t323);--backgroundHover:var(--t324);--backgroundPress:var(--t322);--backgroundFocus:var(--t328);--backgroundActive:var(--t323);--borderColor:var(--t325);--borderColorHover:var(--t326);--borderColorFocus:var(--t325);--borderColorPress:var(--t324);--color01:var(--t335);--color0075:var(--t336);--color005:var(--t337);--color0025:var(--t338);--color002:var(--t339);--color001:var(--t340);--background01:var(--t341);--background0075:var(--t342);--background005:var(--t343);--background0025:var(--t344);--background002:var(--t345);--background001:var(--t346);--background02:var(--t314);--background04:var(--t315);--background06:var(--t316);--background08:var(--t317);--outlineColor:var(--t347);}
|
|
1612
1624
|
}
|
|
1613
|
-
:root.t_dark .t_green_SwitchThumb, :root.t_dark .t_green_Tooltip, :root.t_dark .t_green_accent, :root.t_light .t_dark .t_green_SwitchThumb, :root.t_light .t_dark .t_green_Tooltip, :root.t_light .t_dark .t_green_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1625
|
+
:root.t_dark .t_green_SwitchThumb, :root.t_dark .t_green_Tooltip, :root.t_dark .t_green_accent, :root.t_light .t_dark .t_green_SwitchThumb, :root.t_light .t_dark .t_green_Tooltip, :root.t_light .t_dark .t_green_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t330);--background02:var(--t314);--background04:var(--t315);--background06:var(--t316);--background08:var(--t317);--color1:var(--t329);--color2:var(--t328);--color3:var(--t327);--color4:var(--t326);--color5:var(--t325);--color6:var(--t324);--color7:var(--t323);--color8:var(--t322);--color9:var(--t321);--color10:var(--t320);--color11:var(--t319);--color12:var(--t318);--color0:var(--t313);--color02:var(--t348);--color04:var(--t349);--color06:var(--t350);--color08:var(--t351);--color:var(--t318);--colorHover:var(--t351);--colorPress:var(--t318);--colorFocus:var(--t319);--background:var(--t328);--backgroundHover:var(--t327);--backgroundPress:var(--t329);--backgroundFocus:var(--t327);--backgroundActive:var(--t328);--borderColor:var(--t326);--borderColorHover:var(--t325);--borderColorFocus:var(--t326);--borderColorPress:var(--t327);--placeholderColor:var(--t321);--colorTransparent:var(--t313);--color01:var(--t335);--color0075:var(--t336);--color005:var(--t337);--color0025:var(--t338);--color002:var(--t339);--color001:var(--t340);--background01:var(--t341);--background0075:var(--t342);--background005:var(--t343);--background0025:var(--t344);--background002:var(--t345);--background001:var(--t346);--outlineColor:var(--t347);}
|
|
1614
1626
|
@media(prefers-color-scheme:dark){
|
|
1615
|
-
.t_green_SwitchThumb, .t_green_Tooltip, .t_green_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1627
|
+
.t_green_SwitchThumb, .t_green_Tooltip, .t_green_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t330);--background02:var(--t314);--background04:var(--t315);--background06:var(--t316);--background08:var(--t317);--color1:var(--t329);--color2:var(--t328);--color3:var(--t327);--color4:var(--t326);--color5:var(--t325);--color6:var(--t324);--color7:var(--t323);--color8:var(--t322);--color9:var(--t321);--color10:var(--t320);--color11:var(--t319);--color12:var(--t318);--color0:var(--t313);--color02:var(--t348);--color04:var(--t349);--color06:var(--t350);--color08:var(--t351);--color:var(--t318);--colorHover:var(--t351);--colorPress:var(--t318);--colorFocus:var(--t319);--background:var(--t328);--backgroundHover:var(--t327);--backgroundPress:var(--t329);--backgroundFocus:var(--t327);--backgroundActive:var(--t328);--borderColor:var(--t326);--borderColorHover:var(--t325);--borderColorFocus:var(--t326);--borderColorPress:var(--t327);--placeholderColor:var(--t321);--colorTransparent:var(--t313);--color01:var(--t335);--color0075:var(--t336);--color005:var(--t337);--color0025:var(--t338);--color002:var(--t339);--color001:var(--t340);--background01:var(--t341);--background0075:var(--t342);--background005:var(--t343);--background0025:var(--t344);--background002:var(--t345);--background001:var(--t346);--outlineColor:var(--t347);}
|
|
1616
1628
|
}
|
|
1617
1629
|
.t_dark_green_SwitchThumb ::selection, .t_dark_green_Tooltip ::selection, .t_dark_green_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1618
|
-
:root.t_dark .t_neutral, :root.t_light .t_dark .t_neutral, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1630
|
+
:root.t_dark .t_neutral, :root.t_light .t_dark .t_neutral, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t352);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--color1:var(--t357);--color2:var(--t358);--color3:var(--t359);--color4:var(--t194);--color5:var(--t360);--color6:var(--t361);--color7:var(--t362);--color8:var(--t13);--color9:var(--t363);--color10:var(--t364);--color11:var(--t287);--color12:var(--t365);--color0:var(--t366);--color02:var(--t367);--color04:var(--t368);--color06:var(--t369);--color08:var(--t370);--color:var(--t365);--colorHover:var(--t370);--colorPress:var(--t365);--colorFocus:var(--t287);--background:var(--t358);--backgroundHover:var(--t359);--backgroundPress:var(--t357);--backgroundFocus:var(--t359);--backgroundActive:var(--t358);--borderColor:var(--t194);--borderColorHover:var(--t360);--borderColorFocus:var(--t194);--borderColorPress:var(--t359);--placeholderColor:var(--t363);--colorTransparent:var(--t366);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--outlineColor:var(--t383);}
|
|
1619
1631
|
@media(prefers-color-scheme:dark){
|
|
1620
|
-
.t_neutral {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1632
|
+
.t_neutral {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t352);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--color1:var(--t357);--color2:var(--t358);--color3:var(--t359);--color4:var(--t194);--color5:var(--t360);--color6:var(--t361);--color7:var(--t362);--color8:var(--t13);--color9:var(--t363);--color10:var(--t364);--color11:var(--t287);--color12:var(--t365);--color0:var(--t366);--color02:var(--t367);--color04:var(--t368);--color06:var(--t369);--color08:var(--t370);--color:var(--t365);--colorHover:var(--t370);--colorPress:var(--t365);--colorFocus:var(--t287);--background:var(--t358);--backgroundHover:var(--t359);--backgroundPress:var(--t357);--backgroundFocus:var(--t359);--backgroundActive:var(--t358);--borderColor:var(--t194);--borderColorHover:var(--t360);--borderColorFocus:var(--t194);--borderColorPress:var(--t359);--placeholderColor:var(--t363);--colorTransparent:var(--t366);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--outlineColor:var(--t383);}
|
|
1621
1633
|
}
|
|
1622
1634
|
.t_dark_neutral ::selection{background:var(--color5);color:var(--color11)}
|
|
1623
|
-
:root.t_dark .t_neutral_Button, :root.t_dark .t_neutral_SliderThumb, :root.t_dark .t_neutral_Switch, :root.t_dark .t_neutral_surface2, :root.t_light .t_dark .t_neutral_Button, :root.t_light .t_dark .t_neutral_SliderThumb, :root.t_light .t_dark .t_neutral_Switch, :root.t_light .t_dark .t_neutral_surface2, .tm_xxt {--color:var(--
|
|
1635
|
+
:root.t_dark .t_neutral_Button, :root.t_dark .t_neutral_SliderThumb, :root.t_dark .t_neutral_Switch, :root.t_dark .t_neutral_surface2, :root.t_light .t_dark .t_neutral_Button, :root.t_light .t_dark .t_neutral_SliderThumb, :root.t_light .t_dark .t_neutral_Switch, :root.t_light .t_dark .t_neutral_surface2, .tm_xxt {--color:var(--t287);--colorHover:var(--t365);--colorPress:var(--t287);--colorFocus:var(--t364);--background:var(--t194);--backgroundHover:var(--t360);--backgroundPress:var(--t359);--backgroundFocus:var(--t362);--backgroundActive:var(--t194);--borderColor:var(--t361);--borderColorHover:var(--t362);--borderColorFocus:var(--t361);--borderColorPress:var(--t360);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--outlineColor:var(--t383);}
|
|
1624
1636
|
@media(prefers-color-scheme:dark){
|
|
1625
|
-
.t_neutral_Button, .t_neutral_SliderThumb, .t_neutral_Switch, .t_neutral_surface2 {--color:var(--
|
|
1637
|
+
.t_neutral_Button, .t_neutral_SliderThumb, .t_neutral_Switch, .t_neutral_surface2 {--color:var(--t287);--colorHover:var(--t365);--colorPress:var(--t287);--colorFocus:var(--t364);--background:var(--t194);--backgroundHover:var(--t360);--backgroundPress:var(--t359);--backgroundFocus:var(--t362);--backgroundActive:var(--t194);--borderColor:var(--t361);--borderColorHover:var(--t362);--borderColorFocus:var(--t361);--borderColorPress:var(--t360);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--outlineColor:var(--t383);}
|
|
1626
1638
|
}
|
|
1627
|
-
:root.t_dark .t_neutral_Input, :root.t_dark .t_neutral_Progress, :root.t_dark .t_neutral_Slider, :root.t_dark .t_neutral_TextArea, :root.t_dark .t_neutral_surface1, :root.t_light .t_dark .t_neutral_Input, :root.t_light .t_dark .t_neutral_Progress, :root.t_light .t_dark .t_neutral_Slider, :root.t_light .t_dark .t_neutral_TextArea, :root.t_light .t_dark .t_neutral_surface1, .tm_xxt {--color:var(--
|
|
1639
|
+
:root.t_dark .t_neutral_Input, :root.t_dark .t_neutral_Progress, :root.t_dark .t_neutral_Slider, :root.t_dark .t_neutral_TextArea, :root.t_dark .t_neutral_surface1, :root.t_light .t_dark .t_neutral_Input, :root.t_light .t_dark .t_neutral_Progress, :root.t_light .t_dark .t_neutral_Slider, :root.t_light .t_dark .t_neutral_TextArea, :root.t_light .t_dark .t_neutral_surface1, .tm_xxt {--color:var(--t287);--colorHover:var(--t365);--colorPress:var(--t287);--colorFocus:var(--t364);--background:var(--t359);--backgroundHover:var(--t194);--backgroundPress:var(--t358);--backgroundFocus:var(--t360);--backgroundActive:var(--t359);--borderColor:var(--t360);--borderColorHover:var(--t361);--borderColorFocus:var(--t360);--borderColorPress:var(--t194);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--outlineColor:var(--t383);}
|
|
1628
1640
|
@media(prefers-color-scheme:dark){
|
|
1629
|
-
.t_neutral_Input, .t_neutral_Progress, .t_neutral_Slider, .t_neutral_TextArea, .t_neutral_surface1 {--color:var(--
|
|
1641
|
+
.t_neutral_Input, .t_neutral_Progress, .t_neutral_Slider, .t_neutral_TextArea, .t_neutral_surface1 {--color:var(--t287);--colorHover:var(--t365);--colorPress:var(--t287);--colorFocus:var(--t364);--background:var(--t359);--backgroundHover:var(--t194);--backgroundPress:var(--t358);--backgroundFocus:var(--t360);--backgroundActive:var(--t359);--borderColor:var(--t360);--borderColorHover:var(--t361);--borderColorFocus:var(--t360);--borderColorPress:var(--t194);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--outlineColor:var(--t383);}
|
|
1630
1642
|
}
|
|
1631
|
-
:root.t_dark .t_neutral_ProgressIndicator, :root.t_dark .t_neutral_SliderActive, :root.t_light .t_dark .t_neutral_ProgressIndicator, :root.t_light .t_dark .t_neutral_SliderActive, .tm_xxt {--color:var(--
|
|
1643
|
+
:root.t_dark .t_neutral_ProgressIndicator, :root.t_dark .t_neutral_SliderActive, :root.t_light .t_dark .t_neutral_ProgressIndicator, :root.t_light .t_dark .t_neutral_SliderActive, .tm_xxt {--color:var(--t287);--colorHover:var(--t365);--colorPress:var(--t287);--colorFocus:var(--t364);--background:var(--t361);--backgroundHover:var(--t362);--backgroundPress:var(--t360);--backgroundFocus:var(--t287);--backgroundActive:var(--t361);--borderColor:var(--t13);--borderColorHover:var(--t363);--borderColorFocus:var(--t13);--borderColorPress:var(--t362);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--outlineColor:var(--t383);}
|
|
1632
1644
|
@media(prefers-color-scheme:dark){
|
|
1633
|
-
.t_neutral_ProgressIndicator, .t_neutral_SliderActive {--color:var(--
|
|
1645
|
+
.t_neutral_ProgressIndicator, .t_neutral_SliderActive {--color:var(--t287);--colorHover:var(--t365);--colorPress:var(--t287);--colorFocus:var(--t364);--background:var(--t361);--backgroundHover:var(--t362);--backgroundPress:var(--t360);--backgroundFocus:var(--t287);--backgroundActive:var(--t361);--borderColor:var(--t13);--borderColorHover:var(--t363);--borderColorFocus:var(--t13);--borderColorPress:var(--t362);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--outlineColor:var(--t383);}
|
|
1634
1646
|
}
|
|
1635
|
-
:root.t_dark .t_neutral_SwitchThumb, :root.t_dark .t_neutral_Tooltip, :root.t_dark .t_neutral_accent, :root.t_light .t_dark .t_neutral_SwitchThumb, :root.t_light .t_dark .t_neutral_Tooltip, :root.t_light .t_dark .t_neutral_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1647
|
+
:root.t_dark .t_neutral_SwitchThumb, :root.t_dark .t_neutral_Tooltip, :root.t_dark .t_neutral_accent, :root.t_light .t_dark .t_neutral_SwitchThumb, :root.t_light .t_dark .t_neutral_Tooltip, :root.t_light .t_dark .t_neutral_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t366);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--color1:var(--t365);--color2:var(--t287);--color3:var(--t364);--color4:var(--t363);--color5:var(--t13);--color6:var(--t362);--color7:var(--t361);--color8:var(--t360);--color9:var(--t194);--color10:var(--t359);--color11:var(--t358);--color12:var(--t357);--color0:var(--t352);--color02:var(--t384);--color04:var(--t385);--color06:var(--t386);--color08:var(--t387);--color:var(--t357);--colorHover:var(--t387);--colorPress:var(--t357);--colorFocus:var(--t358);--background:var(--t287);--backgroundHover:var(--t364);--backgroundPress:var(--t365);--backgroundFocus:var(--t364);--backgroundActive:var(--t287);--borderColor:var(--t363);--borderColorHover:var(--t13);--borderColorFocus:var(--t363);--borderColorPress:var(--t364);--placeholderColor:var(--t194);--colorTransparent:var(--t352);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--outlineColor:var(--t383);}
|
|
1636
1648
|
@media(prefers-color-scheme:dark){
|
|
1637
|
-
.t_neutral_SwitchThumb, .t_neutral_Tooltip, .t_neutral_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1649
|
+
.t_neutral_SwitchThumb, .t_neutral_Tooltip, .t_neutral_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t366);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--color1:var(--t365);--color2:var(--t287);--color3:var(--t364);--color4:var(--t363);--color5:var(--t13);--color6:var(--t362);--color7:var(--t361);--color8:var(--t360);--color9:var(--t194);--color10:var(--t359);--color11:var(--t358);--color12:var(--t357);--color0:var(--t352);--color02:var(--t384);--color04:var(--t385);--color06:var(--t386);--color08:var(--t387);--color:var(--t357);--colorHover:var(--t387);--colorPress:var(--t357);--colorFocus:var(--t358);--background:var(--t287);--backgroundHover:var(--t364);--backgroundPress:var(--t365);--backgroundFocus:var(--t364);--backgroundActive:var(--t287);--borderColor:var(--t363);--borderColorHover:var(--t13);--borderColorFocus:var(--t363);--borderColorPress:var(--t364);--placeholderColor:var(--t194);--colorTransparent:var(--t352);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--outlineColor:var(--t383);}
|
|
1638
1650
|
}
|
|
1639
1651
|
.t_dark_neutral_SwitchThumb ::selection, .t_dark_neutral_Tooltip ::selection, .t_dark_neutral_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1640
|
-
:root.t_dark .t_orange, :root.t_light .t_dark .t_orange, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1652
|
+
:root.t_dark .t_orange, :root.t_light .t_dark .t_orange, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t388);--background02:var(--t389);--background04:var(--t390);--background06:var(--t391);--background08:var(--t392);--color1:var(--t393);--color2:var(--t394);--color3:var(--t395);--color4:var(--t396);--color5:var(--t397);--color6:var(--t398);--color7:var(--t399);--color8:var(--t400);--color9:var(--t401);--color10:var(--t402);--color11:var(--t403);--color12:var(--t404);--color0:var(--t405);--color02:var(--t406);--color04:var(--t407);--color06:var(--t408);--color08:var(--t409);--color:var(--t404);--colorHover:var(--t409);--colorPress:var(--t404);--colorFocus:var(--t403);--background:var(--t394);--backgroundHover:var(--t395);--backgroundPress:var(--t393);--backgroundFocus:var(--t395);--backgroundActive:var(--t394);--borderColor:var(--t396);--borderColorHover:var(--t397);--borderColorFocus:var(--t396);--borderColorPress:var(--t395);--placeholderColor:var(--t401);--colorTransparent:var(--t405);--color01:var(--t410);--color0075:var(--t411);--color005:var(--t412);--color0025:var(--t413);--color002:var(--t414);--color001:var(--t415);--background01:var(--t416);--background0075:var(--t417);--background005:var(--t418);--background0025:var(--t419);--background002:var(--t420);--background001:var(--t421);--outlineColor:var(--t422);}
|
|
1641
1653
|
@media(prefers-color-scheme:dark){
|
|
1642
|
-
.t_orange {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1654
|
+
.t_orange {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t388);--background02:var(--t389);--background04:var(--t390);--background06:var(--t391);--background08:var(--t392);--color1:var(--t393);--color2:var(--t394);--color3:var(--t395);--color4:var(--t396);--color5:var(--t397);--color6:var(--t398);--color7:var(--t399);--color8:var(--t400);--color9:var(--t401);--color10:var(--t402);--color11:var(--t403);--color12:var(--t404);--color0:var(--t405);--color02:var(--t406);--color04:var(--t407);--color06:var(--t408);--color08:var(--t409);--color:var(--t404);--colorHover:var(--t409);--colorPress:var(--t404);--colorFocus:var(--t403);--background:var(--t394);--backgroundHover:var(--t395);--backgroundPress:var(--t393);--backgroundFocus:var(--t395);--backgroundActive:var(--t394);--borderColor:var(--t396);--borderColorHover:var(--t397);--borderColorFocus:var(--t396);--borderColorPress:var(--t395);--placeholderColor:var(--t401);--colorTransparent:var(--t405);--color01:var(--t410);--color0075:var(--t411);--color005:var(--t412);--color0025:var(--t413);--color002:var(--t414);--color001:var(--t415);--background01:var(--t416);--background0075:var(--t417);--background005:var(--t418);--background0025:var(--t419);--background002:var(--t420);--background001:var(--t421);--outlineColor:var(--t422);}
|
|
1643
1655
|
}
|
|
1644
1656
|
.t_dark_orange ::selection{background:var(--color5);color:var(--color11)}
|
|
1645
|
-
:root.t_dark .t_orange_Button, :root.t_dark .t_orange_SliderThumb, :root.t_dark .t_orange_Switch, :root.t_dark .t_orange_surface2, :root.t_light .t_dark .t_orange_Button, :root.t_light .t_dark .t_orange_SliderThumb, :root.t_light .t_dark .t_orange_Switch, :root.t_light .t_dark .t_orange_surface2, .tm_xxt {--color:var(--
|
|
1657
|
+
:root.t_dark .t_orange_Button, :root.t_dark .t_orange_SliderThumb, :root.t_dark .t_orange_Switch, :root.t_dark .t_orange_surface2, :root.t_light .t_dark .t_orange_Button, :root.t_light .t_dark .t_orange_SliderThumb, :root.t_light .t_dark .t_orange_Switch, :root.t_light .t_dark .t_orange_surface2, .tm_xxt {--color:var(--t403);--colorHover:var(--t404);--colorPress:var(--t403);--colorFocus:var(--t402);--background:var(--t396);--backgroundHover:var(--t397);--backgroundPress:var(--t395);--backgroundFocus:var(--t399);--backgroundActive:var(--t396);--borderColor:var(--t398);--borderColorHover:var(--t399);--borderColorFocus:var(--t398);--borderColorPress:var(--t397);--color01:var(--t410);--color0075:var(--t411);--color005:var(--t412);--color0025:var(--t413);--color002:var(--t414);--color001:var(--t415);--background01:var(--t416);--background0075:var(--t417);--background005:var(--t418);--background0025:var(--t419);--background002:var(--t420);--background001:var(--t421);--background02:var(--t389);--background04:var(--t390);--background06:var(--t391);--background08:var(--t392);--outlineColor:var(--t422);}
|
|
1646
1658
|
@media(prefers-color-scheme:dark){
|
|
1647
|
-
.t_orange_Button, .t_orange_SliderThumb, .t_orange_Switch, .t_orange_surface2 {--color:var(--
|
|
1659
|
+
.t_orange_Button, .t_orange_SliderThumb, .t_orange_Switch, .t_orange_surface2 {--color:var(--t403);--colorHover:var(--t404);--colorPress:var(--t403);--colorFocus:var(--t402);--background:var(--t396);--backgroundHover:var(--t397);--backgroundPress:var(--t395);--backgroundFocus:var(--t399);--backgroundActive:var(--t396);--borderColor:var(--t398);--borderColorHover:var(--t399);--borderColorFocus:var(--t398);--borderColorPress:var(--t397);--color01:var(--t410);--color0075:var(--t411);--color005:var(--t412);--color0025:var(--t413);--color002:var(--t414);--color001:var(--t415);--background01:var(--t416);--background0075:var(--t417);--background005:var(--t418);--background0025:var(--t419);--background002:var(--t420);--background001:var(--t421);--background02:var(--t389);--background04:var(--t390);--background06:var(--t391);--background08:var(--t392);--outlineColor:var(--t422);}
|
|
1648
1660
|
}
|
|
1649
|
-
:root.t_dark .t_orange_Input, :root.t_dark .t_orange_Progress, :root.t_dark .t_orange_Slider, :root.t_dark .t_orange_TextArea, :root.t_dark .t_orange_surface1, :root.t_light .t_dark .t_orange_Input, :root.t_light .t_dark .t_orange_Progress, :root.t_light .t_dark .t_orange_Slider, :root.t_light .t_dark .t_orange_TextArea, :root.t_light .t_dark .t_orange_surface1, .tm_xxt {--color:var(--
|
|
1661
|
+
:root.t_dark .t_orange_Input, :root.t_dark .t_orange_Progress, :root.t_dark .t_orange_Slider, :root.t_dark .t_orange_TextArea, :root.t_dark .t_orange_surface1, :root.t_light .t_dark .t_orange_Input, :root.t_light .t_dark .t_orange_Progress, :root.t_light .t_dark .t_orange_Slider, :root.t_light .t_dark .t_orange_TextArea, :root.t_light .t_dark .t_orange_surface1, .tm_xxt {--color:var(--t403);--colorHover:var(--t404);--colorPress:var(--t403);--colorFocus:var(--t402);--background:var(--t395);--backgroundHover:var(--t396);--backgroundPress:var(--t394);--backgroundFocus:var(--t397);--backgroundActive:var(--t395);--borderColor:var(--t397);--borderColorHover:var(--t398);--borderColorFocus:var(--t397);--borderColorPress:var(--t396);--color01:var(--t410);--color0075:var(--t411);--color005:var(--t412);--color0025:var(--t413);--color002:var(--t414);--color001:var(--t415);--background01:var(--t416);--background0075:var(--t417);--background005:var(--t418);--background0025:var(--t419);--background002:var(--t420);--background001:var(--t421);--background02:var(--t389);--background04:var(--t390);--background06:var(--t391);--background08:var(--t392);--outlineColor:var(--t422);}
|
|
1650
1662
|
@media(prefers-color-scheme:dark){
|
|
1651
|
-
.t_orange_Input, .t_orange_Progress, .t_orange_Slider, .t_orange_TextArea, .t_orange_surface1 {--color:var(--
|
|
1663
|
+
.t_orange_Input, .t_orange_Progress, .t_orange_Slider, .t_orange_TextArea, .t_orange_surface1 {--color:var(--t403);--colorHover:var(--t404);--colorPress:var(--t403);--colorFocus:var(--t402);--background:var(--t395);--backgroundHover:var(--t396);--backgroundPress:var(--t394);--backgroundFocus:var(--t397);--backgroundActive:var(--t395);--borderColor:var(--t397);--borderColorHover:var(--t398);--borderColorFocus:var(--t397);--borderColorPress:var(--t396);--color01:var(--t410);--color0075:var(--t411);--color005:var(--t412);--color0025:var(--t413);--color002:var(--t414);--color001:var(--t415);--background01:var(--t416);--background0075:var(--t417);--background005:var(--t418);--background0025:var(--t419);--background002:var(--t420);--background001:var(--t421);--background02:var(--t389);--background04:var(--t390);--background06:var(--t391);--background08:var(--t392);--outlineColor:var(--t422);}
|
|
1652
1664
|
}
|
|
1653
|
-
:root.t_dark .t_orange_ProgressIndicator, :root.t_dark .t_orange_SliderActive, :root.t_light .t_dark .t_orange_ProgressIndicator, :root.t_light .t_dark .t_orange_SliderActive, .tm_xxt {--color:var(--
|
|
1665
|
+
:root.t_dark .t_orange_ProgressIndicator, :root.t_dark .t_orange_SliderActive, :root.t_light .t_dark .t_orange_ProgressIndicator, :root.t_light .t_dark .t_orange_SliderActive, .tm_xxt {--color:var(--t403);--colorHover:var(--t404);--colorPress:var(--t403);--colorFocus:var(--t402);--background:var(--t398);--backgroundHover:var(--t399);--backgroundPress:var(--t397);--backgroundFocus:var(--t403);--backgroundActive:var(--t398);--borderColor:var(--t400);--borderColorHover:var(--t401);--borderColorFocus:var(--t400);--borderColorPress:var(--t399);--color01:var(--t410);--color0075:var(--t411);--color005:var(--t412);--color0025:var(--t413);--color002:var(--t414);--color001:var(--t415);--background01:var(--t416);--background0075:var(--t417);--background005:var(--t418);--background0025:var(--t419);--background002:var(--t420);--background001:var(--t421);--background02:var(--t389);--background04:var(--t390);--background06:var(--t391);--background08:var(--t392);--outlineColor:var(--t422);}
|
|
1654
1666
|
@media(prefers-color-scheme:dark){
|
|
1655
|
-
.t_orange_ProgressIndicator, .t_orange_SliderActive {--color:var(--
|
|
1667
|
+
.t_orange_ProgressIndicator, .t_orange_SliderActive {--color:var(--t403);--colorHover:var(--t404);--colorPress:var(--t403);--colorFocus:var(--t402);--background:var(--t398);--backgroundHover:var(--t399);--backgroundPress:var(--t397);--backgroundFocus:var(--t403);--backgroundActive:var(--t398);--borderColor:var(--t400);--borderColorHover:var(--t401);--borderColorFocus:var(--t400);--borderColorPress:var(--t399);--color01:var(--t410);--color0075:var(--t411);--color005:var(--t412);--color0025:var(--t413);--color002:var(--t414);--color001:var(--t415);--background01:var(--t416);--background0075:var(--t417);--background005:var(--t418);--background0025:var(--t419);--background002:var(--t420);--background001:var(--t421);--background02:var(--t389);--background04:var(--t390);--background06:var(--t391);--background08:var(--t392);--outlineColor:var(--t422);}
|
|
1656
1668
|
}
|
|
1657
|
-
:root.t_dark .t_orange_SwitchThumb, :root.t_dark .t_orange_Tooltip, :root.t_dark .t_orange_accent, :root.t_light .t_dark .t_orange_SwitchThumb, :root.t_light .t_dark .t_orange_Tooltip, :root.t_light .t_dark .t_orange_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1669
|
+
:root.t_dark .t_orange_SwitchThumb, :root.t_dark .t_orange_Tooltip, :root.t_dark .t_orange_accent, :root.t_light .t_dark .t_orange_SwitchThumb, :root.t_light .t_dark .t_orange_Tooltip, :root.t_light .t_dark .t_orange_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t405);--background02:var(--t389);--background04:var(--t390);--background06:var(--t391);--background08:var(--t392);--color1:var(--t404);--color2:var(--t403);--color3:var(--t402);--color4:var(--t401);--color5:var(--t400);--color6:var(--t399);--color7:var(--t398);--color8:var(--t397);--color9:var(--t396);--color10:var(--t395);--color11:var(--t394);--color12:var(--t393);--color0:var(--t388);--color02:var(--t423);--color04:var(--t424);--color06:var(--t425);--color08:var(--t426);--color:var(--t393);--colorHover:var(--t426);--colorPress:var(--t393);--colorFocus:var(--t394);--background:var(--t403);--backgroundHover:var(--t402);--backgroundPress:var(--t404);--backgroundFocus:var(--t402);--backgroundActive:var(--t403);--borderColor:var(--t401);--borderColorHover:var(--t400);--borderColorFocus:var(--t401);--borderColorPress:var(--t402);--placeholderColor:var(--t396);--colorTransparent:var(--t388);--color01:var(--t410);--color0075:var(--t411);--color005:var(--t412);--color0025:var(--t413);--color002:var(--t414);--color001:var(--t415);--background01:var(--t416);--background0075:var(--t417);--background005:var(--t418);--background0025:var(--t419);--background002:var(--t420);--background001:var(--t421);--outlineColor:var(--t422);}
|
|
1658
1670
|
@media(prefers-color-scheme:dark){
|
|
1659
|
-
.t_orange_SwitchThumb, .t_orange_Tooltip, .t_orange_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1671
|
+
.t_orange_SwitchThumb, .t_orange_Tooltip, .t_orange_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t405);--background02:var(--t389);--background04:var(--t390);--background06:var(--t391);--background08:var(--t392);--color1:var(--t404);--color2:var(--t403);--color3:var(--t402);--color4:var(--t401);--color5:var(--t400);--color6:var(--t399);--color7:var(--t398);--color8:var(--t397);--color9:var(--t396);--color10:var(--t395);--color11:var(--t394);--color12:var(--t393);--color0:var(--t388);--color02:var(--t423);--color04:var(--t424);--color06:var(--t425);--color08:var(--t426);--color:var(--t393);--colorHover:var(--t426);--colorPress:var(--t393);--colorFocus:var(--t394);--background:var(--t403);--backgroundHover:var(--t402);--backgroundPress:var(--t404);--backgroundFocus:var(--t402);--backgroundActive:var(--t403);--borderColor:var(--t401);--borderColorHover:var(--t400);--borderColorFocus:var(--t401);--borderColorPress:var(--t402);--placeholderColor:var(--t396);--colorTransparent:var(--t388);--color01:var(--t410);--color0075:var(--t411);--color005:var(--t412);--color0025:var(--t413);--color002:var(--t414);--color001:var(--t415);--background01:var(--t416);--background0075:var(--t417);--background005:var(--t418);--background0025:var(--t419);--background002:var(--t420);--background001:var(--t421);--outlineColor:var(--t422);}
|
|
1660
1672
|
}
|
|
1661
1673
|
.t_dark_orange_SwitchThumb ::selection, .t_dark_orange_Tooltip ::selection, .t_dark_orange_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1662
|
-
:root.t_dark .t_pink, :root.t_light .t_dark .t_pink, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1674
|
+
:root.t_dark .t_pink, :root.t_light .t_dark .t_pink, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t427);--background02:var(--t428);--background04:var(--t429);--background06:var(--t430);--background08:var(--t431);--color1:var(--t432);--color2:var(--t433);--color3:var(--t434);--color4:var(--t435);--color5:var(--t436);--color6:var(--t437);--color7:var(--t438);--color8:var(--t439);--color9:var(--t440);--color10:var(--t441);--color11:var(--t442);--color12:var(--t443);--color0:var(--t444);--color02:var(--t445);--color04:var(--t446);--color06:var(--t447);--color08:var(--t448);--color:var(--t443);--colorHover:var(--t448);--colorPress:var(--t443);--colorFocus:var(--t442);--background:var(--t433);--backgroundHover:var(--t434);--backgroundPress:var(--t432);--backgroundFocus:var(--t434);--backgroundActive:var(--t433);--borderColor:var(--t435);--borderColorHover:var(--t436);--borderColorFocus:var(--t435);--borderColorPress:var(--t434);--placeholderColor:var(--t440);--colorTransparent:var(--t444);--color01:var(--t449);--color0075:var(--t450);--color005:var(--t451);--color0025:var(--t452);--color002:var(--t453);--color001:var(--t454);--background01:var(--t455);--background0075:var(--t456);--background005:var(--t457);--background0025:var(--t458);--background002:var(--t459);--background001:var(--t460);--outlineColor:var(--t461);}
|
|
1663
1675
|
@media(prefers-color-scheme:dark){
|
|
1664
|
-
.t_pink {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1676
|
+
.t_pink {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t427);--background02:var(--t428);--background04:var(--t429);--background06:var(--t430);--background08:var(--t431);--color1:var(--t432);--color2:var(--t433);--color3:var(--t434);--color4:var(--t435);--color5:var(--t436);--color6:var(--t437);--color7:var(--t438);--color8:var(--t439);--color9:var(--t440);--color10:var(--t441);--color11:var(--t442);--color12:var(--t443);--color0:var(--t444);--color02:var(--t445);--color04:var(--t446);--color06:var(--t447);--color08:var(--t448);--color:var(--t443);--colorHover:var(--t448);--colorPress:var(--t443);--colorFocus:var(--t442);--background:var(--t433);--backgroundHover:var(--t434);--backgroundPress:var(--t432);--backgroundFocus:var(--t434);--backgroundActive:var(--t433);--borderColor:var(--t435);--borderColorHover:var(--t436);--borderColorFocus:var(--t435);--borderColorPress:var(--t434);--placeholderColor:var(--t440);--colorTransparent:var(--t444);--color01:var(--t449);--color0075:var(--t450);--color005:var(--t451);--color0025:var(--t452);--color002:var(--t453);--color001:var(--t454);--background01:var(--t455);--background0075:var(--t456);--background005:var(--t457);--background0025:var(--t458);--background002:var(--t459);--background001:var(--t460);--outlineColor:var(--t461);}
|
|
1665
1677
|
}
|
|
1666
1678
|
.t_dark_pink ::selection{background:var(--color5);color:var(--color11)}
|
|
1667
|
-
:root.t_dark .t_pink_Button, :root.t_dark .t_pink_SliderThumb, :root.t_dark .t_pink_Switch, :root.t_dark .t_pink_surface2, :root.t_light .t_dark .t_pink_Button, :root.t_light .t_dark .t_pink_SliderThumb, :root.t_light .t_dark .t_pink_Switch, :root.t_light .t_dark .t_pink_surface2, .tm_xxt {--color:var(--
|
|
1679
|
+
:root.t_dark .t_pink_Button, :root.t_dark .t_pink_SliderThumb, :root.t_dark .t_pink_Switch, :root.t_dark .t_pink_surface2, :root.t_light .t_dark .t_pink_Button, :root.t_light .t_dark .t_pink_SliderThumb, :root.t_light .t_dark .t_pink_Switch, :root.t_light .t_dark .t_pink_surface2, .tm_xxt {--color:var(--t442);--colorHover:var(--t443);--colorPress:var(--t442);--colorFocus:var(--t441);--background:var(--t435);--backgroundHover:var(--t436);--backgroundPress:var(--t434);--backgroundFocus:var(--t438);--backgroundActive:var(--t435);--borderColor:var(--t437);--borderColorHover:var(--t438);--borderColorFocus:var(--t437);--borderColorPress:var(--t436);--color01:var(--t449);--color0075:var(--t450);--color005:var(--t451);--color0025:var(--t452);--color002:var(--t453);--color001:var(--t454);--background01:var(--t455);--background0075:var(--t456);--background005:var(--t457);--background0025:var(--t458);--background002:var(--t459);--background001:var(--t460);--background02:var(--t428);--background04:var(--t429);--background06:var(--t430);--background08:var(--t431);--outlineColor:var(--t461);}
|
|
1668
1680
|
@media(prefers-color-scheme:dark){
|
|
1669
|
-
.t_pink_Button, .t_pink_SliderThumb, .t_pink_Switch, .t_pink_surface2 {--color:var(--
|
|
1681
|
+
.t_pink_Button, .t_pink_SliderThumb, .t_pink_Switch, .t_pink_surface2 {--color:var(--t442);--colorHover:var(--t443);--colorPress:var(--t442);--colorFocus:var(--t441);--background:var(--t435);--backgroundHover:var(--t436);--backgroundPress:var(--t434);--backgroundFocus:var(--t438);--backgroundActive:var(--t435);--borderColor:var(--t437);--borderColorHover:var(--t438);--borderColorFocus:var(--t437);--borderColorPress:var(--t436);--color01:var(--t449);--color0075:var(--t450);--color005:var(--t451);--color0025:var(--t452);--color002:var(--t453);--color001:var(--t454);--background01:var(--t455);--background0075:var(--t456);--background005:var(--t457);--background0025:var(--t458);--background002:var(--t459);--background001:var(--t460);--background02:var(--t428);--background04:var(--t429);--background06:var(--t430);--background08:var(--t431);--outlineColor:var(--t461);}
|
|
1670
1682
|
}
|
|
1671
|
-
:root.t_dark .t_pink_Input, :root.t_dark .t_pink_Progress, :root.t_dark .t_pink_Slider, :root.t_dark .t_pink_TextArea, :root.t_dark .t_pink_surface1, :root.t_light .t_dark .t_pink_Input, :root.t_light .t_dark .t_pink_Progress, :root.t_light .t_dark .t_pink_Slider, :root.t_light .t_dark .t_pink_TextArea, :root.t_light .t_dark .t_pink_surface1, .tm_xxt {--color:var(--
|
|
1683
|
+
:root.t_dark .t_pink_Input, :root.t_dark .t_pink_Progress, :root.t_dark .t_pink_Slider, :root.t_dark .t_pink_TextArea, :root.t_dark .t_pink_surface1, :root.t_light .t_dark .t_pink_Input, :root.t_light .t_dark .t_pink_Progress, :root.t_light .t_dark .t_pink_Slider, :root.t_light .t_dark .t_pink_TextArea, :root.t_light .t_dark .t_pink_surface1, .tm_xxt {--color:var(--t442);--colorHover:var(--t443);--colorPress:var(--t442);--colorFocus:var(--t441);--background:var(--t434);--backgroundHover:var(--t435);--backgroundPress:var(--t433);--backgroundFocus:var(--t436);--backgroundActive:var(--t434);--borderColor:var(--t436);--borderColorHover:var(--t437);--borderColorFocus:var(--t436);--borderColorPress:var(--t435);--color01:var(--t449);--color0075:var(--t450);--color005:var(--t451);--color0025:var(--t452);--color002:var(--t453);--color001:var(--t454);--background01:var(--t455);--background0075:var(--t456);--background005:var(--t457);--background0025:var(--t458);--background002:var(--t459);--background001:var(--t460);--background02:var(--t428);--background04:var(--t429);--background06:var(--t430);--background08:var(--t431);--outlineColor:var(--t461);}
|
|
1672
1684
|
@media(prefers-color-scheme:dark){
|
|
1673
|
-
.t_pink_Input, .t_pink_Progress, .t_pink_Slider, .t_pink_TextArea, .t_pink_surface1 {--color:var(--
|
|
1685
|
+
.t_pink_Input, .t_pink_Progress, .t_pink_Slider, .t_pink_TextArea, .t_pink_surface1 {--color:var(--t442);--colorHover:var(--t443);--colorPress:var(--t442);--colorFocus:var(--t441);--background:var(--t434);--backgroundHover:var(--t435);--backgroundPress:var(--t433);--backgroundFocus:var(--t436);--backgroundActive:var(--t434);--borderColor:var(--t436);--borderColorHover:var(--t437);--borderColorFocus:var(--t436);--borderColorPress:var(--t435);--color01:var(--t449);--color0075:var(--t450);--color005:var(--t451);--color0025:var(--t452);--color002:var(--t453);--color001:var(--t454);--background01:var(--t455);--background0075:var(--t456);--background005:var(--t457);--background0025:var(--t458);--background002:var(--t459);--background001:var(--t460);--background02:var(--t428);--background04:var(--t429);--background06:var(--t430);--background08:var(--t431);--outlineColor:var(--t461);}
|
|
1674
1686
|
}
|
|
1675
|
-
:root.t_dark .t_pink_ProgressIndicator, :root.t_dark .t_pink_SliderActive, :root.t_light .t_dark .t_pink_ProgressIndicator, :root.t_light .t_dark .t_pink_SliderActive, .tm_xxt {--color:var(--
|
|
1687
|
+
:root.t_dark .t_pink_ProgressIndicator, :root.t_dark .t_pink_SliderActive, :root.t_light .t_dark .t_pink_ProgressIndicator, :root.t_light .t_dark .t_pink_SliderActive, .tm_xxt {--color:var(--t442);--colorHover:var(--t443);--colorPress:var(--t442);--colorFocus:var(--t441);--background:var(--t437);--backgroundHover:var(--t438);--backgroundPress:var(--t436);--backgroundFocus:var(--t442);--backgroundActive:var(--t437);--borderColor:var(--t439);--borderColorHover:var(--t440);--borderColorFocus:var(--t439);--borderColorPress:var(--t438);--color01:var(--t449);--color0075:var(--t450);--color005:var(--t451);--color0025:var(--t452);--color002:var(--t453);--color001:var(--t454);--background01:var(--t455);--background0075:var(--t456);--background005:var(--t457);--background0025:var(--t458);--background002:var(--t459);--background001:var(--t460);--background02:var(--t428);--background04:var(--t429);--background06:var(--t430);--background08:var(--t431);--outlineColor:var(--t461);}
|
|
1676
1688
|
@media(prefers-color-scheme:dark){
|
|
1677
|
-
.t_pink_ProgressIndicator, .t_pink_SliderActive {--color:var(--
|
|
1689
|
+
.t_pink_ProgressIndicator, .t_pink_SliderActive {--color:var(--t442);--colorHover:var(--t443);--colorPress:var(--t442);--colorFocus:var(--t441);--background:var(--t437);--backgroundHover:var(--t438);--backgroundPress:var(--t436);--backgroundFocus:var(--t442);--backgroundActive:var(--t437);--borderColor:var(--t439);--borderColorHover:var(--t440);--borderColorFocus:var(--t439);--borderColorPress:var(--t438);--color01:var(--t449);--color0075:var(--t450);--color005:var(--t451);--color0025:var(--t452);--color002:var(--t453);--color001:var(--t454);--background01:var(--t455);--background0075:var(--t456);--background005:var(--t457);--background0025:var(--t458);--background002:var(--t459);--background001:var(--t460);--background02:var(--t428);--background04:var(--t429);--background06:var(--t430);--background08:var(--t431);--outlineColor:var(--t461);}
|
|
1678
1690
|
}
|
|
1679
|
-
:root.t_dark .t_pink_SwitchThumb, :root.t_dark .t_pink_Tooltip, :root.t_dark .t_pink_accent, :root.t_light .t_dark .t_pink_SwitchThumb, :root.t_light .t_dark .t_pink_Tooltip, :root.t_light .t_dark .t_pink_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1691
|
+
:root.t_dark .t_pink_SwitchThumb, :root.t_dark .t_pink_Tooltip, :root.t_dark .t_pink_accent, :root.t_light .t_dark .t_pink_SwitchThumb, :root.t_light .t_dark .t_pink_Tooltip, :root.t_light .t_dark .t_pink_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t444);--background02:var(--t428);--background04:var(--t429);--background06:var(--t430);--background08:var(--t431);--color1:var(--t443);--color2:var(--t442);--color3:var(--t441);--color4:var(--t440);--color5:var(--t439);--color6:var(--t438);--color7:var(--t437);--color8:var(--t436);--color9:var(--t435);--color10:var(--t434);--color11:var(--t433);--color12:var(--t432);--color0:var(--t427);--color02:var(--t462);--color04:var(--t463);--color06:var(--t464);--color08:var(--t465);--color:var(--t432);--colorHover:var(--t465);--colorPress:var(--t432);--colorFocus:var(--t433);--background:var(--t442);--backgroundHover:var(--t441);--backgroundPress:var(--t443);--backgroundFocus:var(--t441);--backgroundActive:var(--t442);--borderColor:var(--t440);--borderColorHover:var(--t439);--borderColorFocus:var(--t440);--borderColorPress:var(--t441);--placeholderColor:var(--t435);--colorTransparent:var(--t427);--color01:var(--t449);--color0075:var(--t450);--color005:var(--t451);--color0025:var(--t452);--color002:var(--t453);--color001:var(--t454);--background01:var(--t455);--background0075:var(--t456);--background005:var(--t457);--background0025:var(--t458);--background002:var(--t459);--background001:var(--t460);--outlineColor:var(--t461);}
|
|
1680
1692
|
@media(prefers-color-scheme:dark){
|
|
1681
|
-
.t_pink_SwitchThumb, .t_pink_Tooltip, .t_pink_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1693
|
+
.t_pink_SwitchThumb, .t_pink_Tooltip, .t_pink_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t444);--background02:var(--t428);--background04:var(--t429);--background06:var(--t430);--background08:var(--t431);--color1:var(--t443);--color2:var(--t442);--color3:var(--t441);--color4:var(--t440);--color5:var(--t439);--color6:var(--t438);--color7:var(--t437);--color8:var(--t436);--color9:var(--t435);--color10:var(--t434);--color11:var(--t433);--color12:var(--t432);--color0:var(--t427);--color02:var(--t462);--color04:var(--t463);--color06:var(--t464);--color08:var(--t465);--color:var(--t432);--colorHover:var(--t465);--colorPress:var(--t432);--colorFocus:var(--t433);--background:var(--t442);--backgroundHover:var(--t441);--backgroundPress:var(--t443);--backgroundFocus:var(--t441);--backgroundActive:var(--t442);--borderColor:var(--t440);--borderColorHover:var(--t439);--borderColorFocus:var(--t440);--borderColorPress:var(--t441);--placeholderColor:var(--t435);--colorTransparent:var(--t427);--color01:var(--t449);--color0075:var(--t450);--color005:var(--t451);--color0025:var(--t452);--color002:var(--t453);--color001:var(--t454);--background01:var(--t455);--background0075:var(--t456);--background005:var(--t457);--background0025:var(--t458);--background002:var(--t459);--background001:var(--t460);--outlineColor:var(--t461);}
|
|
1682
1694
|
}
|
|
1683
1695
|
.t_dark_pink_SwitchThumb ::selection, .t_dark_pink_Tooltip ::selection, .t_dark_pink_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1684
|
-
:root.t_dark .t_purple, :root.t_light .t_dark .t_purple, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1696
|
+
:root.t_dark .t_purple, :root.t_light .t_dark .t_purple, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t466);--background02:var(--t467);--background04:var(--t468);--background06:var(--t469);--background08:var(--t470);--color1:var(--t471);--color2:var(--t472);--color3:var(--t473);--color4:var(--t474);--color5:var(--t475);--color6:var(--t476);--color7:var(--t477);--color8:var(--t478);--color9:var(--t479);--color10:var(--t480);--color11:var(--t481);--color12:var(--t482);--color0:var(--t483);--color02:var(--t484);--color04:var(--t485);--color06:var(--t486);--color08:var(--t487);--color:var(--t482);--colorHover:var(--t487);--colorPress:var(--t482);--colorFocus:var(--t481);--background:var(--t472);--backgroundHover:var(--t473);--backgroundPress:var(--t471);--backgroundFocus:var(--t473);--backgroundActive:var(--t472);--borderColor:var(--t474);--borderColorHover:var(--t475);--borderColorFocus:var(--t474);--borderColorPress:var(--t473);--placeholderColor:var(--t479);--colorTransparent:var(--t483);--color01:var(--t488);--color0075:var(--t489);--color005:var(--t490);--color0025:var(--t491);--color002:var(--t492);--color001:var(--t493);--background01:var(--t494);--background0075:var(--t495);--background005:var(--t496);--background0025:var(--t497);--background002:var(--t498);--background001:var(--t499);--outlineColor:var(--t500);}
|
|
1685
1697
|
@media(prefers-color-scheme:dark){
|
|
1686
|
-
.t_purple {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1698
|
+
.t_purple {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t466);--background02:var(--t467);--background04:var(--t468);--background06:var(--t469);--background08:var(--t470);--color1:var(--t471);--color2:var(--t472);--color3:var(--t473);--color4:var(--t474);--color5:var(--t475);--color6:var(--t476);--color7:var(--t477);--color8:var(--t478);--color9:var(--t479);--color10:var(--t480);--color11:var(--t481);--color12:var(--t482);--color0:var(--t483);--color02:var(--t484);--color04:var(--t485);--color06:var(--t486);--color08:var(--t487);--color:var(--t482);--colorHover:var(--t487);--colorPress:var(--t482);--colorFocus:var(--t481);--background:var(--t472);--backgroundHover:var(--t473);--backgroundPress:var(--t471);--backgroundFocus:var(--t473);--backgroundActive:var(--t472);--borderColor:var(--t474);--borderColorHover:var(--t475);--borderColorFocus:var(--t474);--borderColorPress:var(--t473);--placeholderColor:var(--t479);--colorTransparent:var(--t483);--color01:var(--t488);--color0075:var(--t489);--color005:var(--t490);--color0025:var(--t491);--color002:var(--t492);--color001:var(--t493);--background01:var(--t494);--background0075:var(--t495);--background005:var(--t496);--background0025:var(--t497);--background002:var(--t498);--background001:var(--t499);--outlineColor:var(--t500);}
|
|
1687
1699
|
}
|
|
1688
1700
|
.t_dark_purple ::selection{background:var(--color5);color:var(--color11)}
|
|
1689
|
-
:root.t_dark .t_purple_Button, :root.t_dark .t_purple_SliderThumb, :root.t_dark .t_purple_Switch, :root.t_dark .t_purple_surface2, :root.t_light .t_dark .t_purple_Button, :root.t_light .t_dark .t_purple_SliderThumb, :root.t_light .t_dark .t_purple_Switch, :root.t_light .t_dark .t_purple_surface2, .tm_xxt {--color:var(--
|
|
1701
|
+
:root.t_dark .t_purple_Button, :root.t_dark .t_purple_SliderThumb, :root.t_dark .t_purple_Switch, :root.t_dark .t_purple_surface2, :root.t_light .t_dark .t_purple_Button, :root.t_light .t_dark .t_purple_SliderThumb, :root.t_light .t_dark .t_purple_Switch, :root.t_light .t_dark .t_purple_surface2, .tm_xxt {--color:var(--t481);--colorHover:var(--t482);--colorPress:var(--t481);--colorFocus:var(--t480);--background:var(--t474);--backgroundHover:var(--t475);--backgroundPress:var(--t473);--backgroundFocus:var(--t477);--backgroundActive:var(--t474);--borderColor:var(--t476);--borderColorHover:var(--t477);--borderColorFocus:var(--t476);--borderColorPress:var(--t475);--color01:var(--t488);--color0075:var(--t489);--color005:var(--t490);--color0025:var(--t491);--color002:var(--t492);--color001:var(--t493);--background01:var(--t494);--background0075:var(--t495);--background005:var(--t496);--background0025:var(--t497);--background002:var(--t498);--background001:var(--t499);--background02:var(--t467);--background04:var(--t468);--background06:var(--t469);--background08:var(--t470);--outlineColor:var(--t500);}
|
|
1690
1702
|
@media(prefers-color-scheme:dark){
|
|
1691
|
-
.t_purple_Button, .t_purple_SliderThumb, .t_purple_Switch, .t_purple_surface2 {--color:var(--
|
|
1703
|
+
.t_purple_Button, .t_purple_SliderThumb, .t_purple_Switch, .t_purple_surface2 {--color:var(--t481);--colorHover:var(--t482);--colorPress:var(--t481);--colorFocus:var(--t480);--background:var(--t474);--backgroundHover:var(--t475);--backgroundPress:var(--t473);--backgroundFocus:var(--t477);--backgroundActive:var(--t474);--borderColor:var(--t476);--borderColorHover:var(--t477);--borderColorFocus:var(--t476);--borderColorPress:var(--t475);--color01:var(--t488);--color0075:var(--t489);--color005:var(--t490);--color0025:var(--t491);--color002:var(--t492);--color001:var(--t493);--background01:var(--t494);--background0075:var(--t495);--background005:var(--t496);--background0025:var(--t497);--background002:var(--t498);--background001:var(--t499);--background02:var(--t467);--background04:var(--t468);--background06:var(--t469);--background08:var(--t470);--outlineColor:var(--t500);}
|
|
1692
1704
|
}
|
|
1693
|
-
:root.t_dark .t_purple_Input, :root.t_dark .t_purple_Progress, :root.t_dark .t_purple_Slider, :root.t_dark .t_purple_TextArea, :root.t_dark .t_purple_surface1, :root.t_light .t_dark .t_purple_Input, :root.t_light .t_dark .t_purple_Progress, :root.t_light .t_dark .t_purple_Slider, :root.t_light .t_dark .t_purple_TextArea, :root.t_light .t_dark .t_purple_surface1, .tm_xxt {--color:var(--
|
|
1705
|
+
:root.t_dark .t_purple_Input, :root.t_dark .t_purple_Progress, :root.t_dark .t_purple_Slider, :root.t_dark .t_purple_TextArea, :root.t_dark .t_purple_surface1, :root.t_light .t_dark .t_purple_Input, :root.t_light .t_dark .t_purple_Progress, :root.t_light .t_dark .t_purple_Slider, :root.t_light .t_dark .t_purple_TextArea, :root.t_light .t_dark .t_purple_surface1, .tm_xxt {--color:var(--t481);--colorHover:var(--t482);--colorPress:var(--t481);--colorFocus:var(--t480);--background:var(--t473);--backgroundHover:var(--t474);--backgroundPress:var(--t472);--backgroundFocus:var(--t475);--backgroundActive:var(--t473);--borderColor:var(--t475);--borderColorHover:var(--t476);--borderColorFocus:var(--t475);--borderColorPress:var(--t474);--color01:var(--t488);--color0075:var(--t489);--color005:var(--t490);--color0025:var(--t491);--color002:var(--t492);--color001:var(--t493);--background01:var(--t494);--background0075:var(--t495);--background005:var(--t496);--background0025:var(--t497);--background002:var(--t498);--background001:var(--t499);--background02:var(--t467);--background04:var(--t468);--background06:var(--t469);--background08:var(--t470);--outlineColor:var(--t500);}
|
|
1694
1706
|
@media(prefers-color-scheme:dark){
|
|
1695
|
-
.t_purple_Input, .t_purple_Progress, .t_purple_Slider, .t_purple_TextArea, .t_purple_surface1 {--color:var(--
|
|
1707
|
+
.t_purple_Input, .t_purple_Progress, .t_purple_Slider, .t_purple_TextArea, .t_purple_surface1 {--color:var(--t481);--colorHover:var(--t482);--colorPress:var(--t481);--colorFocus:var(--t480);--background:var(--t473);--backgroundHover:var(--t474);--backgroundPress:var(--t472);--backgroundFocus:var(--t475);--backgroundActive:var(--t473);--borderColor:var(--t475);--borderColorHover:var(--t476);--borderColorFocus:var(--t475);--borderColorPress:var(--t474);--color01:var(--t488);--color0075:var(--t489);--color005:var(--t490);--color0025:var(--t491);--color002:var(--t492);--color001:var(--t493);--background01:var(--t494);--background0075:var(--t495);--background005:var(--t496);--background0025:var(--t497);--background002:var(--t498);--background001:var(--t499);--background02:var(--t467);--background04:var(--t468);--background06:var(--t469);--background08:var(--t470);--outlineColor:var(--t500);}
|
|
1696
1708
|
}
|
|
1697
|
-
:root.t_dark .t_purple_ProgressIndicator, :root.t_dark .t_purple_SliderActive, :root.t_light .t_dark .t_purple_ProgressIndicator, :root.t_light .t_dark .t_purple_SliderActive, .tm_xxt {--color:var(--
|
|
1709
|
+
:root.t_dark .t_purple_ProgressIndicator, :root.t_dark .t_purple_SliderActive, :root.t_light .t_dark .t_purple_ProgressIndicator, :root.t_light .t_dark .t_purple_SliderActive, .tm_xxt {--color:var(--t481);--colorHover:var(--t482);--colorPress:var(--t481);--colorFocus:var(--t480);--background:var(--t476);--backgroundHover:var(--t477);--backgroundPress:var(--t475);--backgroundFocus:var(--t481);--backgroundActive:var(--t476);--borderColor:var(--t478);--borderColorHover:var(--t479);--borderColorFocus:var(--t478);--borderColorPress:var(--t477);--color01:var(--t488);--color0075:var(--t489);--color005:var(--t490);--color0025:var(--t491);--color002:var(--t492);--color001:var(--t493);--background01:var(--t494);--background0075:var(--t495);--background005:var(--t496);--background0025:var(--t497);--background002:var(--t498);--background001:var(--t499);--background02:var(--t467);--background04:var(--t468);--background06:var(--t469);--background08:var(--t470);--outlineColor:var(--t500);}
|
|
1698
1710
|
@media(prefers-color-scheme:dark){
|
|
1699
|
-
.t_purple_ProgressIndicator, .t_purple_SliderActive {--color:var(--
|
|
1711
|
+
.t_purple_ProgressIndicator, .t_purple_SliderActive {--color:var(--t481);--colorHover:var(--t482);--colorPress:var(--t481);--colorFocus:var(--t480);--background:var(--t476);--backgroundHover:var(--t477);--backgroundPress:var(--t475);--backgroundFocus:var(--t481);--backgroundActive:var(--t476);--borderColor:var(--t478);--borderColorHover:var(--t479);--borderColorFocus:var(--t478);--borderColorPress:var(--t477);--color01:var(--t488);--color0075:var(--t489);--color005:var(--t490);--color0025:var(--t491);--color002:var(--t492);--color001:var(--t493);--background01:var(--t494);--background0075:var(--t495);--background005:var(--t496);--background0025:var(--t497);--background002:var(--t498);--background001:var(--t499);--background02:var(--t467);--background04:var(--t468);--background06:var(--t469);--background08:var(--t470);--outlineColor:var(--t500);}
|
|
1700
1712
|
}
|
|
1701
|
-
:root.t_dark .t_purple_SwitchThumb, :root.t_dark .t_purple_Tooltip, :root.t_dark .t_purple_accent, :root.t_light .t_dark .t_purple_SwitchThumb, :root.t_light .t_dark .t_purple_Tooltip, :root.t_light .t_dark .t_purple_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1713
|
+
:root.t_dark .t_purple_SwitchThumb, :root.t_dark .t_purple_Tooltip, :root.t_dark .t_purple_accent, :root.t_light .t_dark .t_purple_SwitchThumb, :root.t_light .t_dark .t_purple_Tooltip, :root.t_light .t_dark .t_purple_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t483);--background02:var(--t467);--background04:var(--t468);--background06:var(--t469);--background08:var(--t470);--color1:var(--t482);--color2:var(--t481);--color3:var(--t480);--color4:var(--t479);--color5:var(--t478);--color6:var(--t477);--color7:var(--t476);--color8:var(--t475);--color9:var(--t474);--color10:var(--t473);--color11:var(--t472);--color12:var(--t471);--color0:var(--t466);--color02:var(--t501);--color04:var(--t502);--color06:var(--t503);--color08:var(--t504);--color:var(--t471);--colorHover:var(--t504);--colorPress:var(--t471);--colorFocus:var(--t472);--background:var(--t481);--backgroundHover:var(--t480);--backgroundPress:var(--t482);--backgroundFocus:var(--t480);--backgroundActive:var(--t481);--borderColor:var(--t479);--borderColorHover:var(--t478);--borderColorFocus:var(--t479);--borderColorPress:var(--t480);--placeholderColor:var(--t474);--colorTransparent:var(--t466);--color01:var(--t488);--color0075:var(--t489);--color005:var(--t490);--color0025:var(--t491);--color002:var(--t492);--color001:var(--t493);--background01:var(--t494);--background0075:var(--t495);--background005:var(--t496);--background0025:var(--t497);--background002:var(--t498);--background001:var(--t499);--outlineColor:var(--t500);}
|
|
1702
1714
|
@media(prefers-color-scheme:dark){
|
|
1703
|
-
.t_purple_SwitchThumb, .t_purple_Tooltip, .t_purple_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1715
|
+
.t_purple_SwitchThumb, .t_purple_Tooltip, .t_purple_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t483);--background02:var(--t467);--background04:var(--t468);--background06:var(--t469);--background08:var(--t470);--color1:var(--t482);--color2:var(--t481);--color3:var(--t480);--color4:var(--t479);--color5:var(--t478);--color6:var(--t477);--color7:var(--t476);--color8:var(--t475);--color9:var(--t474);--color10:var(--t473);--color11:var(--t472);--color12:var(--t471);--color0:var(--t466);--color02:var(--t501);--color04:var(--t502);--color06:var(--t503);--color08:var(--t504);--color:var(--t471);--colorHover:var(--t504);--colorPress:var(--t471);--colorFocus:var(--t472);--background:var(--t481);--backgroundHover:var(--t480);--backgroundPress:var(--t482);--backgroundFocus:var(--t480);--backgroundActive:var(--t481);--borderColor:var(--t479);--borderColorHover:var(--t478);--borderColorFocus:var(--t479);--borderColorPress:var(--t480);--placeholderColor:var(--t474);--colorTransparent:var(--t466);--color01:var(--t488);--color0075:var(--t489);--color005:var(--t490);--color0025:var(--t491);--color002:var(--t492);--color001:var(--t493);--background01:var(--t494);--background0075:var(--t495);--background005:var(--t496);--background0025:var(--t497);--background002:var(--t498);--background001:var(--t499);--outlineColor:var(--t500);}
|
|
1704
1716
|
}
|
|
1705
1717
|
.t_dark_purple_SwitchThumb ::selection, .t_dark_purple_Tooltip ::selection, .t_dark_purple_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1706
|
-
:root.t_dark .t_red, :root.t_light .t_dark .t_red, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1718
|
+
:root.t_dark .t_red, :root.t_light .t_dark .t_red, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t505);--background02:var(--t506);--background04:var(--t507);--background06:var(--t508);--background08:var(--t509);--color1:var(--t510);--color2:var(--t511);--color3:var(--t512);--color4:var(--t513);--color5:var(--t514);--color6:var(--t515);--color7:var(--t516);--color8:var(--t517);--color9:var(--t518);--color10:var(--t519);--color11:var(--t520);--color12:var(--t521);--color0:var(--t522);--color02:var(--t523);--color04:var(--t524);--color06:var(--t525);--color08:var(--t526);--color:var(--t521);--colorHover:var(--t526);--colorPress:var(--t521);--colorFocus:var(--t520);--background:var(--t511);--backgroundHover:var(--t512);--backgroundPress:var(--t510);--backgroundFocus:var(--t512);--backgroundActive:var(--t511);--borderColor:var(--t513);--borderColorHover:var(--t514);--borderColorFocus:var(--t513);--borderColorPress:var(--t512);--placeholderColor:var(--t518);--colorTransparent:var(--t522);--color01:var(--t527);--color0075:var(--t528);--color005:var(--t529);--color0025:var(--t530);--color002:var(--t531);--color001:var(--t532);--background01:var(--t533);--background0075:var(--t534);--background005:var(--t535);--background0025:var(--t536);--background002:var(--t537);--background001:var(--t538);--outlineColor:var(--t539);}
|
|
1707
1719
|
@media(prefers-color-scheme:dark){
|
|
1708
|
-
.t_red {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1720
|
+
.t_red {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t505);--background02:var(--t506);--background04:var(--t507);--background06:var(--t508);--background08:var(--t509);--color1:var(--t510);--color2:var(--t511);--color3:var(--t512);--color4:var(--t513);--color5:var(--t514);--color6:var(--t515);--color7:var(--t516);--color8:var(--t517);--color9:var(--t518);--color10:var(--t519);--color11:var(--t520);--color12:var(--t521);--color0:var(--t522);--color02:var(--t523);--color04:var(--t524);--color06:var(--t525);--color08:var(--t526);--color:var(--t521);--colorHover:var(--t526);--colorPress:var(--t521);--colorFocus:var(--t520);--background:var(--t511);--backgroundHover:var(--t512);--backgroundPress:var(--t510);--backgroundFocus:var(--t512);--backgroundActive:var(--t511);--borderColor:var(--t513);--borderColorHover:var(--t514);--borderColorFocus:var(--t513);--borderColorPress:var(--t512);--placeholderColor:var(--t518);--colorTransparent:var(--t522);--color01:var(--t527);--color0075:var(--t528);--color005:var(--t529);--color0025:var(--t530);--color002:var(--t531);--color001:var(--t532);--background01:var(--t533);--background0075:var(--t534);--background005:var(--t535);--background0025:var(--t536);--background002:var(--t537);--background001:var(--t538);--outlineColor:var(--t539);}
|
|
1709
1721
|
}
|
|
1710
1722
|
.t_dark_red ::selection{background:var(--color5);color:var(--color11)}
|
|
1711
|
-
:root.t_dark .t_red_Button, :root.t_dark .t_red_SliderThumb, :root.t_dark .t_red_Switch, :root.t_dark .t_red_surface2, :root.t_light .t_dark .t_red_Button, :root.t_light .t_dark .t_red_SliderThumb, :root.t_light .t_dark .t_red_Switch, :root.t_light .t_dark .t_red_surface2, .tm_xxt {--color:var(--
|
|
1723
|
+
:root.t_dark .t_red_Button, :root.t_dark .t_red_SliderThumb, :root.t_dark .t_red_Switch, :root.t_dark .t_red_surface2, :root.t_light .t_dark .t_red_Button, :root.t_light .t_dark .t_red_SliderThumb, :root.t_light .t_dark .t_red_Switch, :root.t_light .t_dark .t_red_surface2, .tm_xxt {--color:var(--t520);--colorHover:var(--t521);--colorPress:var(--t520);--colorFocus:var(--t519);--background:var(--t513);--backgroundHover:var(--t514);--backgroundPress:var(--t512);--backgroundFocus:var(--t516);--backgroundActive:var(--t513);--borderColor:var(--t515);--borderColorHover:var(--t516);--borderColorFocus:var(--t515);--borderColorPress:var(--t514);--color01:var(--t527);--color0075:var(--t528);--color005:var(--t529);--color0025:var(--t530);--color002:var(--t531);--color001:var(--t532);--background01:var(--t533);--background0075:var(--t534);--background005:var(--t535);--background0025:var(--t536);--background002:var(--t537);--background001:var(--t538);--background02:var(--t506);--background04:var(--t507);--background06:var(--t508);--background08:var(--t509);--outlineColor:var(--t539);}
|
|
1712
1724
|
@media(prefers-color-scheme:dark){
|
|
1713
|
-
.t_red_Button, .t_red_SliderThumb, .t_red_Switch, .t_red_surface2 {--color:var(--
|
|
1725
|
+
.t_red_Button, .t_red_SliderThumb, .t_red_Switch, .t_red_surface2 {--color:var(--t520);--colorHover:var(--t521);--colorPress:var(--t520);--colorFocus:var(--t519);--background:var(--t513);--backgroundHover:var(--t514);--backgroundPress:var(--t512);--backgroundFocus:var(--t516);--backgroundActive:var(--t513);--borderColor:var(--t515);--borderColorHover:var(--t516);--borderColorFocus:var(--t515);--borderColorPress:var(--t514);--color01:var(--t527);--color0075:var(--t528);--color005:var(--t529);--color0025:var(--t530);--color002:var(--t531);--color001:var(--t532);--background01:var(--t533);--background0075:var(--t534);--background005:var(--t535);--background0025:var(--t536);--background002:var(--t537);--background001:var(--t538);--background02:var(--t506);--background04:var(--t507);--background06:var(--t508);--background08:var(--t509);--outlineColor:var(--t539);}
|
|
1714
1726
|
}
|
|
1715
|
-
:root.t_dark .t_red_Input, :root.t_dark .t_red_Progress, :root.t_dark .t_red_Slider, :root.t_dark .t_red_TextArea, :root.t_dark .t_red_surface1, :root.t_light .t_dark .t_red_Input, :root.t_light .t_dark .t_red_Progress, :root.t_light .t_dark .t_red_Slider, :root.t_light .t_dark .t_red_TextArea, :root.t_light .t_dark .t_red_surface1, .tm_xxt {--color:var(--
|
|
1727
|
+
:root.t_dark .t_red_Input, :root.t_dark .t_red_Progress, :root.t_dark .t_red_Slider, :root.t_dark .t_red_TextArea, :root.t_dark .t_red_surface1, :root.t_light .t_dark .t_red_Input, :root.t_light .t_dark .t_red_Progress, :root.t_light .t_dark .t_red_Slider, :root.t_light .t_dark .t_red_TextArea, :root.t_light .t_dark .t_red_surface1, .tm_xxt {--color:var(--t520);--colorHover:var(--t521);--colorPress:var(--t520);--colorFocus:var(--t519);--background:var(--t512);--backgroundHover:var(--t513);--backgroundPress:var(--t511);--backgroundFocus:var(--t514);--backgroundActive:var(--t512);--borderColor:var(--t514);--borderColorHover:var(--t515);--borderColorFocus:var(--t514);--borderColorPress:var(--t513);--color01:var(--t527);--color0075:var(--t528);--color005:var(--t529);--color0025:var(--t530);--color002:var(--t531);--color001:var(--t532);--background01:var(--t533);--background0075:var(--t534);--background005:var(--t535);--background0025:var(--t536);--background002:var(--t537);--background001:var(--t538);--background02:var(--t506);--background04:var(--t507);--background06:var(--t508);--background08:var(--t509);--outlineColor:var(--t539);}
|
|
1716
1728
|
@media(prefers-color-scheme:dark){
|
|
1717
|
-
.t_red_Input, .t_red_Progress, .t_red_Slider, .t_red_TextArea, .t_red_surface1 {--color:var(--
|
|
1729
|
+
.t_red_Input, .t_red_Progress, .t_red_Slider, .t_red_TextArea, .t_red_surface1 {--color:var(--t520);--colorHover:var(--t521);--colorPress:var(--t520);--colorFocus:var(--t519);--background:var(--t512);--backgroundHover:var(--t513);--backgroundPress:var(--t511);--backgroundFocus:var(--t514);--backgroundActive:var(--t512);--borderColor:var(--t514);--borderColorHover:var(--t515);--borderColorFocus:var(--t514);--borderColorPress:var(--t513);--color01:var(--t527);--color0075:var(--t528);--color005:var(--t529);--color0025:var(--t530);--color002:var(--t531);--color001:var(--t532);--background01:var(--t533);--background0075:var(--t534);--background005:var(--t535);--background0025:var(--t536);--background002:var(--t537);--background001:var(--t538);--background02:var(--t506);--background04:var(--t507);--background06:var(--t508);--background08:var(--t509);--outlineColor:var(--t539);}
|
|
1718
1730
|
}
|
|
1719
|
-
:root.t_dark .t_red_ProgressIndicator, :root.t_dark .t_red_SliderActive, :root.t_light .t_dark .t_red_ProgressIndicator, :root.t_light .t_dark .t_red_SliderActive, .tm_xxt {--color:var(--
|
|
1731
|
+
:root.t_dark .t_red_ProgressIndicator, :root.t_dark .t_red_SliderActive, :root.t_light .t_dark .t_red_ProgressIndicator, :root.t_light .t_dark .t_red_SliderActive, .tm_xxt {--color:var(--t520);--colorHover:var(--t521);--colorPress:var(--t520);--colorFocus:var(--t519);--background:var(--t515);--backgroundHover:var(--t516);--backgroundPress:var(--t514);--backgroundFocus:var(--t520);--backgroundActive:var(--t515);--borderColor:var(--t517);--borderColorHover:var(--t518);--borderColorFocus:var(--t517);--borderColorPress:var(--t516);--color01:var(--t527);--color0075:var(--t528);--color005:var(--t529);--color0025:var(--t530);--color002:var(--t531);--color001:var(--t532);--background01:var(--t533);--background0075:var(--t534);--background005:var(--t535);--background0025:var(--t536);--background002:var(--t537);--background001:var(--t538);--background02:var(--t506);--background04:var(--t507);--background06:var(--t508);--background08:var(--t509);--outlineColor:var(--t539);}
|
|
1720
1732
|
@media(prefers-color-scheme:dark){
|
|
1721
|
-
.t_red_ProgressIndicator, .t_red_SliderActive {--color:var(--
|
|
1733
|
+
.t_red_ProgressIndicator, .t_red_SliderActive {--color:var(--t520);--colorHover:var(--t521);--colorPress:var(--t520);--colorFocus:var(--t519);--background:var(--t515);--backgroundHover:var(--t516);--backgroundPress:var(--t514);--backgroundFocus:var(--t520);--backgroundActive:var(--t515);--borderColor:var(--t517);--borderColorHover:var(--t518);--borderColorFocus:var(--t517);--borderColorPress:var(--t516);--color01:var(--t527);--color0075:var(--t528);--color005:var(--t529);--color0025:var(--t530);--color002:var(--t531);--color001:var(--t532);--background01:var(--t533);--background0075:var(--t534);--background005:var(--t535);--background0025:var(--t536);--background002:var(--t537);--background001:var(--t538);--background02:var(--t506);--background04:var(--t507);--background06:var(--t508);--background08:var(--t509);--outlineColor:var(--t539);}
|
|
1722
1734
|
}
|
|
1723
|
-
:root.t_dark .t_red_SwitchThumb, :root.t_dark .t_red_Tooltip, :root.t_dark .t_red_accent, :root.t_light .t_dark .t_red_SwitchThumb, :root.t_light .t_dark .t_red_Tooltip, :root.t_light .t_dark .t_red_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1735
|
+
:root.t_dark .t_red_SwitchThumb, :root.t_dark .t_red_Tooltip, :root.t_dark .t_red_accent, :root.t_light .t_dark .t_red_SwitchThumb, :root.t_light .t_dark .t_red_Tooltip, :root.t_light .t_dark .t_red_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t522);--background02:var(--t506);--background04:var(--t507);--background06:var(--t508);--background08:var(--t509);--color1:var(--t521);--color2:var(--t520);--color3:var(--t519);--color4:var(--t518);--color5:var(--t517);--color6:var(--t516);--color7:var(--t515);--color8:var(--t514);--color9:var(--t513);--color10:var(--t512);--color11:var(--t511);--color12:var(--t510);--color0:var(--t505);--color02:var(--t540);--color04:var(--t541);--color06:var(--t542);--color08:var(--t543);--color:var(--t510);--colorHover:var(--t543);--colorPress:var(--t510);--colorFocus:var(--t511);--background:var(--t520);--backgroundHover:var(--t519);--backgroundPress:var(--t521);--backgroundFocus:var(--t519);--backgroundActive:var(--t520);--borderColor:var(--t518);--borderColorHover:var(--t517);--borderColorFocus:var(--t518);--borderColorPress:var(--t519);--placeholderColor:var(--t513);--colorTransparent:var(--t505);--color01:var(--t527);--color0075:var(--t528);--color005:var(--t529);--color0025:var(--t530);--color002:var(--t531);--color001:var(--t532);--background01:var(--t533);--background0075:var(--t534);--background005:var(--t535);--background0025:var(--t536);--background002:var(--t537);--background001:var(--t538);--outlineColor:var(--t539);}
|
|
1724
1736
|
@media(prefers-color-scheme:dark){
|
|
1725
|
-
.t_red_SwitchThumb, .t_red_Tooltip, .t_red_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1737
|
+
.t_red_SwitchThumb, .t_red_Tooltip, .t_red_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t522);--background02:var(--t506);--background04:var(--t507);--background06:var(--t508);--background08:var(--t509);--color1:var(--t521);--color2:var(--t520);--color3:var(--t519);--color4:var(--t518);--color5:var(--t517);--color6:var(--t516);--color7:var(--t515);--color8:var(--t514);--color9:var(--t513);--color10:var(--t512);--color11:var(--t511);--color12:var(--t510);--color0:var(--t505);--color02:var(--t540);--color04:var(--t541);--color06:var(--t542);--color08:var(--t543);--color:var(--t510);--colorHover:var(--t543);--colorPress:var(--t510);--colorFocus:var(--t511);--background:var(--t520);--backgroundHover:var(--t519);--backgroundPress:var(--t521);--backgroundFocus:var(--t519);--backgroundActive:var(--t520);--borderColor:var(--t518);--borderColorHover:var(--t517);--borderColorFocus:var(--t518);--borderColorPress:var(--t519);--placeholderColor:var(--t513);--colorTransparent:var(--t505);--color01:var(--t527);--color0075:var(--t528);--color005:var(--t529);--color0025:var(--t530);--color002:var(--t531);--color001:var(--t532);--background01:var(--t533);--background0075:var(--t534);--background005:var(--t535);--background0025:var(--t536);--background002:var(--t537);--background001:var(--t538);--outlineColor:var(--t539);}
|
|
1726
1738
|
}
|
|
1727
1739
|
.t_dark_red_SwitchThumb ::selection, .t_dark_red_Tooltip ::selection, .t_dark_red_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1728
|
-
:root.t_dark .t_teal, :root.t_light .t_dark .t_teal, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1740
|
+
:root.t_dark .t_teal, :root.t_light .t_dark .t_teal, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t544);--background02:var(--t545);--background04:var(--t546);--background06:var(--t547);--background08:var(--t548);--color1:var(--t549);--color2:var(--t550);--color3:var(--t551);--color4:var(--t552);--color5:var(--t553);--color6:var(--t554);--color7:var(--t555);--color8:var(--t556);--color9:var(--t557);--color10:var(--t558);--color11:var(--t559);--color12:var(--t560);--color0:var(--t561);--color02:var(--t562);--color04:var(--t563);--color06:var(--t564);--color08:var(--t565);--color:var(--t560);--colorHover:var(--t565);--colorPress:var(--t560);--colorFocus:var(--t559);--background:var(--t550);--backgroundHover:var(--t551);--backgroundPress:var(--t549);--backgroundFocus:var(--t551);--backgroundActive:var(--t550);--borderColor:var(--t552);--borderColorHover:var(--t553);--borderColorFocus:var(--t552);--borderColorPress:var(--t551);--placeholderColor:var(--t557);--colorTransparent:var(--t561);--color01:var(--t566);--color0075:var(--t567);--color005:var(--t568);--color0025:var(--t569);--color002:var(--t570);--color001:var(--t571);--background01:var(--t572);--background0075:var(--t573);--background005:var(--t574);--background0025:var(--t575);--background002:var(--t576);--background001:var(--t577);--outlineColor:var(--t578);}
|
|
1729
1741
|
@media(prefers-color-scheme:dark){
|
|
1730
|
-
.t_teal {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1742
|
+
.t_teal {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t544);--background02:var(--t545);--background04:var(--t546);--background06:var(--t547);--background08:var(--t548);--color1:var(--t549);--color2:var(--t550);--color3:var(--t551);--color4:var(--t552);--color5:var(--t553);--color6:var(--t554);--color7:var(--t555);--color8:var(--t556);--color9:var(--t557);--color10:var(--t558);--color11:var(--t559);--color12:var(--t560);--color0:var(--t561);--color02:var(--t562);--color04:var(--t563);--color06:var(--t564);--color08:var(--t565);--color:var(--t560);--colorHover:var(--t565);--colorPress:var(--t560);--colorFocus:var(--t559);--background:var(--t550);--backgroundHover:var(--t551);--backgroundPress:var(--t549);--backgroundFocus:var(--t551);--backgroundActive:var(--t550);--borderColor:var(--t552);--borderColorHover:var(--t553);--borderColorFocus:var(--t552);--borderColorPress:var(--t551);--placeholderColor:var(--t557);--colorTransparent:var(--t561);--color01:var(--t566);--color0075:var(--t567);--color005:var(--t568);--color0025:var(--t569);--color002:var(--t570);--color001:var(--t571);--background01:var(--t572);--background0075:var(--t573);--background005:var(--t574);--background0025:var(--t575);--background002:var(--t576);--background001:var(--t577);--outlineColor:var(--t578);}
|
|
1731
1743
|
}
|
|
1732
1744
|
.t_dark_teal ::selection{background:var(--color5);color:var(--color11)}
|
|
1733
|
-
:root.t_dark .t_teal_Button, :root.t_dark .t_teal_SliderThumb, :root.t_dark .t_teal_Switch, :root.t_dark .t_teal_surface2, :root.t_light .t_dark .t_teal_Button, :root.t_light .t_dark .t_teal_SliderThumb, :root.t_light .t_dark .t_teal_Switch, :root.t_light .t_dark .t_teal_surface2, .tm_xxt {--color:var(--
|
|
1745
|
+
:root.t_dark .t_teal_Button, :root.t_dark .t_teal_SliderThumb, :root.t_dark .t_teal_Switch, :root.t_dark .t_teal_surface2, :root.t_light .t_dark .t_teal_Button, :root.t_light .t_dark .t_teal_SliderThumb, :root.t_light .t_dark .t_teal_Switch, :root.t_light .t_dark .t_teal_surface2, .tm_xxt {--color:var(--t559);--colorHover:var(--t560);--colorPress:var(--t559);--colorFocus:var(--t558);--background:var(--t552);--backgroundHover:var(--t553);--backgroundPress:var(--t551);--backgroundFocus:var(--t555);--backgroundActive:var(--t552);--borderColor:var(--t554);--borderColorHover:var(--t555);--borderColorFocus:var(--t554);--borderColorPress:var(--t553);--color01:var(--t566);--color0075:var(--t567);--color005:var(--t568);--color0025:var(--t569);--color002:var(--t570);--color001:var(--t571);--background01:var(--t572);--background0075:var(--t573);--background005:var(--t574);--background0025:var(--t575);--background002:var(--t576);--background001:var(--t577);--background02:var(--t545);--background04:var(--t546);--background06:var(--t547);--background08:var(--t548);--outlineColor:var(--t578);}
|
|
1734
1746
|
@media(prefers-color-scheme:dark){
|
|
1735
|
-
.t_teal_Button, .t_teal_SliderThumb, .t_teal_Switch, .t_teal_surface2 {--color:var(--
|
|
1747
|
+
.t_teal_Button, .t_teal_SliderThumb, .t_teal_Switch, .t_teal_surface2 {--color:var(--t559);--colorHover:var(--t560);--colorPress:var(--t559);--colorFocus:var(--t558);--background:var(--t552);--backgroundHover:var(--t553);--backgroundPress:var(--t551);--backgroundFocus:var(--t555);--backgroundActive:var(--t552);--borderColor:var(--t554);--borderColorHover:var(--t555);--borderColorFocus:var(--t554);--borderColorPress:var(--t553);--color01:var(--t566);--color0075:var(--t567);--color005:var(--t568);--color0025:var(--t569);--color002:var(--t570);--color001:var(--t571);--background01:var(--t572);--background0075:var(--t573);--background005:var(--t574);--background0025:var(--t575);--background002:var(--t576);--background001:var(--t577);--background02:var(--t545);--background04:var(--t546);--background06:var(--t547);--background08:var(--t548);--outlineColor:var(--t578);}
|
|
1736
1748
|
}
|
|
1737
|
-
:root.t_dark .t_teal_Input, :root.t_dark .t_teal_Progress, :root.t_dark .t_teal_Slider, :root.t_dark .t_teal_TextArea, :root.t_dark .t_teal_surface1, :root.t_light .t_dark .t_teal_Input, :root.t_light .t_dark .t_teal_Progress, :root.t_light .t_dark .t_teal_Slider, :root.t_light .t_dark .t_teal_TextArea, :root.t_light .t_dark .t_teal_surface1, .tm_xxt {--color:var(--
|
|
1749
|
+
:root.t_dark .t_teal_Input, :root.t_dark .t_teal_Progress, :root.t_dark .t_teal_Slider, :root.t_dark .t_teal_TextArea, :root.t_dark .t_teal_surface1, :root.t_light .t_dark .t_teal_Input, :root.t_light .t_dark .t_teal_Progress, :root.t_light .t_dark .t_teal_Slider, :root.t_light .t_dark .t_teal_TextArea, :root.t_light .t_dark .t_teal_surface1, .tm_xxt {--color:var(--t559);--colorHover:var(--t560);--colorPress:var(--t559);--colorFocus:var(--t558);--background:var(--t551);--backgroundHover:var(--t552);--backgroundPress:var(--t550);--backgroundFocus:var(--t553);--backgroundActive:var(--t551);--borderColor:var(--t553);--borderColorHover:var(--t554);--borderColorFocus:var(--t553);--borderColorPress:var(--t552);--color01:var(--t566);--color0075:var(--t567);--color005:var(--t568);--color0025:var(--t569);--color002:var(--t570);--color001:var(--t571);--background01:var(--t572);--background0075:var(--t573);--background005:var(--t574);--background0025:var(--t575);--background002:var(--t576);--background001:var(--t577);--background02:var(--t545);--background04:var(--t546);--background06:var(--t547);--background08:var(--t548);--outlineColor:var(--t578);}
|
|
1738
1750
|
@media(prefers-color-scheme:dark){
|
|
1739
|
-
.t_teal_Input, .t_teal_Progress, .t_teal_Slider, .t_teal_TextArea, .t_teal_surface1 {--color:var(--
|
|
1751
|
+
.t_teal_Input, .t_teal_Progress, .t_teal_Slider, .t_teal_TextArea, .t_teal_surface1 {--color:var(--t559);--colorHover:var(--t560);--colorPress:var(--t559);--colorFocus:var(--t558);--background:var(--t551);--backgroundHover:var(--t552);--backgroundPress:var(--t550);--backgroundFocus:var(--t553);--backgroundActive:var(--t551);--borderColor:var(--t553);--borderColorHover:var(--t554);--borderColorFocus:var(--t553);--borderColorPress:var(--t552);--color01:var(--t566);--color0075:var(--t567);--color005:var(--t568);--color0025:var(--t569);--color002:var(--t570);--color001:var(--t571);--background01:var(--t572);--background0075:var(--t573);--background005:var(--t574);--background0025:var(--t575);--background002:var(--t576);--background001:var(--t577);--background02:var(--t545);--background04:var(--t546);--background06:var(--t547);--background08:var(--t548);--outlineColor:var(--t578);}
|
|
1740
1752
|
}
|
|
1741
|
-
:root.t_dark .t_teal_ProgressIndicator, :root.t_dark .t_teal_SliderActive, :root.t_light .t_dark .t_teal_ProgressIndicator, :root.t_light .t_dark .t_teal_SliderActive, .tm_xxt {--color:var(--
|
|
1753
|
+
:root.t_dark .t_teal_ProgressIndicator, :root.t_dark .t_teal_SliderActive, :root.t_light .t_dark .t_teal_ProgressIndicator, :root.t_light .t_dark .t_teal_SliderActive, .tm_xxt {--color:var(--t559);--colorHover:var(--t560);--colorPress:var(--t559);--colorFocus:var(--t558);--background:var(--t554);--backgroundHover:var(--t555);--backgroundPress:var(--t553);--backgroundFocus:var(--t559);--backgroundActive:var(--t554);--borderColor:var(--t556);--borderColorHover:var(--t557);--borderColorFocus:var(--t556);--borderColorPress:var(--t555);--color01:var(--t566);--color0075:var(--t567);--color005:var(--t568);--color0025:var(--t569);--color002:var(--t570);--color001:var(--t571);--background01:var(--t572);--background0075:var(--t573);--background005:var(--t574);--background0025:var(--t575);--background002:var(--t576);--background001:var(--t577);--background02:var(--t545);--background04:var(--t546);--background06:var(--t547);--background08:var(--t548);--outlineColor:var(--t578);}
|
|
1742
1754
|
@media(prefers-color-scheme:dark){
|
|
1743
|
-
.t_teal_ProgressIndicator, .t_teal_SliderActive {--color:var(--
|
|
1755
|
+
.t_teal_ProgressIndicator, .t_teal_SliderActive {--color:var(--t559);--colorHover:var(--t560);--colorPress:var(--t559);--colorFocus:var(--t558);--background:var(--t554);--backgroundHover:var(--t555);--backgroundPress:var(--t553);--backgroundFocus:var(--t559);--backgroundActive:var(--t554);--borderColor:var(--t556);--borderColorHover:var(--t557);--borderColorFocus:var(--t556);--borderColorPress:var(--t555);--color01:var(--t566);--color0075:var(--t567);--color005:var(--t568);--color0025:var(--t569);--color002:var(--t570);--color001:var(--t571);--background01:var(--t572);--background0075:var(--t573);--background005:var(--t574);--background0025:var(--t575);--background002:var(--t576);--background001:var(--t577);--background02:var(--t545);--background04:var(--t546);--background06:var(--t547);--background08:var(--t548);--outlineColor:var(--t578);}
|
|
1744
1756
|
}
|
|
1745
|
-
:root.t_dark .t_teal_SwitchThumb, :root.t_dark .t_teal_Tooltip, :root.t_dark .t_teal_accent, :root.t_light .t_dark .t_teal_SwitchThumb, :root.t_light .t_dark .t_teal_Tooltip, :root.t_light .t_dark .t_teal_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1757
|
+
:root.t_dark .t_teal_SwitchThumb, :root.t_dark .t_teal_Tooltip, :root.t_dark .t_teal_accent, :root.t_light .t_dark .t_teal_SwitchThumb, :root.t_light .t_dark .t_teal_Tooltip, :root.t_light .t_dark .t_teal_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t561);--background02:var(--t545);--background04:var(--t546);--background06:var(--t547);--background08:var(--t548);--color1:var(--t560);--color2:var(--t559);--color3:var(--t558);--color4:var(--t557);--color5:var(--t556);--color6:var(--t555);--color7:var(--t554);--color8:var(--t553);--color9:var(--t552);--color10:var(--t551);--color11:var(--t550);--color12:var(--t549);--color0:var(--t544);--color02:var(--t579);--color04:var(--t580);--color06:var(--t581);--color08:var(--t582);--color:var(--t549);--colorHover:var(--t582);--colorPress:var(--t549);--colorFocus:var(--t550);--background:var(--t559);--backgroundHover:var(--t558);--backgroundPress:var(--t560);--backgroundFocus:var(--t558);--backgroundActive:var(--t559);--borderColor:var(--t557);--borderColorHover:var(--t556);--borderColorFocus:var(--t557);--borderColorPress:var(--t558);--placeholderColor:var(--t552);--colorTransparent:var(--t544);--color01:var(--t566);--color0075:var(--t567);--color005:var(--t568);--color0025:var(--t569);--color002:var(--t570);--color001:var(--t571);--background01:var(--t572);--background0075:var(--t573);--background005:var(--t574);--background0025:var(--t575);--background002:var(--t576);--background001:var(--t577);--outlineColor:var(--t578);}
|
|
1746
1758
|
@media(prefers-color-scheme:dark){
|
|
1747
|
-
.t_teal_SwitchThumb, .t_teal_Tooltip, .t_teal_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1759
|
+
.t_teal_SwitchThumb, .t_teal_Tooltip, .t_teal_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t561);--background02:var(--t545);--background04:var(--t546);--background06:var(--t547);--background08:var(--t548);--color1:var(--t560);--color2:var(--t559);--color3:var(--t558);--color4:var(--t557);--color5:var(--t556);--color6:var(--t555);--color7:var(--t554);--color8:var(--t553);--color9:var(--t552);--color10:var(--t551);--color11:var(--t550);--color12:var(--t549);--color0:var(--t544);--color02:var(--t579);--color04:var(--t580);--color06:var(--t581);--color08:var(--t582);--color:var(--t549);--colorHover:var(--t582);--colorPress:var(--t549);--colorFocus:var(--t550);--background:var(--t559);--backgroundHover:var(--t558);--backgroundPress:var(--t560);--backgroundFocus:var(--t558);--backgroundActive:var(--t559);--borderColor:var(--t557);--borderColorHover:var(--t556);--borderColorFocus:var(--t557);--borderColorPress:var(--t558);--placeholderColor:var(--t552);--colorTransparent:var(--t544);--color01:var(--t566);--color0075:var(--t567);--color005:var(--t568);--color0025:var(--t569);--color002:var(--t570);--color001:var(--t571);--background01:var(--t572);--background0075:var(--t573);--background005:var(--t574);--background0025:var(--t575);--background002:var(--t576);--background001:var(--t577);--outlineColor:var(--t578);}
|
|
1748
1760
|
}
|
|
1749
1761
|
.t_dark_teal_SwitchThumb ::selection, .t_dark_teal_Tooltip ::selection, .t_dark_teal_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1750
|
-
:root.t_dark .t_white, :root.t_light .t_dark .t_white, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t18);--background02:var(--
|
|
1762
|
+
:root.t_dark .t_white, :root.t_light .t_dark .t_white, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t18);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--color1:var(--t23);--color2:var(--t191);--color3:var(--t1);--color4:var(--t192);--color5:var(--t16);--color6:var(--t193);--color7:var(--t194);--color8:var(--t195);--color9:var(--t196);--color10:var(--t0);--color11:var(--t24);--color12:var(--t197);--color0:var(--t219);--color02:var(--t220);--color04:var(--t221);--color06:var(--t222);--color08:var(--t223);--color:var(--t197);--colorHover:var(--t223);--colorPress:var(--t197);--colorFocus:var(--t24);--background:var(--t191);--backgroundHover:var(--t1);--backgroundPress:var(--t23);--backgroundFocus:var(--t1);--backgroundActive:var(--t191);--borderColor:var(--t192);--borderColorHover:var(--t16);--borderColorFocus:var(--t192);--borderColorPress:var(--t1);--placeholderColor:var(--t196);--colorTransparent:var(--t219);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--outlineColor:var(--t236);}
|
|
1751
1763
|
@media(prefers-color-scheme:dark){
|
|
1752
|
-
.t_white {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t18);--background02:var(--
|
|
1764
|
+
.t_white {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t18);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--color1:var(--t23);--color2:var(--t191);--color3:var(--t1);--color4:var(--t192);--color5:var(--t16);--color6:var(--t193);--color7:var(--t194);--color8:var(--t195);--color9:var(--t196);--color10:var(--t0);--color11:var(--t24);--color12:var(--t197);--color0:var(--t219);--color02:var(--t220);--color04:var(--t221);--color06:var(--t222);--color08:var(--t223);--color:var(--t197);--colorHover:var(--t223);--colorPress:var(--t197);--colorFocus:var(--t24);--background:var(--t191);--backgroundHover:var(--t1);--backgroundPress:var(--t23);--backgroundFocus:var(--t1);--backgroundActive:var(--t191);--borderColor:var(--t192);--borderColorHover:var(--t16);--borderColorFocus:var(--t192);--borderColorPress:var(--t1);--placeholderColor:var(--t196);--colorTransparent:var(--t219);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--outlineColor:var(--t236);}
|
|
1753
1765
|
}
|
|
1754
1766
|
.t_dark_white ::selection{background:var(--color5);color:var(--color11)}
|
|
1755
|
-
:root.t_dark .t_white_Button, :root.t_dark .t_white_SliderThumb, :root.t_dark .t_white_Switch, :root.t_dark .t_white_surface2, :root.t_light .t_dark .t_white_Button, :root.t_light .t_dark .t_white_SliderThumb, :root.t_light .t_dark .t_white_Switch, :root.t_light .t_dark .t_white_surface2, .tm_xxt {--color:var(--
|
|
1767
|
+
:root.t_dark .t_white_Button, :root.t_dark .t_white_SliderThumb, :root.t_dark .t_white_Switch, :root.t_dark .t_white_surface2, :root.t_light .t_dark .t_white_Button, :root.t_light .t_dark .t_white_SliderThumb, :root.t_light .t_dark .t_white_Switch, :root.t_light .t_dark .t_white_surface2, .tm_xxt {--color:var(--t24);--colorHover:var(--t197);--colorPress:var(--t24);--colorFocus:var(--t0);--background:var(--t192);--backgroundHover:var(--t16);--backgroundPress:var(--t1);--backgroundFocus:var(--t194);--backgroundActive:var(--t192);--borderColor:var(--t193);--borderColorHover:var(--t194);--borderColorFocus:var(--t193);--borderColorPress:var(--t16);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--outlineColor:var(--t236);}
|
|
1756
1768
|
@media(prefers-color-scheme:dark){
|
|
1757
|
-
.t_white_Button, .t_white_SliderThumb, .t_white_Switch, .t_white_surface2 {--color:var(--
|
|
1769
|
+
.t_white_Button, .t_white_SliderThumb, .t_white_Switch, .t_white_surface2 {--color:var(--t24);--colorHover:var(--t197);--colorPress:var(--t24);--colorFocus:var(--t0);--background:var(--t192);--backgroundHover:var(--t16);--backgroundPress:var(--t1);--backgroundFocus:var(--t194);--backgroundActive:var(--t192);--borderColor:var(--t193);--borderColorHover:var(--t194);--borderColorFocus:var(--t193);--borderColorPress:var(--t16);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--outlineColor:var(--t236);}
|
|
1758
1770
|
}
|
|
1759
|
-
:root.t_dark .t_white_Input, :root.t_dark .t_white_Progress, :root.t_dark .t_white_Slider, :root.t_dark .t_white_TextArea, :root.t_dark .t_white_surface1, :root.t_light .t_dark .t_white_Input, :root.t_light .t_dark .t_white_Progress, :root.t_light .t_dark .t_white_Slider, :root.t_light .t_dark .t_white_TextArea, :root.t_light .t_dark .t_white_surface1, .tm_xxt {--color:var(--
|
|
1771
|
+
:root.t_dark .t_white_Input, :root.t_dark .t_white_Progress, :root.t_dark .t_white_Slider, :root.t_dark .t_white_TextArea, :root.t_dark .t_white_surface1, :root.t_light .t_dark .t_white_Input, :root.t_light .t_dark .t_white_Progress, :root.t_light .t_dark .t_white_Slider, :root.t_light .t_dark .t_white_TextArea, :root.t_light .t_dark .t_white_surface1, .tm_xxt {--color:var(--t24);--colorHover:var(--t197);--colorPress:var(--t24);--colorFocus:var(--t0);--background:var(--t1);--backgroundHover:var(--t192);--backgroundPress:var(--t191);--backgroundFocus:var(--t16);--backgroundActive:var(--t1);--borderColor:var(--t16);--borderColorHover:var(--t193);--borderColorFocus:var(--t16);--borderColorPress:var(--t192);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--outlineColor:var(--t236);}
|
|
1760
1772
|
@media(prefers-color-scheme:dark){
|
|
1761
|
-
.t_white_Input, .t_white_Progress, .t_white_Slider, .t_white_TextArea, .t_white_surface1 {--color:var(--
|
|
1773
|
+
.t_white_Input, .t_white_Progress, .t_white_Slider, .t_white_TextArea, .t_white_surface1 {--color:var(--t24);--colorHover:var(--t197);--colorPress:var(--t24);--colorFocus:var(--t0);--background:var(--t1);--backgroundHover:var(--t192);--backgroundPress:var(--t191);--backgroundFocus:var(--t16);--backgroundActive:var(--t1);--borderColor:var(--t16);--borderColorHover:var(--t193);--borderColorFocus:var(--t16);--borderColorPress:var(--t192);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--outlineColor:var(--t236);}
|
|
1762
1774
|
}
|
|
1763
|
-
:root.t_dark .t_white_ProgressIndicator, :root.t_dark .t_white_SliderActive, :root.t_light .t_dark .t_white_ProgressIndicator, :root.t_light .t_dark .t_white_SliderActive, .tm_xxt {--color:var(--
|
|
1775
|
+
:root.t_dark .t_white_ProgressIndicator, :root.t_dark .t_white_SliderActive, :root.t_light .t_dark .t_white_ProgressIndicator, :root.t_light .t_dark .t_white_SliderActive, .tm_xxt {--color:var(--t24);--colorHover:var(--t197);--colorPress:var(--t24);--colorFocus:var(--t0);--background:var(--t193);--backgroundHover:var(--t194);--backgroundPress:var(--t16);--backgroundFocus:var(--t24);--backgroundActive:var(--t193);--borderColor:var(--t195);--borderColorHover:var(--t196);--borderColorFocus:var(--t195);--borderColorPress:var(--t194);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--outlineColor:var(--t236);}
|
|
1764
1776
|
@media(prefers-color-scheme:dark){
|
|
1765
|
-
.t_white_ProgressIndicator, .t_white_SliderActive {--color:var(--
|
|
1777
|
+
.t_white_ProgressIndicator, .t_white_SliderActive {--color:var(--t24);--colorHover:var(--t197);--colorPress:var(--t24);--colorFocus:var(--t0);--background:var(--t193);--backgroundHover:var(--t194);--backgroundPress:var(--t16);--backgroundFocus:var(--t24);--backgroundActive:var(--t193);--borderColor:var(--t195);--borderColorHover:var(--t196);--borderColorFocus:var(--t195);--borderColorPress:var(--t194);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--outlineColor:var(--t236);}
|
|
1766
1778
|
}
|
|
1767
|
-
:root.t_dark .t_white_SwitchThumb, :root.t_dark .t_white_Tooltip, :root.t_dark .t_white_accent, :root.t_light .t_dark .t_white_SwitchThumb, :root.t_light .t_dark .t_white_Tooltip, :root.t_light .t_dark .t_white_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1779
|
+
:root.t_dark .t_white_SwitchThumb, :root.t_dark .t_white_Tooltip, :root.t_dark .t_white_accent, :root.t_light .t_dark .t_white_SwitchThumb, :root.t_light .t_dark .t_white_Tooltip, :root.t_light .t_dark .t_white_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t219);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--color1:var(--t197);--color2:var(--t24);--color3:var(--t0);--color4:var(--t196);--color5:var(--t195);--color6:var(--t194);--color7:var(--t193);--color8:var(--t16);--color9:var(--t192);--color10:var(--t1);--color11:var(--t191);--color12:var(--t23);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t23);--colorHover:var(--t22);--colorPress:var(--t23);--colorFocus:var(--t191);--background:var(--t24);--backgroundHover:var(--t0);--backgroundPress:var(--t197);--backgroundFocus:var(--t0);--backgroundActive:var(--t24);--borderColor:var(--t196);--borderColorHover:var(--t195);--borderColorFocus:var(--t196);--borderColorPress:var(--t0);--placeholderColor:var(--t192);--colorTransparent:var(--t18);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--outlineColor:var(--t236);}
|
|
1768
1780
|
@media(prefers-color-scheme:dark){
|
|
1769
|
-
.t_white_SwitchThumb, .t_white_Tooltip, .t_white_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1781
|
+
.t_white_SwitchThumb, .t_white_Tooltip, .t_white_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t219);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--color1:var(--t197);--color2:var(--t24);--color3:var(--t0);--color4:var(--t196);--color5:var(--t195);--color6:var(--t194);--color7:var(--t193);--color8:var(--t16);--color9:var(--t192);--color10:var(--t1);--color11:var(--t191);--color12:var(--t23);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t23);--colorHover:var(--t22);--colorPress:var(--t23);--colorFocus:var(--t191);--background:var(--t24);--backgroundHover:var(--t0);--backgroundPress:var(--t197);--backgroundFocus:var(--t0);--backgroundActive:var(--t24);--borderColor:var(--t196);--borderColorHover:var(--t195);--borderColorFocus:var(--t196);--borderColorPress:var(--t0);--placeholderColor:var(--t192);--colorTransparent:var(--t18);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--outlineColor:var(--t236);}
|
|
1770
1782
|
}
|
|
1771
1783
|
.t_dark_white_SwitchThumb ::selection, .t_dark_white_Tooltip ::selection, .t_dark_white_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1772
|
-
:root.t_dark .t_yellow, :root.t_light .t_dark .t_yellow, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1784
|
+
:root.t_dark .t_yellow, :root.t_light .t_dark .t_yellow, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t583);--background02:var(--t584);--background04:var(--t585);--background06:var(--t586);--background08:var(--t587);--color1:var(--t588);--color2:var(--t589);--color3:var(--t590);--color4:var(--t591);--color5:var(--t592);--color6:var(--t593);--color7:var(--t594);--color8:var(--t595);--color9:var(--t596);--color10:var(--t597);--color11:var(--t598);--color12:var(--t599);--color0:var(--t600);--color02:var(--t601);--color04:var(--t602);--color06:var(--t603);--color08:var(--t604);--color:var(--t599);--colorHover:var(--t604);--colorPress:var(--t599);--colorFocus:var(--t598);--background:var(--t589);--backgroundHover:var(--t590);--backgroundPress:var(--t588);--backgroundFocus:var(--t590);--backgroundActive:var(--t589);--borderColor:var(--t591);--borderColorHover:var(--t592);--borderColorFocus:var(--t591);--borderColorPress:var(--t590);--placeholderColor:var(--t596);--colorTransparent:var(--t600);--color01:var(--t605);--color0075:var(--t606);--color005:var(--t607);--color0025:var(--t608);--color002:var(--t609);--color001:var(--t610);--background01:var(--t611);--background0075:var(--t612);--background005:var(--t613);--background0025:var(--t614);--background002:var(--t615);--background001:var(--t616);--outlineColor:var(--t617);}
|
|
1773
1785
|
@media(prefers-color-scheme:dark){
|
|
1774
|
-
.t_yellow {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--
|
|
1786
|
+
.t_yellow {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t583);--background02:var(--t584);--background04:var(--t585);--background06:var(--t586);--background08:var(--t587);--color1:var(--t588);--color2:var(--t589);--color3:var(--t590);--color4:var(--t591);--color5:var(--t592);--color6:var(--t593);--color7:var(--t594);--color8:var(--t595);--color9:var(--t596);--color10:var(--t597);--color11:var(--t598);--color12:var(--t599);--color0:var(--t600);--color02:var(--t601);--color04:var(--t602);--color06:var(--t603);--color08:var(--t604);--color:var(--t599);--colorHover:var(--t604);--colorPress:var(--t599);--colorFocus:var(--t598);--background:var(--t589);--backgroundHover:var(--t590);--backgroundPress:var(--t588);--backgroundFocus:var(--t590);--backgroundActive:var(--t589);--borderColor:var(--t591);--borderColorHover:var(--t592);--borderColorFocus:var(--t591);--borderColorPress:var(--t590);--placeholderColor:var(--t596);--colorTransparent:var(--t600);--color01:var(--t605);--color0075:var(--t606);--color005:var(--t607);--color0025:var(--t608);--color002:var(--t609);--color001:var(--t610);--background01:var(--t611);--background0075:var(--t612);--background005:var(--t613);--background0025:var(--t614);--background002:var(--t615);--background001:var(--t616);--outlineColor:var(--t617);}
|
|
1775
1787
|
}
|
|
1776
1788
|
.t_dark_yellow ::selection{background:var(--color5);color:var(--color11)}
|
|
1777
|
-
:root.t_dark .t_yellow_Button, :root.t_dark .t_yellow_SliderThumb, :root.t_dark .t_yellow_Switch, :root.t_dark .t_yellow_surface2, :root.t_light .t_dark .t_yellow_Button, :root.t_light .t_dark .t_yellow_SliderThumb, :root.t_light .t_dark .t_yellow_Switch, :root.t_light .t_dark .t_yellow_surface2, .tm_xxt {--color:var(--
|
|
1789
|
+
:root.t_dark .t_yellow_Button, :root.t_dark .t_yellow_SliderThumb, :root.t_dark .t_yellow_Switch, :root.t_dark .t_yellow_surface2, :root.t_light .t_dark .t_yellow_Button, :root.t_light .t_dark .t_yellow_SliderThumb, :root.t_light .t_dark .t_yellow_Switch, :root.t_light .t_dark .t_yellow_surface2, .tm_xxt {--color:var(--t598);--colorHover:var(--t599);--colorPress:var(--t598);--colorFocus:var(--t597);--background:var(--t591);--backgroundHover:var(--t592);--backgroundPress:var(--t590);--backgroundFocus:var(--t594);--backgroundActive:var(--t591);--borderColor:var(--t593);--borderColorHover:var(--t594);--borderColorFocus:var(--t593);--borderColorPress:var(--t592);--color01:var(--t605);--color0075:var(--t606);--color005:var(--t607);--color0025:var(--t608);--color002:var(--t609);--color001:var(--t610);--background01:var(--t611);--background0075:var(--t612);--background005:var(--t613);--background0025:var(--t614);--background002:var(--t615);--background001:var(--t616);--background02:var(--t584);--background04:var(--t585);--background06:var(--t586);--background08:var(--t587);--outlineColor:var(--t617);}
|
|
1778
1790
|
@media(prefers-color-scheme:dark){
|
|
1779
|
-
.t_yellow_Button, .t_yellow_SliderThumb, .t_yellow_Switch, .t_yellow_surface2 {--color:var(--
|
|
1791
|
+
.t_yellow_Button, .t_yellow_SliderThumb, .t_yellow_Switch, .t_yellow_surface2 {--color:var(--t598);--colorHover:var(--t599);--colorPress:var(--t598);--colorFocus:var(--t597);--background:var(--t591);--backgroundHover:var(--t592);--backgroundPress:var(--t590);--backgroundFocus:var(--t594);--backgroundActive:var(--t591);--borderColor:var(--t593);--borderColorHover:var(--t594);--borderColorFocus:var(--t593);--borderColorPress:var(--t592);--color01:var(--t605);--color0075:var(--t606);--color005:var(--t607);--color0025:var(--t608);--color002:var(--t609);--color001:var(--t610);--background01:var(--t611);--background0075:var(--t612);--background005:var(--t613);--background0025:var(--t614);--background002:var(--t615);--background001:var(--t616);--background02:var(--t584);--background04:var(--t585);--background06:var(--t586);--background08:var(--t587);--outlineColor:var(--t617);}
|
|
1780
1792
|
}
|
|
1781
|
-
:root.t_dark .t_yellow_Input, :root.t_dark .t_yellow_Progress, :root.t_dark .t_yellow_Slider, :root.t_dark .t_yellow_TextArea, :root.t_dark .t_yellow_surface1, :root.t_light .t_dark .t_yellow_Input, :root.t_light .t_dark .t_yellow_Progress, :root.t_light .t_dark .t_yellow_Slider, :root.t_light .t_dark .t_yellow_TextArea, :root.t_light .t_dark .t_yellow_surface1, .tm_xxt {--color:var(--
|
|
1793
|
+
:root.t_dark .t_yellow_Input, :root.t_dark .t_yellow_Progress, :root.t_dark .t_yellow_Slider, :root.t_dark .t_yellow_TextArea, :root.t_dark .t_yellow_surface1, :root.t_light .t_dark .t_yellow_Input, :root.t_light .t_dark .t_yellow_Progress, :root.t_light .t_dark .t_yellow_Slider, :root.t_light .t_dark .t_yellow_TextArea, :root.t_light .t_dark .t_yellow_surface1, .tm_xxt {--color:var(--t598);--colorHover:var(--t599);--colorPress:var(--t598);--colorFocus:var(--t597);--background:var(--t590);--backgroundHover:var(--t591);--backgroundPress:var(--t589);--backgroundFocus:var(--t592);--backgroundActive:var(--t590);--borderColor:var(--t592);--borderColorHover:var(--t593);--borderColorFocus:var(--t592);--borderColorPress:var(--t591);--color01:var(--t605);--color0075:var(--t606);--color005:var(--t607);--color0025:var(--t608);--color002:var(--t609);--color001:var(--t610);--background01:var(--t611);--background0075:var(--t612);--background005:var(--t613);--background0025:var(--t614);--background002:var(--t615);--background001:var(--t616);--background02:var(--t584);--background04:var(--t585);--background06:var(--t586);--background08:var(--t587);--outlineColor:var(--t617);}
|
|
1782
1794
|
@media(prefers-color-scheme:dark){
|
|
1783
|
-
.t_yellow_Input, .t_yellow_Progress, .t_yellow_Slider, .t_yellow_TextArea, .t_yellow_surface1 {--color:var(--
|
|
1795
|
+
.t_yellow_Input, .t_yellow_Progress, .t_yellow_Slider, .t_yellow_TextArea, .t_yellow_surface1 {--color:var(--t598);--colorHover:var(--t599);--colorPress:var(--t598);--colorFocus:var(--t597);--background:var(--t590);--backgroundHover:var(--t591);--backgroundPress:var(--t589);--backgroundFocus:var(--t592);--backgroundActive:var(--t590);--borderColor:var(--t592);--borderColorHover:var(--t593);--borderColorFocus:var(--t592);--borderColorPress:var(--t591);--color01:var(--t605);--color0075:var(--t606);--color005:var(--t607);--color0025:var(--t608);--color002:var(--t609);--color001:var(--t610);--background01:var(--t611);--background0075:var(--t612);--background005:var(--t613);--background0025:var(--t614);--background002:var(--t615);--background001:var(--t616);--background02:var(--t584);--background04:var(--t585);--background06:var(--t586);--background08:var(--t587);--outlineColor:var(--t617);}
|
|
1784
1796
|
}
|
|
1785
|
-
:root.t_dark .t_yellow_ProgressIndicator, :root.t_dark .t_yellow_SliderActive, :root.t_light .t_dark .t_yellow_ProgressIndicator, :root.t_light .t_dark .t_yellow_SliderActive, .tm_xxt {--color:var(--
|
|
1797
|
+
:root.t_dark .t_yellow_ProgressIndicator, :root.t_dark .t_yellow_SliderActive, :root.t_light .t_dark .t_yellow_ProgressIndicator, :root.t_light .t_dark .t_yellow_SliderActive, .tm_xxt {--color:var(--t598);--colorHover:var(--t599);--colorPress:var(--t598);--colorFocus:var(--t597);--background:var(--t593);--backgroundHover:var(--t594);--backgroundPress:var(--t592);--backgroundFocus:var(--t598);--backgroundActive:var(--t593);--borderColor:var(--t595);--borderColorHover:var(--t596);--borderColorFocus:var(--t595);--borderColorPress:var(--t594);--color01:var(--t605);--color0075:var(--t606);--color005:var(--t607);--color0025:var(--t608);--color002:var(--t609);--color001:var(--t610);--background01:var(--t611);--background0075:var(--t612);--background005:var(--t613);--background0025:var(--t614);--background002:var(--t615);--background001:var(--t616);--background02:var(--t584);--background04:var(--t585);--background06:var(--t586);--background08:var(--t587);--outlineColor:var(--t617);}
|
|
1786
1798
|
@media(prefers-color-scheme:dark){
|
|
1787
|
-
.t_yellow_ProgressIndicator, .t_yellow_SliderActive {--color:var(--
|
|
1799
|
+
.t_yellow_ProgressIndicator, .t_yellow_SliderActive {--color:var(--t598);--colorHover:var(--t599);--colorPress:var(--t598);--colorFocus:var(--t597);--background:var(--t593);--backgroundHover:var(--t594);--backgroundPress:var(--t592);--backgroundFocus:var(--t598);--backgroundActive:var(--t593);--borderColor:var(--t595);--borderColorHover:var(--t596);--borderColorFocus:var(--t595);--borderColorPress:var(--t594);--color01:var(--t605);--color0075:var(--t606);--color005:var(--t607);--color0025:var(--t608);--color002:var(--t609);--color001:var(--t610);--background01:var(--t611);--background0075:var(--t612);--background005:var(--t613);--background0025:var(--t614);--background002:var(--t615);--background001:var(--t616);--background02:var(--t584);--background04:var(--t585);--background06:var(--t586);--background08:var(--t587);--outlineColor:var(--t617);}
|
|
1788
1800
|
}
|
|
1789
|
-
:root.t_dark .t_yellow_SwitchThumb, :root.t_dark .t_yellow_Tooltip, :root.t_dark .t_yellow_accent, :root.t_light .t_dark .t_yellow_SwitchThumb, :root.t_light .t_dark .t_yellow_Tooltip, :root.t_light .t_dark .t_yellow_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1801
|
+
:root.t_dark .t_yellow_SwitchThumb, :root.t_dark .t_yellow_Tooltip, :root.t_dark .t_yellow_accent, :root.t_light .t_dark .t_yellow_SwitchThumb, :root.t_light .t_dark .t_yellow_Tooltip, :root.t_light .t_dark .t_yellow_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t600);--background02:var(--t584);--background04:var(--t585);--background06:var(--t586);--background08:var(--t587);--color1:var(--t599);--color2:var(--t598);--color3:var(--t597);--color4:var(--t596);--color5:var(--t595);--color6:var(--t594);--color7:var(--t593);--color8:var(--t592);--color9:var(--t591);--color10:var(--t590);--color11:var(--t589);--color12:var(--t588);--color0:var(--t583);--color02:var(--t618);--color04:var(--t619);--color06:var(--t620);--color08:var(--t621);--color:var(--t588);--colorHover:var(--t621);--colorPress:var(--t588);--colorFocus:var(--t589);--background:var(--t598);--backgroundHover:var(--t597);--backgroundPress:var(--t599);--backgroundFocus:var(--t597);--backgroundActive:var(--t598);--borderColor:var(--t596);--borderColorHover:var(--t595);--borderColorFocus:var(--t596);--borderColorPress:var(--t597);--placeholderColor:var(--t591);--colorTransparent:var(--t583);--color01:var(--t605);--color0075:var(--t606);--color005:var(--t607);--color0025:var(--t608);--color002:var(--t609);--color001:var(--t610);--background01:var(--t611);--background0075:var(--t612);--background005:var(--t613);--background0025:var(--t614);--background002:var(--t615);--background001:var(--t616);--outlineColor:var(--t617);}
|
|
1790
1802
|
@media(prefers-color-scheme:dark){
|
|
1791
|
-
.t_yellow_SwitchThumb, .t_yellow_Tooltip, .t_yellow_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--
|
|
1803
|
+
.t_yellow_SwitchThumb, .t_yellow_Tooltip, .t_yellow_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t600);--background02:var(--t584);--background04:var(--t585);--background06:var(--t586);--background08:var(--t587);--color1:var(--t599);--color2:var(--t598);--color3:var(--t597);--color4:var(--t596);--color5:var(--t595);--color6:var(--t594);--color7:var(--t593);--color8:var(--t592);--color9:var(--t591);--color10:var(--t590);--color11:var(--t589);--color12:var(--t588);--color0:var(--t583);--color02:var(--t618);--color04:var(--t619);--color06:var(--t620);--color08:var(--t621);--color:var(--t588);--colorHover:var(--t621);--colorPress:var(--t588);--colorFocus:var(--t589);--background:var(--t598);--backgroundHover:var(--t597);--backgroundPress:var(--t599);--backgroundFocus:var(--t597);--backgroundActive:var(--t598);--borderColor:var(--t596);--borderColorHover:var(--t595);--borderColorFocus:var(--t596);--borderColorPress:var(--t597);--placeholderColor:var(--t591);--colorTransparent:var(--t583);--color01:var(--t605);--color0075:var(--t606);--color005:var(--t607);--color0025:var(--t608);--color002:var(--t609);--color001:var(--t610);--background01:var(--t611);--background0075:var(--t612);--background005:var(--t613);--background0025:var(--t614);--background002:var(--t615);--background001:var(--t616);--outlineColor:var(--t617);}
|
|
1792
1804
|
}
|
|
1793
1805
|
.t_dark_yellow_SwitchThumb ::selection, .t_dark_yellow_Tooltip ::selection, .t_dark_yellow_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1794
|
-
:root.t_dark .t_light , :root.t_light, :root.t_light , .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t18);--background02:var(--
|
|
1806
|
+
:root.t_dark .t_light , :root.t_light, :root.t_light , .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t18);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--color1:var(--t23);--color2:var(--t191);--color3:var(--t1);--color4:var(--t622);--color5:var(--t16);--color6:var(--t193);--color7:var(--t194);--color8:var(--t195);--color9:var(--t196);--color10:var(--t0);--color11:var(--t24);--color12:var(--t623);--color0:var(--t219);--color02:var(--t220);--color04:var(--t221);--color06:var(--t222);--color08:var(--t223);--color:var(--t197);--colorHover:var(--t197);--colorPress:var(--t197);--colorFocus:var(--t223);--backgroundHover:var(--t23);--backgroundPress:var(--t1);--backgroundFocus:var(--t1);--backgroundActive:var(--t191);--borderColor:var(--t622);--borderColorHover:var(--t1);--borderColorFocus:var(--t192);--borderColorPress:var(--t16);--placeholderColor:var(--t196);--colorTransparent:var(--t219);--black1:var(--t25);--black2:var(--t26);--black3:var(--t27);--black4:var(--t28);--black5:var(--t29);--black6:var(--t30);--black7:var(--t31);--black8:var(--t32);--black9:var(--t33);--black10:var(--t34);--black11:var(--t35);--black12:var(--t36);--white1:var(--t37);--white2:var(--t38);--white3:var(--t39);--white4:var(--t40);--white5:var(--t41);--white6:var(--t42);--white7:var(--t43);--white8:var(--t44);--white9:var(--t45);--white10:var(--t46);--white11:var(--t47);--white12:var(--t48);--white0:var(--t50);--white02:var(--t51);--white04:var(--t52);--white06:var(--t53);--white08:var(--t54);--black0:var(--t56);--black02:var(--t57);--black04:var(--t58);--black06:var(--t59);--black08:var(--t60);--shadow1:var(--t624);--shadow2:var(--t625);--shadow3:var(--t626);--shadow4:var(--t627);--shadow5:var(--t63);--shadow6:var(--t628);--shadow7:var(--t59);--shadow8:var(--t629);--highlight1:var(--t630);--highlight2:var(--t67);--highlight3:var(--t631);--highlight4:var(--t68);--highlight5:var(--t52);--highlight6:var(--t632);--highlight7:var(--t633);--highlight8:var(--t71);--shadowColor:var(--t626);--gray1:var(--t634);--gray2:var(--t635);--gray3:var(--t636);--gray4:var(--t637);--gray5:var(--t638);--gray6:var(--t639);--gray7:var(--t640);--gray8:var(--t641);--gray9:var(--t642);--gray10:var(--t643);--gray11:var(--t644);--gray12:var(--t645);--blue1:var(--t646);--blue2:var(--t647);--blue3:var(--t648);--blue4:var(--t649);--blue5:var(--t650);--blue6:var(--t651);--blue7:var(--t652);--blue8:var(--t653);--blue9:var(--t92);--blue10:var(--t654);--blue11:var(--t655);--blue12:var(--t656);--red1:var(--t657);--red2:var(--t658);--red3:var(--t659);--red4:var(--t660);--red5:var(--t661);--red6:var(--t662);--red7:var(--t663);--red8:var(--t664);--red9:var(--t104);--red10:var(--t665);--red11:var(--t666);--red12:var(--t667);--yellow1:var(--t668);--yellow2:var(--t669);--yellow3:var(--t670);--yellow4:var(--t671);--yellow5:var(--t672);--yellow6:var(--t673);--yellow7:var(--t674);--yellow8:var(--t675);--yellow9:var(--t116);--yellow10:var(--t676);--yellow11:var(--t677);--yellow12:var(--t678);--green1:var(--t679);--green2:var(--t680);--green3:var(--t681);--green4:var(--t682);--green5:var(--t683);--green6:var(--t684);--green7:var(--t685);--green8:var(--t686);--green9:var(--t128);--green10:var(--t687);--green11:var(--t688);--green12:var(--t689);--orange1:var(--t690);--orange2:var(--t691);--orange3:var(--t692);--orange4:var(--t693);--orange5:var(--t694);--orange6:var(--t695);--orange7:var(--t696);--orange8:var(--t697);--orange9:var(--t140);--orange10:var(--t698);--orange11:var(--t699);--orange12:var(--t700);--pink1:var(--t701);--pink2:var(--t702);--pink3:var(--t703);--pink4:var(--t704);--pink5:var(--t705);--pink6:var(--t706);--pink7:var(--t707);--pink8:var(--t708);--pink9:var(--t152);--pink10:var(--t709);--pink11:var(--t710);--pink12:var(--t711);--purple1:var(--t712);--purple2:var(--t713);--purple3:var(--t714);--purple4:var(--t715);--purple5:var(--t716);--purple6:var(--t717);--purple7:var(--t718);--purple8:var(--t719);--purple9:var(--t164);--purple10:var(--t720);--purple11:var(--t721);--purple12:var(--t722);--teal1:var(--t723);--teal2:var(--t724);--teal3:var(--t725);--teal4:var(--t726);--teal5:var(--t727);--teal6:var(--t728);--teal7:var(--t729);--teal8:var(--t730);--teal9:var(--t176);--teal10:var(--t731);--teal11:var(--t732);--teal12:var(--t733);--neutral1:var(--t180);--neutral2:var(--t181);--neutral3:var(--t182);--neutral4:var(--t43);--neutral5:var(--t183);--neutral6:var(--t184);--neutral7:var(--t185);--neutral8:var(--t186);--neutral9:var(--t187);--neutral10:var(--t188);--neutral11:var(--t189);--neutral12:var(--t190);--accent1:var(--t7);--accent2:var(--t8);--accent3:var(--t9);--accent4:var(--t24);--accent5:var(--t0);--accent6:var(--t11);--accent7:var(--t12);--accent8:var(--t13);--accent9:var(--t14);--accent10:var(--t15);--accent11:var(--t16);--accent12:var(--t23);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--outlineColor:var(--t236);}
|
|
1795
1807
|
@media(prefers-color-scheme:light){
|
|
1796
1808
|
body{background:var(--background);color:var(--color)}
|
|
1797
|
-
:root {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t18);--background02:var(--
|
|
1809
|
+
:root {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t18);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--color1:var(--t23);--color2:var(--t191);--color3:var(--t1);--color4:var(--t622);--color5:var(--t16);--color6:var(--t193);--color7:var(--t194);--color8:var(--t195);--color9:var(--t196);--color10:var(--t0);--color11:var(--t24);--color12:var(--t623);--color0:var(--t219);--color02:var(--t220);--color04:var(--t221);--color06:var(--t222);--color08:var(--t223);--color:var(--t197);--colorHover:var(--t197);--colorPress:var(--t197);--colorFocus:var(--t223);--backgroundHover:var(--t23);--backgroundPress:var(--t1);--backgroundFocus:var(--t1);--backgroundActive:var(--t191);--borderColor:var(--t622);--borderColorHover:var(--t1);--borderColorFocus:var(--t192);--borderColorPress:var(--t16);--placeholderColor:var(--t196);--colorTransparent:var(--t219);--black1:var(--t25);--black2:var(--t26);--black3:var(--t27);--black4:var(--t28);--black5:var(--t29);--black6:var(--t30);--black7:var(--t31);--black8:var(--t32);--black9:var(--t33);--black10:var(--t34);--black11:var(--t35);--black12:var(--t36);--white1:var(--t37);--white2:var(--t38);--white3:var(--t39);--white4:var(--t40);--white5:var(--t41);--white6:var(--t42);--white7:var(--t43);--white8:var(--t44);--white9:var(--t45);--white10:var(--t46);--white11:var(--t47);--white12:var(--t48);--white0:var(--t50);--white02:var(--t51);--white04:var(--t52);--white06:var(--t53);--white08:var(--t54);--black0:var(--t56);--black02:var(--t57);--black04:var(--t58);--black06:var(--t59);--black08:var(--t60);--shadow1:var(--t624);--shadow2:var(--t625);--shadow3:var(--t626);--shadow4:var(--t627);--shadow5:var(--t63);--shadow6:var(--t628);--shadow7:var(--t59);--shadow8:var(--t629);--highlight1:var(--t630);--highlight2:var(--t67);--highlight3:var(--t631);--highlight4:var(--t68);--highlight5:var(--t52);--highlight6:var(--t632);--highlight7:var(--t633);--highlight8:var(--t71);--shadowColor:var(--t626);--gray1:var(--t634);--gray2:var(--t635);--gray3:var(--t636);--gray4:var(--t637);--gray5:var(--t638);--gray6:var(--t639);--gray7:var(--t640);--gray8:var(--t641);--gray9:var(--t642);--gray10:var(--t643);--gray11:var(--t644);--gray12:var(--t645);--blue1:var(--t646);--blue2:var(--t647);--blue3:var(--t648);--blue4:var(--t649);--blue5:var(--t650);--blue6:var(--t651);--blue7:var(--t652);--blue8:var(--t653);--blue9:var(--t92);--blue10:var(--t654);--blue11:var(--t655);--blue12:var(--t656);--red1:var(--t657);--red2:var(--t658);--red3:var(--t659);--red4:var(--t660);--red5:var(--t661);--red6:var(--t662);--red7:var(--t663);--red8:var(--t664);--red9:var(--t104);--red10:var(--t665);--red11:var(--t666);--red12:var(--t667);--yellow1:var(--t668);--yellow2:var(--t669);--yellow3:var(--t670);--yellow4:var(--t671);--yellow5:var(--t672);--yellow6:var(--t673);--yellow7:var(--t674);--yellow8:var(--t675);--yellow9:var(--t116);--yellow10:var(--t676);--yellow11:var(--t677);--yellow12:var(--t678);--green1:var(--t679);--green2:var(--t680);--green3:var(--t681);--green4:var(--t682);--green5:var(--t683);--green6:var(--t684);--green7:var(--t685);--green8:var(--t686);--green9:var(--t128);--green10:var(--t687);--green11:var(--t688);--green12:var(--t689);--orange1:var(--t690);--orange2:var(--t691);--orange3:var(--t692);--orange4:var(--t693);--orange5:var(--t694);--orange6:var(--t695);--orange7:var(--t696);--orange8:var(--t697);--orange9:var(--t140);--orange10:var(--t698);--orange11:var(--t699);--orange12:var(--t700);--pink1:var(--t701);--pink2:var(--t702);--pink3:var(--t703);--pink4:var(--t704);--pink5:var(--t705);--pink6:var(--t706);--pink7:var(--t707);--pink8:var(--t708);--pink9:var(--t152);--pink10:var(--t709);--pink11:var(--t710);--pink12:var(--t711);--purple1:var(--t712);--purple2:var(--t713);--purple3:var(--t714);--purple4:var(--t715);--purple5:var(--t716);--purple6:var(--t717);--purple7:var(--t718);--purple8:var(--t719);--purple9:var(--t164);--purple10:var(--t720);--purple11:var(--t721);--purple12:var(--t722);--teal1:var(--t723);--teal2:var(--t724);--teal3:var(--t725);--teal4:var(--t726);--teal5:var(--t727);--teal6:var(--t728);--teal7:var(--t729);--teal8:var(--t730);--teal9:var(--t176);--teal10:var(--t731);--teal11:var(--t732);--teal12:var(--t733);--neutral1:var(--t180);--neutral2:var(--t181);--neutral3:var(--t182);--neutral4:var(--t43);--neutral5:var(--t183);--neutral6:var(--t184);--neutral7:var(--t185);--neutral8:var(--t186);--neutral9:var(--t187);--neutral10:var(--t188);--neutral11:var(--t189);--neutral12:var(--t190);--accent1:var(--t7);--accent2:var(--t8);--accent3:var(--t9);--accent4:var(--t24);--accent5:var(--t0);--accent6:var(--t11);--accent7:var(--t12);--accent8:var(--t13);--accent9:var(--t14);--accent10:var(--t15);--accent11:var(--t16);--accent12:var(--t23);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--outlineColor:var(--t236);}
|
|
1798
1810
|
}
|
|
1799
1811
|
.t_light ::selection{background:var(--color5);color:var(--color11)}
|
|
1800
|
-
:root.t_dark .t_light .t_Button, :root.t_dark .t_light .t_SliderThumb, :root.t_dark .t_light .t_Switch, :root.t_dark .t_light .t_surface2, :root.t_dark .t_light .t_white_Button, :root.t_dark .t_light .t_white_SliderThumb, :root.t_dark .t_light .t_white_Switch, :root.t_dark .t_light .t_white_surface2, :root.t_light .t_Button, :root.t_light .t_SliderThumb, :root.t_light .t_Switch, :root.t_light .t_surface2, :root.t_light .t_white_Button, :root.t_light .t_white_SliderThumb, :root.t_light .t_white_Switch, :root.t_light .t_white_surface2, .tm_xxt {--color:var(--
|
|
1812
|
+
:root.t_dark .t_light .t_Button, :root.t_dark .t_light .t_SliderThumb, :root.t_dark .t_light .t_Switch, :root.t_dark .t_light .t_surface2, :root.t_dark .t_light .t_white_Button, :root.t_dark .t_light .t_white_SliderThumb, :root.t_dark .t_light .t_white_Switch, :root.t_dark .t_light .t_white_surface2, :root.t_light .t_Button, :root.t_light .t_SliderThumb, :root.t_light .t_Switch, :root.t_light .t_surface2, :root.t_light .t_white_Button, :root.t_light .t_white_SliderThumb, :root.t_light .t_white_Switch, :root.t_light .t_white_surface2, .tm_xxt {--color:var(--t24);--colorHover:var(--t24);--colorPress:var(--t24);--colorFocus:var(--t197);--background:var(--t192);--backgroundHover:var(--t1);--backgroundPress:var(--t16);--backgroundFocus:var(--t194);--backgroundActive:var(--t192);--borderColor:var(--t193);--borderColorHover:var(--t16);--borderColorFocus:var(--t193);--borderColorPress:var(--t194);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--outlineColor:var(--t236);}
|
|
1801
1813
|
@media(prefers-color-scheme:light){
|
|
1802
|
-
.t_Button, .t_SliderThumb, .t_Switch, .t_surface2, .t_white_Button, .t_white_SliderThumb, .t_white_Switch, .t_white_surface2 {--color:var(--
|
|
1814
|
+
.t_Button, .t_SliderThumb, .t_Switch, .t_surface2, .t_white_Button, .t_white_SliderThumb, .t_white_Switch, .t_white_surface2 {--color:var(--t24);--colorHover:var(--t24);--colorPress:var(--t24);--colorFocus:var(--t197);--background:var(--t192);--backgroundHover:var(--t1);--backgroundPress:var(--t16);--backgroundFocus:var(--t194);--backgroundActive:var(--t192);--borderColor:var(--t193);--borderColorHover:var(--t16);--borderColorFocus:var(--t193);--borderColorPress:var(--t194);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--outlineColor:var(--t236);}
|
|
1803
1815
|
}
|
|
1804
|
-
:root.t_dark .t_light .t_Input, :root.t_dark .t_light .t_Progress, :root.t_dark .t_light .t_Slider, :root.t_dark .t_light .t_TextArea, :root.t_dark .t_light .t_surface1, :root.t_dark .t_light .t_white_Input, :root.t_dark .t_light .t_white_Progress, :root.t_dark .t_light .t_white_Slider, :root.t_dark .t_light .t_white_TextArea, :root.t_dark .t_light .t_white_surface1, :root.t_light .t_Input, :root.t_light .t_Progress, :root.t_light .t_Slider, :root.t_light .t_TextArea, :root.t_light .t_surface1, :root.t_light .t_white_Input, :root.t_light .t_white_Progress, :root.t_light .t_white_Slider, :root.t_light .t_white_TextArea, :root.t_light .t_white_surface1, .tm_xxt {--color:var(--
|
|
1816
|
+
:root.t_dark .t_light .t_Input, :root.t_dark .t_light .t_Progress, :root.t_dark .t_light .t_Slider, :root.t_dark .t_light .t_TextArea, :root.t_dark .t_light .t_surface1, :root.t_dark .t_light .t_white_Input, :root.t_dark .t_light .t_white_Progress, :root.t_dark .t_light .t_white_Slider, :root.t_dark .t_light .t_white_TextArea, :root.t_dark .t_light .t_white_surface1, :root.t_light .t_Input, :root.t_light .t_Progress, :root.t_light .t_Slider, :root.t_light .t_TextArea, :root.t_light .t_surface1, :root.t_light .t_white_Input, :root.t_light .t_white_Progress, :root.t_light .t_white_Slider, :root.t_light .t_white_TextArea, :root.t_light .t_white_surface1, .tm_xxt {--color:var(--t24);--colorHover:var(--t24);--colorPress:var(--t24);--colorFocus:var(--t197);--background:var(--t1);--backgroundHover:var(--t191);--backgroundPress:var(--t192);--backgroundFocus:var(--t16);--backgroundActive:var(--t1);--borderColor:var(--t16);--borderColorHover:var(--t192);--borderColorFocus:var(--t16);--borderColorPress:var(--t193);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--outlineColor:var(--t236);}
|
|
1805
1817
|
@media(prefers-color-scheme:light){
|
|
1806
|
-
.t_Input, .t_Progress, .t_Slider, .t_TextArea, .t_surface1, .t_white_Input, .t_white_Progress, .t_white_Slider, .t_white_TextArea, .t_white_surface1 {--color:var(--
|
|
1818
|
+
.t_Input, .t_Progress, .t_Slider, .t_TextArea, .t_surface1, .t_white_Input, .t_white_Progress, .t_white_Slider, .t_white_TextArea, .t_white_surface1 {--color:var(--t24);--colorHover:var(--t24);--colorPress:var(--t24);--colorFocus:var(--t197);--background:var(--t1);--backgroundHover:var(--t191);--backgroundPress:var(--t192);--backgroundFocus:var(--t16);--backgroundActive:var(--t1);--borderColor:var(--t16);--borderColorHover:var(--t192);--borderColorFocus:var(--t16);--borderColorPress:var(--t193);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--outlineColor:var(--t236);}
|
|
1807
1819
|
}
|
|
1808
|
-
:root.t_dark .t_light .t_ProgressIndicator, :root.t_dark .t_light .t_SliderActive, :root.t_dark .t_light .t_white_ProgressIndicator, :root.t_dark .t_light .t_white_SliderActive, :root.t_light .t_ProgressIndicator, :root.t_light .t_SliderActive, :root.t_light .t_white_ProgressIndicator, :root.t_light .t_white_SliderActive, .tm_xxt {--color:var(--
|
|
1820
|
+
:root.t_dark .t_light .t_ProgressIndicator, :root.t_dark .t_light .t_SliderActive, :root.t_dark .t_light .t_white_ProgressIndicator, :root.t_dark .t_light .t_white_SliderActive, :root.t_light .t_ProgressIndicator, :root.t_light .t_SliderActive, :root.t_light .t_white_ProgressIndicator, :root.t_light .t_white_SliderActive, .tm_xxt {--color:var(--t24);--colorHover:var(--t24);--colorPress:var(--t24);--colorFocus:var(--t197);--background:var(--t193);--backgroundHover:var(--t16);--backgroundPress:var(--t194);--backgroundFocus:var(--t24);--backgroundActive:var(--t193);--borderColor:var(--t195);--borderColorHover:var(--t194);--borderColorFocus:var(--t195);--borderColorPress:var(--t196);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--outlineColor:var(--t236);}
|
|
1809
1821
|
@media(prefers-color-scheme:light){
|
|
1810
|
-
.t_ProgressIndicator, .t_SliderActive, .t_white_ProgressIndicator, .t_white_SliderActive {--color:var(--
|
|
1822
|
+
.t_ProgressIndicator, .t_SliderActive, .t_white_ProgressIndicator, .t_white_SliderActive {--color:var(--t24);--colorHover:var(--t24);--colorPress:var(--t24);--colorFocus:var(--t197);--background:var(--t193);--backgroundHover:var(--t16);--backgroundPress:var(--t194);--backgroundFocus:var(--t24);--backgroundActive:var(--t193);--borderColor:var(--t195);--borderColorHover:var(--t194);--borderColorFocus:var(--t195);--borderColorPress:var(--t196);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--outlineColor:var(--t236);}
|
|
1811
1823
|
}
|
|
1812
|
-
:root.t_dark .t_light .t_SwitchThumb, :root.t_dark .t_light .t_Tooltip, :root.t_dark .t_light .t_white_SwitchThumb, :root.t_dark .t_light .t_white_Tooltip, :root.t_dark .t_light .t_white_accent, :root.t_light .t_SwitchThumb, :root.t_light .t_Tooltip, :root.t_light .t_white_SwitchThumb, :root.t_light .t_white_Tooltip, :root.t_light .t_white_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1824
|
+
:root.t_dark .t_light .t_SwitchThumb, :root.t_dark .t_light .t_Tooltip, :root.t_dark .t_light .t_white_SwitchThumb, :root.t_dark .t_light .t_white_Tooltip, :root.t_dark .t_light .t_white_accent, :root.t_light .t_SwitchThumb, :root.t_light .t_Tooltip, :root.t_light .t_white_SwitchThumb, :root.t_light .t_white_Tooltip, :root.t_light .t_white_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t219);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--color1:var(--t197);--color2:var(--t24);--color3:var(--t0);--color4:var(--t196);--color5:var(--t195);--color6:var(--t194);--color7:var(--t193);--color8:var(--t16);--color9:var(--t192);--color10:var(--t1);--color11:var(--t191);--color12:var(--t23);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t23);--colorHover:var(--t23);--colorPress:var(--t23);--colorFocus:var(--t22);--background:var(--t24);--backgroundHover:var(--t197);--backgroundPress:var(--t0);--backgroundFocus:var(--t0);--backgroundActive:var(--t24);--borderColor:var(--t196);--borderColorHover:var(--t0);--borderColorFocus:var(--t196);--borderColorPress:var(--t195);--placeholderColor:var(--t192);--colorTransparent:var(--t18);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--outlineColor:var(--t236);}
|
|
1813
1825
|
@media(prefers-color-scheme:light){
|
|
1814
|
-
.t_SwitchThumb, .t_Tooltip, .t_white_SwitchThumb, .t_white_Tooltip, .t_white_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1826
|
+
.t_SwitchThumb, .t_Tooltip, .t_white_SwitchThumb, .t_white_Tooltip, .t_white_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t219);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--color1:var(--t197);--color2:var(--t24);--color3:var(--t0);--color4:var(--t196);--color5:var(--t195);--color6:var(--t194);--color7:var(--t193);--color8:var(--t16);--color9:var(--t192);--color10:var(--t1);--color11:var(--t191);--color12:var(--t23);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t23);--colorHover:var(--t23);--colorPress:var(--t23);--colorFocus:var(--t22);--background:var(--t24);--backgroundHover:var(--t197);--backgroundPress:var(--t0);--backgroundFocus:var(--t0);--backgroundActive:var(--t24);--borderColor:var(--t196);--borderColorHover:var(--t0);--borderColorFocus:var(--t196);--borderColorPress:var(--t195);--placeholderColor:var(--t192);--colorTransparent:var(--t18);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--outlineColor:var(--t236);}
|
|
1815
1827
|
}
|
|
1816
1828
|
.t_light_SwitchThumb ::selection, .t_light_Tooltip ::selection, .t_light_white_SwitchThumb ::selection, .t_light_white_Tooltip ::selection, .t_light_white_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1817
|
-
:root.t_dark .t_light .t_accent, :root.t_light .t_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--
|
|
1829
|
+
:root.t_dark .t_light .t_accent, :root.t_light .t_accent, .tm_xxt {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--t24);--color5:var(--t0);--color6:var(--t11);--color7:var(--t12);--color8:var(--t13);--color9:var(--t14);--color10:var(--t15);--color11:var(--t16);--color12:var(--t23);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t23);--colorHover:var(--t23);--colorPress:var(--t23);--colorFocus:var(--t22);--background:var(--t8);--backgroundHover:var(--t7);--backgroundPress:var(--t9);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t24);--borderColorHover:var(--t9);--borderColorFocus:var(--t24);--borderColorPress:var(--t0);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--outlineColor:var(--t210);}
|
|
1818
1830
|
@media(prefers-color-scheme:light){
|
|
1819
|
-
.t_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--
|
|
1831
|
+
.t_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--t24);--color5:var(--t0);--color6:var(--t11);--color7:var(--t12);--color8:var(--t13);--color9:var(--t14);--color10:var(--t15);--color11:var(--t16);--color12:var(--t23);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t23);--colorHover:var(--t23);--colorPress:var(--t23);--colorFocus:var(--t22);--background:var(--t8);--backgroundHover:var(--t7);--backgroundPress:var(--t9);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t24);--borderColorHover:var(--t9);--borderColorFocus:var(--t24);--borderColorPress:var(--t0);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--outlineColor:var(--t210);}
|
|
1820
1832
|
}
|
|
1821
1833
|
.t_light_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1822
|
-
:root.t_dark .t_light .t_black, :root.t_light .t_black, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--
|
|
1834
|
+
:root.t_dark .t_light .t_black, :root.t_light .t_black, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--t24);--color5:var(--t0);--color6:var(--t11);--color7:var(--t12);--color8:var(--t13);--color9:var(--t14);--color10:var(--t15);--color11:var(--t16);--color12:var(--t23);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t23);--colorHover:var(--t23);--colorPress:var(--t23);--colorFocus:var(--t22);--background:var(--t8);--backgroundHover:var(--t7);--backgroundPress:var(--t9);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t24);--borderColorHover:var(--t9);--borderColorFocus:var(--t24);--borderColorPress:var(--t0);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--outlineColor:var(--t210);}
|
|
1823
1835
|
@media(prefers-color-scheme:light){
|
|
1824
|
-
.t_black {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--
|
|
1836
|
+
.t_black {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t2);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t7);--color2:var(--t8);--color3:var(--t9);--color4:var(--t24);--color5:var(--t0);--color6:var(--t11);--color7:var(--t12);--color8:var(--t13);--color9:var(--t14);--color10:var(--t15);--color11:var(--t16);--color12:var(--t23);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t23);--colorHover:var(--t23);--colorPress:var(--t23);--colorFocus:var(--t22);--background:var(--t8);--backgroundHover:var(--t7);--backgroundPress:var(--t9);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t24);--borderColorHover:var(--t9);--borderColorFocus:var(--t24);--borderColorPress:var(--t0);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--outlineColor:var(--t210);}
|
|
1825
1837
|
}
|
|
1826
1838
|
.t_light_black ::selection{background:var(--color5);color:var(--color11)}
|
|
1827
|
-
:root.t_dark .t_light .t_black_Button, :root.t_dark .t_light .t_black_SliderThumb, :root.t_dark .t_light .t_black_Switch, :root.t_dark .t_light .t_black_surface2, :root.t_light .t_black_Button, :root.t_light .t_black_SliderThumb, :root.t_light .t_black_Switch, :root.t_light .t_black_surface2, .tm_xxt {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--
|
|
1839
|
+
:root.t_dark .t_light .t_black_Button, :root.t_dark .t_light .t_black_SliderThumb, :root.t_dark .t_light .t_black_Switch, :root.t_dark .t_light .t_black_surface2, :root.t_light .t_black_Button, :root.t_light .t_black_SliderThumb, :root.t_light .t_black_Switch, :root.t_light .t_black_surface2, .tm_xxt {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--t23);--background:var(--t24);--backgroundHover:var(--t9);--backgroundPress:var(--t0);--backgroundFocus:var(--t12);--backgroundActive:var(--t24);--borderColor:var(--t11);--borderColorHover:var(--t0);--borderColorFocus:var(--t11);--borderColorPress:var(--t12);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t210);}
|
|
1828
1840
|
@media(prefers-color-scheme:light){
|
|
1829
|
-
.t_black_Button, .t_black_SliderThumb, .t_black_Switch, .t_black_surface2 {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--
|
|
1841
|
+
.t_black_Button, .t_black_SliderThumb, .t_black_Switch, .t_black_surface2 {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--t23);--background:var(--t24);--backgroundHover:var(--t9);--backgroundPress:var(--t0);--backgroundFocus:var(--t12);--backgroundActive:var(--t24);--borderColor:var(--t11);--borderColorHover:var(--t0);--borderColorFocus:var(--t11);--borderColorPress:var(--t12);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t210);}
|
|
1830
1842
|
}
|
|
1831
|
-
:root.t_dark .t_light .t_black_Input, :root.t_dark .t_light .t_black_Progress, :root.t_dark .t_light .t_black_Slider, :root.t_dark .t_light .t_black_TextArea, :root.t_dark .t_light .t_black_surface1, :root.t_light .t_black_Input, :root.t_light .t_black_Progress, :root.t_light .t_black_Slider, :root.t_light .t_black_TextArea, :root.t_light .t_black_surface1, .tm_xxt {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--
|
|
1843
|
+
:root.t_dark .t_light .t_black_Input, :root.t_dark .t_light .t_black_Progress, :root.t_dark .t_light .t_black_Slider, :root.t_dark .t_light .t_black_TextArea, :root.t_dark .t_light .t_black_surface1, :root.t_light .t_black_Input, :root.t_light .t_black_Progress, :root.t_light .t_black_Slider, :root.t_light .t_black_TextArea, :root.t_light .t_black_surface1, .tm_xxt {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--t23);--background:var(--t9);--backgroundHover:var(--t8);--backgroundPress:var(--t24);--backgroundFocus:var(--t0);--backgroundActive:var(--t9);--borderColor:var(--t0);--borderColorHover:var(--t24);--borderColorFocus:var(--t0);--borderColorPress:var(--t11);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t210);}
|
|
1832
1844
|
@media(prefers-color-scheme:light){
|
|
1833
|
-
.t_black_Input, .t_black_Progress, .t_black_Slider, .t_black_TextArea, .t_black_surface1 {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--
|
|
1845
|
+
.t_black_Input, .t_black_Progress, .t_black_Slider, .t_black_TextArea, .t_black_surface1 {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--t23);--background:var(--t9);--backgroundHover:var(--t8);--backgroundPress:var(--t24);--backgroundFocus:var(--t0);--backgroundActive:var(--t9);--borderColor:var(--t0);--borderColorHover:var(--t24);--borderColorFocus:var(--t0);--borderColorPress:var(--t11);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t210);}
|
|
1834
1846
|
}
|
|
1835
|
-
:root.t_dark .t_light .t_black_ProgressIndicator, :root.t_dark .t_light .t_black_SliderActive, :root.t_light .t_black_ProgressIndicator, :root.t_light .t_black_SliderActive, .tm_xxt {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--
|
|
1847
|
+
:root.t_dark .t_light .t_black_ProgressIndicator, :root.t_dark .t_light .t_black_SliderActive, :root.t_light .t_black_ProgressIndicator, :root.t_light .t_black_SliderActive, .tm_xxt {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--t23);--background:var(--t11);--backgroundHover:var(--t0);--backgroundPress:var(--t12);--backgroundFocus:var(--t16);--backgroundActive:var(--t11);--borderColor:var(--t13);--borderColorHover:var(--t12);--borderColorFocus:var(--t13);--borderColorPress:var(--t14);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t210);}
|
|
1836
1848
|
@media(prefers-color-scheme:light){
|
|
1837
|
-
.t_black_ProgressIndicator, .t_black_SliderActive {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--
|
|
1849
|
+
.t_black_ProgressIndicator, .t_black_SliderActive {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--t23);--background:var(--t11);--backgroundHover:var(--t0);--backgroundPress:var(--t12);--backgroundFocus:var(--t16);--backgroundActive:var(--t11);--borderColor:var(--t13);--borderColorHover:var(--t12);--borderColorFocus:var(--t13);--borderColorPress:var(--t14);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t210);}
|
|
1838
1850
|
}
|
|
1839
|
-
:root.t_dark .t_light .t_black_SwitchThumb, :root.t_dark .t_light .t_black_Tooltip, :root.t_dark .t_light .t_black_accent, :root.t_light .t_black_SwitchThumb, :root.t_light .t_black_Tooltip, :root.t_light .t_black_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t18);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--
|
|
1851
|
+
:root.t_dark .t_light .t_black_SwitchThumb, :root.t_dark .t_light .t_black_Tooltip, :root.t_dark .t_light .t_black_accent, :root.t_light .t_black_SwitchThumb, :root.t_light .t_black_Tooltip, :root.t_light .t_black_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t18);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t23);--color2:var(--t16);--color3:var(--t15);--color4:var(--t14);--color5:var(--t13);--color6:var(--t12);--color7:var(--t11);--color8:var(--t0);--color9:var(--t24);--color10:var(--t9);--color11:var(--t8);--color12:var(--t7);--color0:var(--t2);--color02:var(--t211);--color04:var(--t212);--color06:var(--t213);--color08:var(--t214);--color:var(--t7);--colorHover:var(--t7);--colorPress:var(--t7);--colorFocus:var(--t214);--background:var(--t16);--backgroundHover:var(--t23);--backgroundPress:var(--t15);--backgroundFocus:var(--t15);--backgroundActive:var(--t16);--borderColor:var(--t14);--borderColorHover:var(--t15);--borderColorFocus:var(--t14);--borderColorPress:var(--t13);--placeholderColor:var(--t24);--colorTransparent:var(--t2);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--outlineColor:var(--t210);}
|
|
1840
1852
|
@media(prefers-color-scheme:light){
|
|
1841
|
-
.t_black_SwitchThumb, .t_black_Tooltip, .t_black_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t18);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--
|
|
1853
|
+
.t_black_SwitchThumb, .t_black_Tooltip, .t_black_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t18);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--color1:var(--t23);--color2:var(--t16);--color3:var(--t15);--color4:var(--t14);--color5:var(--t13);--color6:var(--t12);--color7:var(--t11);--color8:var(--t0);--color9:var(--t24);--color10:var(--t9);--color11:var(--t8);--color12:var(--t7);--color0:var(--t2);--color02:var(--t211);--color04:var(--t212);--color06:var(--t213);--color08:var(--t214);--color:var(--t7);--colorHover:var(--t7);--colorPress:var(--t7);--colorFocus:var(--t214);--background:var(--t16);--backgroundHover:var(--t23);--backgroundPress:var(--t15);--backgroundFocus:var(--t15);--backgroundActive:var(--t16);--borderColor:var(--t14);--borderColorHover:var(--t15);--borderColorFocus:var(--t14);--borderColorPress:var(--t13);--placeholderColor:var(--t24);--colorTransparent:var(--t2);--color01:var(--t198);--color0075:var(--t199);--color005:var(--t200);--color0025:var(--t201);--color002:var(--t202);--color001:var(--t203);--background01:var(--t204);--background0075:var(--t205);--background005:var(--t206);--background0025:var(--t207);--background002:var(--t208);--background001:var(--t209);--outlineColor:var(--t210);}
|
|
1842
1854
|
}
|
|
1843
1855
|
.t_light_black_SwitchThumb ::selection, .t_light_black_Tooltip ::selection, .t_light_black_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1844
|
-
:root.t_dark .t_light .t_blue, :root.t_light .t_blue, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1856
|
+
:root.t_dark .t_light .t_blue, :root.t_light .t_blue, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t734);--background02:var(--t735);--background04:var(--t736);--background06:var(--t737);--background08:var(--t738);--color1:var(--t739);--color2:var(--t740);--color3:var(--t741);--color4:var(--t742);--color5:var(--t743);--color6:var(--t744);--color7:var(--t745);--color8:var(--t746);--color9:var(--t250);--color10:var(--t747);--color11:var(--t748);--color12:var(--t749);--color0:var(--t750);--color02:var(--t751);--color04:var(--t752);--color06:var(--t753);--color08:var(--t754);--color:var(--t749);--colorHover:var(--t749);--colorPress:var(--t749);--colorFocus:var(--t754);--background:var(--t740);--backgroundHover:var(--t739);--backgroundPress:var(--t741);--backgroundFocus:var(--t741);--backgroundActive:var(--t740);--borderColor:var(--t742);--borderColorHover:var(--t741);--borderColorFocus:var(--t742);--borderColorPress:var(--t743);--placeholderColor:var(--t250);--colorTransparent:var(--t750);--color01:var(--t755);--color0075:var(--t756);--color005:var(--t757);--color0025:var(--t758);--color002:var(--t759);--color001:var(--t760);--background01:var(--t761);--background0075:var(--t762);--background005:var(--t763);--background0025:var(--t764);--background002:var(--t765);--background001:var(--t766);--outlineColor:var(--t767);}
|
|
1845
1857
|
@media(prefers-color-scheme:light){
|
|
1846
|
-
.t_blue {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1858
|
+
.t_blue {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t734);--background02:var(--t735);--background04:var(--t736);--background06:var(--t737);--background08:var(--t738);--color1:var(--t739);--color2:var(--t740);--color3:var(--t741);--color4:var(--t742);--color5:var(--t743);--color6:var(--t744);--color7:var(--t745);--color8:var(--t746);--color9:var(--t250);--color10:var(--t747);--color11:var(--t748);--color12:var(--t749);--color0:var(--t750);--color02:var(--t751);--color04:var(--t752);--color06:var(--t753);--color08:var(--t754);--color:var(--t749);--colorHover:var(--t749);--colorPress:var(--t749);--colorFocus:var(--t754);--background:var(--t740);--backgroundHover:var(--t739);--backgroundPress:var(--t741);--backgroundFocus:var(--t741);--backgroundActive:var(--t740);--borderColor:var(--t742);--borderColorHover:var(--t741);--borderColorFocus:var(--t742);--borderColorPress:var(--t743);--placeholderColor:var(--t250);--colorTransparent:var(--t750);--color01:var(--t755);--color0075:var(--t756);--color005:var(--t757);--color0025:var(--t758);--color002:var(--t759);--color001:var(--t760);--background01:var(--t761);--background0075:var(--t762);--background005:var(--t763);--background0025:var(--t764);--background002:var(--t765);--background001:var(--t766);--outlineColor:var(--t767);}
|
|
1847
1859
|
}
|
|
1848
1860
|
.t_light_blue ::selection{background:var(--color5);color:var(--color11)}
|
|
1849
|
-
:root.t_dark .t_light .t_blue_Button, :root.t_dark .t_light .t_blue_SliderThumb, :root.t_dark .t_light .t_blue_Switch, :root.t_dark .t_light .t_blue_surface2, :root.t_light .t_blue_Button, :root.t_light .t_blue_SliderThumb, :root.t_light .t_blue_Switch, :root.t_light .t_blue_surface2, .tm_xxt {--color:var(--
|
|
1861
|
+
:root.t_dark .t_light .t_blue_Button, :root.t_dark .t_light .t_blue_SliderThumb, :root.t_dark .t_light .t_blue_Switch, :root.t_dark .t_light .t_blue_surface2, :root.t_light .t_blue_Button, :root.t_light .t_blue_SliderThumb, :root.t_light .t_blue_Switch, :root.t_light .t_blue_surface2, .tm_xxt {--color:var(--t748);--colorHover:var(--t748);--colorPress:var(--t748);--colorFocus:var(--t749);--background:var(--t742);--backgroundHover:var(--t741);--backgroundPress:var(--t743);--backgroundFocus:var(--t745);--backgroundActive:var(--t742);--borderColor:var(--t744);--borderColorHover:var(--t743);--borderColorFocus:var(--t744);--borderColorPress:var(--t745);--color01:var(--t755);--color0075:var(--t756);--color005:var(--t757);--color0025:var(--t758);--color002:var(--t759);--color001:var(--t760);--background01:var(--t761);--background0075:var(--t762);--background005:var(--t763);--background0025:var(--t764);--background002:var(--t765);--background001:var(--t766);--background02:var(--t735);--background04:var(--t736);--background06:var(--t737);--background08:var(--t738);--outlineColor:var(--t767);}
|
|
1850
1862
|
@media(prefers-color-scheme:light){
|
|
1851
|
-
.t_blue_Button, .t_blue_SliderThumb, .t_blue_Switch, .t_blue_surface2 {--color:var(--
|
|
1863
|
+
.t_blue_Button, .t_blue_SliderThumb, .t_blue_Switch, .t_blue_surface2 {--color:var(--t748);--colorHover:var(--t748);--colorPress:var(--t748);--colorFocus:var(--t749);--background:var(--t742);--backgroundHover:var(--t741);--backgroundPress:var(--t743);--backgroundFocus:var(--t745);--backgroundActive:var(--t742);--borderColor:var(--t744);--borderColorHover:var(--t743);--borderColorFocus:var(--t744);--borderColorPress:var(--t745);--color01:var(--t755);--color0075:var(--t756);--color005:var(--t757);--color0025:var(--t758);--color002:var(--t759);--color001:var(--t760);--background01:var(--t761);--background0075:var(--t762);--background005:var(--t763);--background0025:var(--t764);--background002:var(--t765);--background001:var(--t766);--background02:var(--t735);--background04:var(--t736);--background06:var(--t737);--background08:var(--t738);--outlineColor:var(--t767);}
|
|
1852
1864
|
}
|
|
1853
|
-
:root.t_dark .t_light .t_blue_Input, :root.t_dark .t_light .t_blue_Progress, :root.t_dark .t_light .t_blue_Slider, :root.t_dark .t_light .t_blue_TextArea, :root.t_dark .t_light .t_blue_surface1, :root.t_light .t_blue_Input, :root.t_light .t_blue_Progress, :root.t_light .t_blue_Slider, :root.t_light .t_blue_TextArea, :root.t_light .t_blue_surface1, .tm_xxt {--color:var(--
|
|
1865
|
+
:root.t_dark .t_light .t_blue_Input, :root.t_dark .t_light .t_blue_Progress, :root.t_dark .t_light .t_blue_Slider, :root.t_dark .t_light .t_blue_TextArea, :root.t_dark .t_light .t_blue_surface1, :root.t_light .t_blue_Input, :root.t_light .t_blue_Progress, :root.t_light .t_blue_Slider, :root.t_light .t_blue_TextArea, :root.t_light .t_blue_surface1, .tm_xxt {--color:var(--t748);--colorHover:var(--t748);--colorPress:var(--t748);--colorFocus:var(--t749);--background:var(--t741);--backgroundHover:var(--t740);--backgroundPress:var(--t742);--backgroundFocus:var(--t743);--backgroundActive:var(--t741);--borderColor:var(--t743);--borderColorHover:var(--t742);--borderColorFocus:var(--t743);--borderColorPress:var(--t744);--color01:var(--t755);--color0075:var(--t756);--color005:var(--t757);--color0025:var(--t758);--color002:var(--t759);--color001:var(--t760);--background01:var(--t761);--background0075:var(--t762);--background005:var(--t763);--background0025:var(--t764);--background002:var(--t765);--background001:var(--t766);--background02:var(--t735);--background04:var(--t736);--background06:var(--t737);--background08:var(--t738);--outlineColor:var(--t767);}
|
|
1854
1866
|
@media(prefers-color-scheme:light){
|
|
1855
|
-
.t_blue_Input, .t_blue_Progress, .t_blue_Slider, .t_blue_TextArea, .t_blue_surface1 {--color:var(--
|
|
1867
|
+
.t_blue_Input, .t_blue_Progress, .t_blue_Slider, .t_blue_TextArea, .t_blue_surface1 {--color:var(--t748);--colorHover:var(--t748);--colorPress:var(--t748);--colorFocus:var(--t749);--background:var(--t741);--backgroundHover:var(--t740);--backgroundPress:var(--t742);--backgroundFocus:var(--t743);--backgroundActive:var(--t741);--borderColor:var(--t743);--borderColorHover:var(--t742);--borderColorFocus:var(--t743);--borderColorPress:var(--t744);--color01:var(--t755);--color0075:var(--t756);--color005:var(--t757);--color0025:var(--t758);--color002:var(--t759);--color001:var(--t760);--background01:var(--t761);--background0075:var(--t762);--background005:var(--t763);--background0025:var(--t764);--background002:var(--t765);--background001:var(--t766);--background02:var(--t735);--background04:var(--t736);--background06:var(--t737);--background08:var(--t738);--outlineColor:var(--t767);}
|
|
1856
1868
|
}
|
|
1857
|
-
:root.t_dark .t_light .t_blue_ProgressIndicator, :root.t_dark .t_light .t_blue_SliderActive, :root.t_light .t_blue_ProgressIndicator, :root.t_light .t_blue_SliderActive, .tm_xxt {--color:var(--
|
|
1869
|
+
:root.t_dark .t_light .t_blue_ProgressIndicator, :root.t_dark .t_light .t_blue_SliderActive, :root.t_light .t_blue_ProgressIndicator, :root.t_light .t_blue_SliderActive, .tm_xxt {--color:var(--t748);--colorHover:var(--t748);--colorPress:var(--t748);--colorFocus:var(--t749);--background:var(--t744);--backgroundHover:var(--t743);--backgroundPress:var(--t745);--backgroundFocus:var(--t748);--backgroundActive:var(--t744);--borderColor:var(--t746);--borderColorHover:var(--t745);--borderColorFocus:var(--t746);--borderColorPress:var(--t250);--color01:var(--t755);--color0075:var(--t756);--color005:var(--t757);--color0025:var(--t758);--color002:var(--t759);--color001:var(--t760);--background01:var(--t761);--background0075:var(--t762);--background005:var(--t763);--background0025:var(--t764);--background002:var(--t765);--background001:var(--t766);--background02:var(--t735);--background04:var(--t736);--background06:var(--t737);--background08:var(--t738);--outlineColor:var(--t767);}
|
|
1858
1870
|
@media(prefers-color-scheme:light){
|
|
1859
|
-
.t_blue_ProgressIndicator, .t_blue_SliderActive {--color:var(--
|
|
1871
|
+
.t_blue_ProgressIndicator, .t_blue_SliderActive {--color:var(--t748);--colorHover:var(--t748);--colorPress:var(--t748);--colorFocus:var(--t749);--background:var(--t744);--backgroundHover:var(--t743);--backgroundPress:var(--t745);--backgroundFocus:var(--t748);--backgroundActive:var(--t744);--borderColor:var(--t746);--borderColorHover:var(--t745);--borderColorFocus:var(--t746);--borderColorPress:var(--t250);--color01:var(--t755);--color0075:var(--t756);--color005:var(--t757);--color0025:var(--t758);--color002:var(--t759);--color001:var(--t760);--background01:var(--t761);--background0075:var(--t762);--background005:var(--t763);--background0025:var(--t764);--background002:var(--t765);--background001:var(--t766);--background02:var(--t735);--background04:var(--t736);--background06:var(--t737);--background08:var(--t738);--outlineColor:var(--t767);}
|
|
1860
1872
|
}
|
|
1861
|
-
:root.t_dark .t_light .t_blue_SwitchThumb, :root.t_dark .t_light .t_blue_Tooltip, :root.t_dark .t_light .t_blue_accent, :root.t_light .t_blue_SwitchThumb, :root.t_light .t_blue_Tooltip, :root.t_light .t_blue_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1873
|
+
:root.t_dark .t_light .t_blue_SwitchThumb, :root.t_dark .t_light .t_blue_Tooltip, :root.t_dark .t_light .t_blue_accent, :root.t_light .t_blue_SwitchThumb, :root.t_light .t_blue_Tooltip, :root.t_light .t_blue_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t750);--background02:var(--t735);--background04:var(--t736);--background06:var(--t737);--background08:var(--t738);--color1:var(--t749);--color2:var(--t748);--color3:var(--t747);--color4:var(--t250);--color5:var(--t746);--color6:var(--t745);--color7:var(--t744);--color8:var(--t743);--color9:var(--t742);--color10:var(--t741);--color11:var(--t740);--color12:var(--t739);--color0:var(--t734);--color02:var(--t768);--color04:var(--t769);--color06:var(--t770);--color08:var(--t771);--color:var(--t739);--colorHover:var(--t739);--colorPress:var(--t739);--colorFocus:var(--t771);--background:var(--t748);--backgroundHover:var(--t749);--backgroundPress:var(--t747);--backgroundFocus:var(--t747);--backgroundActive:var(--t748);--borderColor:var(--t250);--borderColorHover:var(--t747);--borderColorFocus:var(--t250);--borderColorPress:var(--t746);--placeholderColor:var(--t742);--colorTransparent:var(--t734);--color01:var(--t755);--color0075:var(--t756);--color005:var(--t757);--color0025:var(--t758);--color002:var(--t759);--color001:var(--t760);--background01:var(--t761);--background0075:var(--t762);--background005:var(--t763);--background0025:var(--t764);--background002:var(--t765);--background001:var(--t766);--outlineColor:var(--t767);}
|
|
1862
1874
|
@media(prefers-color-scheme:light){
|
|
1863
|
-
.t_blue_SwitchThumb, .t_blue_Tooltip, .t_blue_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1875
|
+
.t_blue_SwitchThumb, .t_blue_Tooltip, .t_blue_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t750);--background02:var(--t735);--background04:var(--t736);--background06:var(--t737);--background08:var(--t738);--color1:var(--t749);--color2:var(--t748);--color3:var(--t747);--color4:var(--t250);--color5:var(--t746);--color6:var(--t745);--color7:var(--t744);--color8:var(--t743);--color9:var(--t742);--color10:var(--t741);--color11:var(--t740);--color12:var(--t739);--color0:var(--t734);--color02:var(--t768);--color04:var(--t769);--color06:var(--t770);--color08:var(--t771);--color:var(--t739);--colorHover:var(--t739);--colorPress:var(--t739);--colorFocus:var(--t771);--background:var(--t748);--backgroundHover:var(--t749);--backgroundPress:var(--t747);--backgroundFocus:var(--t747);--backgroundActive:var(--t748);--borderColor:var(--t250);--borderColorHover:var(--t747);--borderColorFocus:var(--t250);--borderColorPress:var(--t746);--placeholderColor:var(--t742);--colorTransparent:var(--t734);--color01:var(--t755);--color0075:var(--t756);--color005:var(--t757);--color0025:var(--t758);--color002:var(--t759);--color001:var(--t760);--background01:var(--t761);--background0075:var(--t762);--background005:var(--t763);--background0025:var(--t764);--background002:var(--t765);--background001:var(--t766);--outlineColor:var(--t767);}
|
|
1864
1876
|
}
|
|
1865
1877
|
.t_light_blue_SwitchThumb ::selection, .t_light_blue_Tooltip ::selection, .t_light_blue_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1866
|
-
:root.t_dark .t_light .t_gray, :root.t_light .t_gray, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1878
|
+
:root.t_dark .t_light .t_gray, :root.t_light .t_gray, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t772);--background02:var(--t773);--background04:var(--t774);--background06:var(--t775);--background08:var(--t776);--color1:var(--t777);--color2:var(--t778);--color3:var(--t779);--color4:var(--t780);--color5:var(--t781);--color6:var(--t192);--color7:var(--t782);--color8:var(--t783);--color9:var(--t784);--color10:var(--t785);--color11:var(--t786);--color12:var(--t282);--color0:var(--t787);--color02:var(--t788);--color04:var(--t789);--color06:var(--t790);--color08:var(--t791);--color:var(--t282);--colorHover:var(--t282);--colorPress:var(--t282);--colorFocus:var(--t791);--background:var(--t778);--backgroundHover:var(--t777);--backgroundPress:var(--t779);--backgroundFocus:var(--t779);--backgroundActive:var(--t778);--borderColor:var(--t780);--borderColorHover:var(--t779);--borderColorFocus:var(--t780);--borderColorPress:var(--t781);--placeholderColor:var(--t784);--colorTransparent:var(--t787);--color01:var(--t792);--color0075:var(--t793);--color005:var(--t794);--color0025:var(--t795);--color002:var(--t796);--color001:var(--t797);--background01:var(--t798);--background0075:var(--t799);--background005:var(--t800);--background0025:var(--t801);--background002:var(--t802);--background001:var(--t803);--outlineColor:var(--t804);}
|
|
1867
1879
|
@media(prefers-color-scheme:light){
|
|
1868
|
-
.t_gray {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1880
|
+
.t_gray {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t772);--background02:var(--t773);--background04:var(--t774);--background06:var(--t775);--background08:var(--t776);--color1:var(--t777);--color2:var(--t778);--color3:var(--t779);--color4:var(--t780);--color5:var(--t781);--color6:var(--t192);--color7:var(--t782);--color8:var(--t783);--color9:var(--t784);--color10:var(--t785);--color11:var(--t786);--color12:var(--t282);--color0:var(--t787);--color02:var(--t788);--color04:var(--t789);--color06:var(--t790);--color08:var(--t791);--color:var(--t282);--colorHover:var(--t282);--colorPress:var(--t282);--colorFocus:var(--t791);--background:var(--t778);--backgroundHover:var(--t777);--backgroundPress:var(--t779);--backgroundFocus:var(--t779);--backgroundActive:var(--t778);--borderColor:var(--t780);--borderColorHover:var(--t779);--borderColorFocus:var(--t780);--borderColorPress:var(--t781);--placeholderColor:var(--t784);--colorTransparent:var(--t787);--color01:var(--t792);--color0075:var(--t793);--color005:var(--t794);--color0025:var(--t795);--color002:var(--t796);--color001:var(--t797);--background01:var(--t798);--background0075:var(--t799);--background005:var(--t800);--background0025:var(--t801);--background002:var(--t802);--background001:var(--t803);--outlineColor:var(--t804);}
|
|
1869
1881
|
}
|
|
1870
1882
|
.t_light_gray ::selection{background:var(--color5);color:var(--color11)}
|
|
1871
|
-
:root.t_dark .t_light .t_gray_Button, :root.t_dark .t_light .t_gray_SliderThumb, :root.t_dark .t_light .t_gray_Switch, :root.t_dark .t_light .t_gray_surface2, :root.t_light .t_gray_Button, :root.t_light .t_gray_SliderThumb, :root.t_light .t_gray_Switch, :root.t_light .t_gray_surface2, .tm_xxt {--color:var(--
|
|
1883
|
+
:root.t_dark .t_light .t_gray_Button, :root.t_dark .t_light .t_gray_SliderThumb, :root.t_dark .t_light .t_gray_Switch, :root.t_dark .t_light .t_gray_surface2, :root.t_light .t_gray_Button, :root.t_light .t_gray_SliderThumb, :root.t_light .t_gray_Switch, :root.t_light .t_gray_surface2, .tm_xxt {--color:var(--t786);--colorHover:var(--t786);--colorPress:var(--t786);--colorFocus:var(--t282);--background:var(--t780);--backgroundHover:var(--t779);--backgroundPress:var(--t781);--backgroundFocus:var(--t782);--backgroundActive:var(--t780);--borderColor:var(--t192);--borderColorHover:var(--t781);--borderColorFocus:var(--t192);--borderColorPress:var(--t782);--color01:var(--t792);--color0075:var(--t793);--color005:var(--t794);--color0025:var(--t795);--color002:var(--t796);--color001:var(--t797);--background01:var(--t798);--background0075:var(--t799);--background005:var(--t800);--background0025:var(--t801);--background002:var(--t802);--background001:var(--t803);--background02:var(--t773);--background04:var(--t774);--background06:var(--t775);--background08:var(--t776);--outlineColor:var(--t804);}
|
|
1872
1884
|
@media(prefers-color-scheme:light){
|
|
1873
|
-
.t_gray_Button, .t_gray_SliderThumb, .t_gray_Switch, .t_gray_surface2 {--color:var(--
|
|
1885
|
+
.t_gray_Button, .t_gray_SliderThumb, .t_gray_Switch, .t_gray_surface2 {--color:var(--t786);--colorHover:var(--t786);--colorPress:var(--t786);--colorFocus:var(--t282);--background:var(--t780);--backgroundHover:var(--t779);--backgroundPress:var(--t781);--backgroundFocus:var(--t782);--backgroundActive:var(--t780);--borderColor:var(--t192);--borderColorHover:var(--t781);--borderColorFocus:var(--t192);--borderColorPress:var(--t782);--color01:var(--t792);--color0075:var(--t793);--color005:var(--t794);--color0025:var(--t795);--color002:var(--t796);--color001:var(--t797);--background01:var(--t798);--background0075:var(--t799);--background005:var(--t800);--background0025:var(--t801);--background002:var(--t802);--background001:var(--t803);--background02:var(--t773);--background04:var(--t774);--background06:var(--t775);--background08:var(--t776);--outlineColor:var(--t804);}
|
|
1874
1886
|
}
|
|
1875
|
-
:root.t_dark .t_light .t_gray_Input, :root.t_dark .t_light .t_gray_Progress, :root.t_dark .t_light .t_gray_Slider, :root.t_dark .t_light .t_gray_TextArea, :root.t_dark .t_light .t_gray_surface1, :root.t_light .t_gray_Input, :root.t_light .t_gray_Progress, :root.t_light .t_gray_Slider, :root.t_light .t_gray_TextArea, :root.t_light .t_gray_surface1, .tm_xxt {--color:var(--
|
|
1887
|
+
:root.t_dark .t_light .t_gray_Input, :root.t_dark .t_light .t_gray_Progress, :root.t_dark .t_light .t_gray_Slider, :root.t_dark .t_light .t_gray_TextArea, :root.t_dark .t_light .t_gray_surface1, :root.t_light .t_gray_Input, :root.t_light .t_gray_Progress, :root.t_light .t_gray_Slider, :root.t_light .t_gray_TextArea, :root.t_light .t_gray_surface1, .tm_xxt {--color:var(--t786);--colorHover:var(--t786);--colorPress:var(--t786);--colorFocus:var(--t282);--background:var(--t779);--backgroundHover:var(--t778);--backgroundPress:var(--t780);--backgroundFocus:var(--t781);--backgroundActive:var(--t779);--borderColor:var(--t781);--borderColorHover:var(--t780);--borderColorFocus:var(--t781);--borderColorPress:var(--t192);--color01:var(--t792);--color0075:var(--t793);--color005:var(--t794);--color0025:var(--t795);--color002:var(--t796);--color001:var(--t797);--background01:var(--t798);--background0075:var(--t799);--background005:var(--t800);--background0025:var(--t801);--background002:var(--t802);--background001:var(--t803);--background02:var(--t773);--background04:var(--t774);--background06:var(--t775);--background08:var(--t776);--outlineColor:var(--t804);}
|
|
1876
1888
|
@media(prefers-color-scheme:light){
|
|
1877
|
-
.t_gray_Input, .t_gray_Progress, .t_gray_Slider, .t_gray_TextArea, .t_gray_surface1 {--color:var(--
|
|
1889
|
+
.t_gray_Input, .t_gray_Progress, .t_gray_Slider, .t_gray_TextArea, .t_gray_surface1 {--color:var(--t786);--colorHover:var(--t786);--colorPress:var(--t786);--colorFocus:var(--t282);--background:var(--t779);--backgroundHover:var(--t778);--backgroundPress:var(--t780);--backgroundFocus:var(--t781);--backgroundActive:var(--t779);--borderColor:var(--t781);--borderColorHover:var(--t780);--borderColorFocus:var(--t781);--borderColorPress:var(--t192);--color01:var(--t792);--color0075:var(--t793);--color005:var(--t794);--color0025:var(--t795);--color002:var(--t796);--color001:var(--t797);--background01:var(--t798);--background0075:var(--t799);--background005:var(--t800);--background0025:var(--t801);--background002:var(--t802);--background001:var(--t803);--background02:var(--t773);--background04:var(--t774);--background06:var(--t775);--background08:var(--t776);--outlineColor:var(--t804);}
|
|
1878
1890
|
}
|
|
1879
|
-
:root.t_dark .t_light .t_gray_ProgressIndicator, :root.t_dark .t_light .t_gray_SliderActive, :root.t_light .t_gray_ProgressIndicator, :root.t_light .t_gray_SliderActive, .tm_xxt {--color:var(--
|
|
1891
|
+
:root.t_dark .t_light .t_gray_ProgressIndicator, :root.t_dark .t_light .t_gray_SliderActive, :root.t_light .t_gray_ProgressIndicator, :root.t_light .t_gray_SliderActive, .tm_xxt {--color:var(--t786);--colorHover:var(--t786);--colorPress:var(--t786);--colorFocus:var(--t282);--background:var(--t192);--backgroundHover:var(--t781);--backgroundPress:var(--t782);--backgroundFocus:var(--t786);--backgroundActive:var(--t192);--borderColor:var(--t783);--borderColorHover:var(--t782);--borderColorFocus:var(--t783);--borderColorPress:var(--t784);--color01:var(--t792);--color0075:var(--t793);--color005:var(--t794);--color0025:var(--t795);--color002:var(--t796);--color001:var(--t797);--background01:var(--t798);--background0075:var(--t799);--background005:var(--t800);--background0025:var(--t801);--background002:var(--t802);--background001:var(--t803);--background02:var(--t773);--background04:var(--t774);--background06:var(--t775);--background08:var(--t776);--outlineColor:var(--t804);}
|
|
1880
1892
|
@media(prefers-color-scheme:light){
|
|
1881
|
-
.t_gray_ProgressIndicator, .t_gray_SliderActive {--color:var(--
|
|
1893
|
+
.t_gray_ProgressIndicator, .t_gray_SliderActive {--color:var(--t786);--colorHover:var(--t786);--colorPress:var(--t786);--colorFocus:var(--t282);--background:var(--t192);--backgroundHover:var(--t781);--backgroundPress:var(--t782);--backgroundFocus:var(--t786);--backgroundActive:var(--t192);--borderColor:var(--t783);--borderColorHover:var(--t782);--borderColorFocus:var(--t783);--borderColorPress:var(--t784);--color01:var(--t792);--color0075:var(--t793);--color005:var(--t794);--color0025:var(--t795);--color002:var(--t796);--color001:var(--t797);--background01:var(--t798);--background0075:var(--t799);--background005:var(--t800);--background0025:var(--t801);--background002:var(--t802);--background001:var(--t803);--background02:var(--t773);--background04:var(--t774);--background06:var(--t775);--background08:var(--t776);--outlineColor:var(--t804);}
|
|
1882
1894
|
}
|
|
1883
|
-
:root.t_dark .t_light .t_gray_SwitchThumb, :root.t_dark .t_light .t_gray_Tooltip, :root.t_dark .t_light .t_gray_accent, :root.t_light .t_gray_SwitchThumb, :root.t_light .t_gray_Tooltip, :root.t_light .t_gray_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1895
|
+
:root.t_dark .t_light .t_gray_SwitchThumb, :root.t_dark .t_light .t_gray_Tooltip, :root.t_dark .t_light .t_gray_accent, :root.t_light .t_gray_SwitchThumb, :root.t_light .t_gray_Tooltip, :root.t_light .t_gray_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t787);--background02:var(--t773);--background04:var(--t774);--background06:var(--t775);--background08:var(--t776);--color1:var(--t282);--color2:var(--t786);--color3:var(--t785);--color4:var(--t784);--color5:var(--t783);--color6:var(--t782);--color7:var(--t192);--color8:var(--t781);--color9:var(--t780);--color10:var(--t779);--color11:var(--t778);--color12:var(--t777);--color0:var(--t772);--color02:var(--t805);--color04:var(--t806);--color06:var(--t807);--color08:var(--t808);--color:var(--t777);--colorHover:var(--t777);--colorPress:var(--t777);--colorFocus:var(--t808);--background:var(--t786);--backgroundHover:var(--t282);--backgroundPress:var(--t785);--backgroundFocus:var(--t785);--backgroundActive:var(--t786);--borderColor:var(--t784);--borderColorHover:var(--t785);--borderColorFocus:var(--t784);--borderColorPress:var(--t783);--placeholderColor:var(--t780);--colorTransparent:var(--t772);--color01:var(--t792);--color0075:var(--t793);--color005:var(--t794);--color0025:var(--t795);--color002:var(--t796);--color001:var(--t797);--background01:var(--t798);--background0075:var(--t799);--background005:var(--t800);--background0025:var(--t801);--background002:var(--t802);--background001:var(--t803);--outlineColor:var(--t804);}
|
|
1884
1896
|
@media(prefers-color-scheme:light){
|
|
1885
|
-
.t_gray_SwitchThumb, .t_gray_Tooltip, .t_gray_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1897
|
+
.t_gray_SwitchThumb, .t_gray_Tooltip, .t_gray_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t787);--background02:var(--t773);--background04:var(--t774);--background06:var(--t775);--background08:var(--t776);--color1:var(--t282);--color2:var(--t786);--color3:var(--t785);--color4:var(--t784);--color5:var(--t783);--color6:var(--t782);--color7:var(--t192);--color8:var(--t781);--color9:var(--t780);--color10:var(--t779);--color11:var(--t778);--color12:var(--t777);--color0:var(--t772);--color02:var(--t805);--color04:var(--t806);--color06:var(--t807);--color08:var(--t808);--color:var(--t777);--colorHover:var(--t777);--colorPress:var(--t777);--colorFocus:var(--t808);--background:var(--t786);--backgroundHover:var(--t282);--backgroundPress:var(--t785);--backgroundFocus:var(--t785);--backgroundActive:var(--t786);--borderColor:var(--t784);--borderColorHover:var(--t785);--borderColorFocus:var(--t784);--borderColorPress:var(--t783);--placeholderColor:var(--t780);--colorTransparent:var(--t772);--color01:var(--t792);--color0075:var(--t793);--color005:var(--t794);--color0025:var(--t795);--color002:var(--t796);--color001:var(--t797);--background01:var(--t798);--background0075:var(--t799);--background005:var(--t800);--background0025:var(--t801);--background002:var(--t802);--background001:var(--t803);--outlineColor:var(--t804);}
|
|
1886
1898
|
}
|
|
1887
1899
|
.t_light_gray_SwitchThumb ::selection, .t_light_gray_Tooltip ::selection, .t_light_gray_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1888
|
-
:root.t_dark .t_light .t_green, :root.t_light .t_green, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1900
|
+
:root.t_dark .t_light .t_green, :root.t_light .t_green, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t809);--background02:var(--t810);--background04:var(--t811);--background06:var(--t812);--background08:var(--t813);--color1:var(--t814);--color2:var(--t815);--color3:var(--t816);--color4:var(--t817);--color5:var(--t818);--color6:var(--t819);--color7:var(--t820);--color8:var(--t821);--color9:var(--t326);--color10:var(--t822);--color11:var(--t823);--color12:var(--t824);--color0:var(--t825);--color02:var(--t826);--color04:var(--t827);--color06:var(--t828);--color08:var(--t829);--color:var(--t824);--colorHover:var(--t824);--colorPress:var(--t824);--colorFocus:var(--t829);--background:var(--t815);--backgroundHover:var(--t814);--backgroundPress:var(--t816);--backgroundFocus:var(--t816);--backgroundActive:var(--t815);--borderColor:var(--t817);--borderColorHover:var(--t816);--borderColorFocus:var(--t817);--borderColorPress:var(--t818);--placeholderColor:var(--t326);--colorTransparent:var(--t825);--color01:var(--t830);--color0075:var(--t831);--color005:var(--t832);--color0025:var(--t833);--color002:var(--t834);--color001:var(--t835);--background01:var(--t836);--background0075:var(--t837);--background005:var(--t838);--background0025:var(--t839);--background002:var(--t840);--background001:var(--t841);--outlineColor:var(--t842);}
|
|
1889
1901
|
@media(prefers-color-scheme:light){
|
|
1890
|
-
.t_green {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1902
|
+
.t_green {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t809);--background02:var(--t810);--background04:var(--t811);--background06:var(--t812);--background08:var(--t813);--color1:var(--t814);--color2:var(--t815);--color3:var(--t816);--color4:var(--t817);--color5:var(--t818);--color6:var(--t819);--color7:var(--t820);--color8:var(--t821);--color9:var(--t326);--color10:var(--t822);--color11:var(--t823);--color12:var(--t824);--color0:var(--t825);--color02:var(--t826);--color04:var(--t827);--color06:var(--t828);--color08:var(--t829);--color:var(--t824);--colorHover:var(--t824);--colorPress:var(--t824);--colorFocus:var(--t829);--background:var(--t815);--backgroundHover:var(--t814);--backgroundPress:var(--t816);--backgroundFocus:var(--t816);--backgroundActive:var(--t815);--borderColor:var(--t817);--borderColorHover:var(--t816);--borderColorFocus:var(--t817);--borderColorPress:var(--t818);--placeholderColor:var(--t326);--colorTransparent:var(--t825);--color01:var(--t830);--color0075:var(--t831);--color005:var(--t832);--color0025:var(--t833);--color002:var(--t834);--color001:var(--t835);--background01:var(--t836);--background0075:var(--t837);--background005:var(--t838);--background0025:var(--t839);--background002:var(--t840);--background001:var(--t841);--outlineColor:var(--t842);}
|
|
1891
1903
|
}
|
|
1892
1904
|
.t_light_green ::selection{background:var(--color5);color:var(--color11)}
|
|
1893
|
-
:root.t_dark .t_light .t_green_Button, :root.t_dark .t_light .t_green_SliderThumb, :root.t_dark .t_light .t_green_Switch, :root.t_dark .t_light .t_green_surface2, :root.t_light .t_green_Button, :root.t_light .t_green_SliderThumb, :root.t_light .t_green_Switch, :root.t_light .t_green_surface2, .tm_xxt {--color:var(--
|
|
1905
|
+
:root.t_dark .t_light .t_green_Button, :root.t_dark .t_light .t_green_SliderThumb, :root.t_dark .t_light .t_green_Switch, :root.t_dark .t_light .t_green_surface2, :root.t_light .t_green_Button, :root.t_light .t_green_SliderThumb, :root.t_light .t_green_Switch, :root.t_light .t_green_surface2, .tm_xxt {--color:var(--t823);--colorHover:var(--t823);--colorPress:var(--t823);--colorFocus:var(--t824);--background:var(--t817);--backgroundHover:var(--t816);--backgroundPress:var(--t818);--backgroundFocus:var(--t820);--backgroundActive:var(--t817);--borderColor:var(--t819);--borderColorHover:var(--t818);--borderColorFocus:var(--t819);--borderColorPress:var(--t820);--color01:var(--t830);--color0075:var(--t831);--color005:var(--t832);--color0025:var(--t833);--color002:var(--t834);--color001:var(--t835);--background01:var(--t836);--background0075:var(--t837);--background005:var(--t838);--background0025:var(--t839);--background002:var(--t840);--background001:var(--t841);--background02:var(--t810);--background04:var(--t811);--background06:var(--t812);--background08:var(--t813);--outlineColor:var(--t842);}
|
|
1894
1906
|
@media(prefers-color-scheme:light){
|
|
1895
|
-
.t_green_Button, .t_green_SliderThumb, .t_green_Switch, .t_green_surface2 {--color:var(--
|
|
1907
|
+
.t_green_Button, .t_green_SliderThumb, .t_green_Switch, .t_green_surface2 {--color:var(--t823);--colorHover:var(--t823);--colorPress:var(--t823);--colorFocus:var(--t824);--background:var(--t817);--backgroundHover:var(--t816);--backgroundPress:var(--t818);--backgroundFocus:var(--t820);--backgroundActive:var(--t817);--borderColor:var(--t819);--borderColorHover:var(--t818);--borderColorFocus:var(--t819);--borderColorPress:var(--t820);--color01:var(--t830);--color0075:var(--t831);--color005:var(--t832);--color0025:var(--t833);--color002:var(--t834);--color001:var(--t835);--background01:var(--t836);--background0075:var(--t837);--background005:var(--t838);--background0025:var(--t839);--background002:var(--t840);--background001:var(--t841);--background02:var(--t810);--background04:var(--t811);--background06:var(--t812);--background08:var(--t813);--outlineColor:var(--t842);}
|
|
1896
1908
|
}
|
|
1897
|
-
:root.t_dark .t_light .t_green_Input, :root.t_dark .t_light .t_green_Progress, :root.t_dark .t_light .t_green_Slider, :root.t_dark .t_light .t_green_TextArea, :root.t_dark .t_light .t_green_surface1, :root.t_light .t_green_Input, :root.t_light .t_green_Progress, :root.t_light .t_green_Slider, :root.t_light .t_green_TextArea, :root.t_light .t_green_surface1, .tm_xxt {--color:var(--
|
|
1909
|
+
:root.t_dark .t_light .t_green_Input, :root.t_dark .t_light .t_green_Progress, :root.t_dark .t_light .t_green_Slider, :root.t_dark .t_light .t_green_TextArea, :root.t_dark .t_light .t_green_surface1, :root.t_light .t_green_Input, :root.t_light .t_green_Progress, :root.t_light .t_green_Slider, :root.t_light .t_green_TextArea, :root.t_light .t_green_surface1, .tm_xxt {--color:var(--t823);--colorHover:var(--t823);--colorPress:var(--t823);--colorFocus:var(--t824);--background:var(--t816);--backgroundHover:var(--t815);--backgroundPress:var(--t817);--backgroundFocus:var(--t818);--backgroundActive:var(--t816);--borderColor:var(--t818);--borderColorHover:var(--t817);--borderColorFocus:var(--t818);--borderColorPress:var(--t819);--color01:var(--t830);--color0075:var(--t831);--color005:var(--t832);--color0025:var(--t833);--color002:var(--t834);--color001:var(--t835);--background01:var(--t836);--background0075:var(--t837);--background005:var(--t838);--background0025:var(--t839);--background002:var(--t840);--background001:var(--t841);--background02:var(--t810);--background04:var(--t811);--background06:var(--t812);--background08:var(--t813);--outlineColor:var(--t842);}
|
|
1898
1910
|
@media(prefers-color-scheme:light){
|
|
1899
|
-
.t_green_Input, .t_green_Progress, .t_green_Slider, .t_green_TextArea, .t_green_surface1 {--color:var(--
|
|
1911
|
+
.t_green_Input, .t_green_Progress, .t_green_Slider, .t_green_TextArea, .t_green_surface1 {--color:var(--t823);--colorHover:var(--t823);--colorPress:var(--t823);--colorFocus:var(--t824);--background:var(--t816);--backgroundHover:var(--t815);--backgroundPress:var(--t817);--backgroundFocus:var(--t818);--backgroundActive:var(--t816);--borderColor:var(--t818);--borderColorHover:var(--t817);--borderColorFocus:var(--t818);--borderColorPress:var(--t819);--color01:var(--t830);--color0075:var(--t831);--color005:var(--t832);--color0025:var(--t833);--color002:var(--t834);--color001:var(--t835);--background01:var(--t836);--background0075:var(--t837);--background005:var(--t838);--background0025:var(--t839);--background002:var(--t840);--background001:var(--t841);--background02:var(--t810);--background04:var(--t811);--background06:var(--t812);--background08:var(--t813);--outlineColor:var(--t842);}
|
|
1900
1912
|
}
|
|
1901
|
-
:root.t_dark .t_light .t_green_ProgressIndicator, :root.t_dark .t_light .t_green_SliderActive, :root.t_light .t_green_ProgressIndicator, :root.t_light .t_green_SliderActive, .tm_xxt {--color:var(--
|
|
1913
|
+
:root.t_dark .t_light .t_green_ProgressIndicator, :root.t_dark .t_light .t_green_SliderActive, :root.t_light .t_green_ProgressIndicator, :root.t_light .t_green_SliderActive, .tm_xxt {--color:var(--t823);--colorHover:var(--t823);--colorPress:var(--t823);--colorFocus:var(--t824);--background:var(--t819);--backgroundHover:var(--t818);--backgroundPress:var(--t820);--backgroundFocus:var(--t823);--backgroundActive:var(--t819);--borderColor:var(--t821);--borderColorHover:var(--t820);--borderColorFocus:var(--t821);--borderColorPress:var(--t326);--color01:var(--t830);--color0075:var(--t831);--color005:var(--t832);--color0025:var(--t833);--color002:var(--t834);--color001:var(--t835);--background01:var(--t836);--background0075:var(--t837);--background005:var(--t838);--background0025:var(--t839);--background002:var(--t840);--background001:var(--t841);--background02:var(--t810);--background04:var(--t811);--background06:var(--t812);--background08:var(--t813);--outlineColor:var(--t842);}
|
|
1902
1914
|
@media(prefers-color-scheme:light){
|
|
1903
|
-
.t_green_ProgressIndicator, .t_green_SliderActive {--color:var(--
|
|
1915
|
+
.t_green_ProgressIndicator, .t_green_SliderActive {--color:var(--t823);--colorHover:var(--t823);--colorPress:var(--t823);--colorFocus:var(--t824);--background:var(--t819);--backgroundHover:var(--t818);--backgroundPress:var(--t820);--backgroundFocus:var(--t823);--backgroundActive:var(--t819);--borderColor:var(--t821);--borderColorHover:var(--t820);--borderColorFocus:var(--t821);--borderColorPress:var(--t326);--color01:var(--t830);--color0075:var(--t831);--color005:var(--t832);--color0025:var(--t833);--color002:var(--t834);--color001:var(--t835);--background01:var(--t836);--background0075:var(--t837);--background005:var(--t838);--background0025:var(--t839);--background002:var(--t840);--background001:var(--t841);--background02:var(--t810);--background04:var(--t811);--background06:var(--t812);--background08:var(--t813);--outlineColor:var(--t842);}
|
|
1904
1916
|
}
|
|
1905
|
-
:root.t_dark .t_light .t_green_SwitchThumb, :root.t_dark .t_light .t_green_Tooltip, :root.t_dark .t_light .t_green_accent, :root.t_light .t_green_SwitchThumb, :root.t_light .t_green_Tooltip, :root.t_light .t_green_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1917
|
+
:root.t_dark .t_light .t_green_SwitchThumb, :root.t_dark .t_light .t_green_Tooltip, :root.t_dark .t_light .t_green_accent, :root.t_light .t_green_SwitchThumb, :root.t_light .t_green_Tooltip, :root.t_light .t_green_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t825);--background02:var(--t810);--background04:var(--t811);--background06:var(--t812);--background08:var(--t813);--color1:var(--t824);--color2:var(--t823);--color3:var(--t822);--color4:var(--t326);--color5:var(--t821);--color6:var(--t820);--color7:var(--t819);--color8:var(--t818);--color9:var(--t817);--color10:var(--t816);--color11:var(--t815);--color12:var(--t814);--color0:var(--t809);--color02:var(--t843);--color04:var(--t844);--color06:var(--t845);--color08:var(--t846);--color:var(--t814);--colorHover:var(--t814);--colorPress:var(--t814);--colorFocus:var(--t846);--background:var(--t823);--backgroundHover:var(--t824);--backgroundPress:var(--t822);--backgroundFocus:var(--t822);--backgroundActive:var(--t823);--borderColor:var(--t326);--borderColorHover:var(--t822);--borderColorFocus:var(--t326);--borderColorPress:var(--t821);--placeholderColor:var(--t817);--colorTransparent:var(--t809);--color01:var(--t830);--color0075:var(--t831);--color005:var(--t832);--color0025:var(--t833);--color002:var(--t834);--color001:var(--t835);--background01:var(--t836);--background0075:var(--t837);--background005:var(--t838);--background0025:var(--t839);--background002:var(--t840);--background001:var(--t841);--outlineColor:var(--t842);}
|
|
1906
1918
|
@media(prefers-color-scheme:light){
|
|
1907
|
-
.t_green_SwitchThumb, .t_green_Tooltip, .t_green_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1919
|
+
.t_green_SwitchThumb, .t_green_Tooltip, .t_green_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t825);--background02:var(--t810);--background04:var(--t811);--background06:var(--t812);--background08:var(--t813);--color1:var(--t824);--color2:var(--t823);--color3:var(--t822);--color4:var(--t326);--color5:var(--t821);--color6:var(--t820);--color7:var(--t819);--color8:var(--t818);--color9:var(--t817);--color10:var(--t816);--color11:var(--t815);--color12:var(--t814);--color0:var(--t809);--color02:var(--t843);--color04:var(--t844);--color06:var(--t845);--color08:var(--t846);--color:var(--t814);--colorHover:var(--t814);--colorPress:var(--t814);--colorFocus:var(--t846);--background:var(--t823);--backgroundHover:var(--t824);--backgroundPress:var(--t822);--backgroundFocus:var(--t822);--backgroundActive:var(--t823);--borderColor:var(--t326);--borderColorHover:var(--t822);--borderColorFocus:var(--t326);--borderColorPress:var(--t821);--placeholderColor:var(--t817);--colorTransparent:var(--t809);--color01:var(--t830);--color0075:var(--t831);--color005:var(--t832);--color0025:var(--t833);--color002:var(--t834);--color001:var(--t835);--background01:var(--t836);--background0075:var(--t837);--background005:var(--t838);--background0025:var(--t839);--background002:var(--t840);--background001:var(--t841);--outlineColor:var(--t842);}
|
|
1908
1920
|
}
|
|
1909
1921
|
.t_light_green_SwitchThumb ::selection, .t_light_green_Tooltip ::selection, .t_light_green_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1910
|
-
:root.t_dark .t_light .t_neutral, :root.t_light .t_neutral, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1922
|
+
:root.t_dark .t_light .t_neutral, :root.t_light .t_neutral, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t352);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--color1:var(--t357);--color2:var(--t358);--color3:var(--t359);--color4:var(--t194);--color5:var(--t360);--color6:var(--t361);--color7:var(--t362);--color8:var(--t13);--color9:var(--t363);--color10:var(--t364);--color11:var(--t287);--color12:var(--t365);--color0:var(--t366);--color02:var(--t367);--color04:var(--t368);--color06:var(--t369);--color08:var(--t370);--color:var(--t365);--colorHover:var(--t365);--colorPress:var(--t365);--colorFocus:var(--t370);--background:var(--t358);--backgroundHover:var(--t357);--backgroundPress:var(--t359);--backgroundFocus:var(--t359);--backgroundActive:var(--t358);--borderColor:var(--t194);--borderColorHover:var(--t359);--borderColorFocus:var(--t194);--borderColorPress:var(--t360);--placeholderColor:var(--t363);--colorTransparent:var(--t366);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--outlineColor:var(--t383);}
|
|
1911
1923
|
@media(prefers-color-scheme:light){
|
|
1912
|
-
.t_neutral {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1924
|
+
.t_neutral {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t352);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--color1:var(--t357);--color2:var(--t358);--color3:var(--t359);--color4:var(--t194);--color5:var(--t360);--color6:var(--t361);--color7:var(--t362);--color8:var(--t13);--color9:var(--t363);--color10:var(--t364);--color11:var(--t287);--color12:var(--t365);--color0:var(--t366);--color02:var(--t367);--color04:var(--t368);--color06:var(--t369);--color08:var(--t370);--color:var(--t365);--colorHover:var(--t365);--colorPress:var(--t365);--colorFocus:var(--t370);--background:var(--t358);--backgroundHover:var(--t357);--backgroundPress:var(--t359);--backgroundFocus:var(--t359);--backgroundActive:var(--t358);--borderColor:var(--t194);--borderColorHover:var(--t359);--borderColorFocus:var(--t194);--borderColorPress:var(--t360);--placeholderColor:var(--t363);--colorTransparent:var(--t366);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--outlineColor:var(--t383);}
|
|
1913
1925
|
}
|
|
1914
1926
|
.t_light_neutral ::selection{background:var(--color5);color:var(--color11)}
|
|
1915
|
-
:root.t_dark .t_light .t_neutral_Button, :root.t_dark .t_light .t_neutral_SliderThumb, :root.t_dark .t_light .t_neutral_Switch, :root.t_dark .t_light .t_neutral_surface2, :root.t_light .t_neutral_Button, :root.t_light .t_neutral_SliderThumb, :root.t_light .t_neutral_Switch, :root.t_light .t_neutral_surface2, .tm_xxt {--color:var(--
|
|
1927
|
+
:root.t_dark .t_light .t_neutral_Button, :root.t_dark .t_light .t_neutral_SliderThumb, :root.t_dark .t_light .t_neutral_Switch, :root.t_dark .t_light .t_neutral_surface2, :root.t_light .t_neutral_Button, :root.t_light .t_neutral_SliderThumb, :root.t_light .t_neutral_Switch, :root.t_light .t_neutral_surface2, .tm_xxt {--color:var(--t287);--colorHover:var(--t287);--colorPress:var(--t287);--colorFocus:var(--t365);--background:var(--t194);--backgroundHover:var(--t359);--backgroundPress:var(--t360);--backgroundFocus:var(--t362);--backgroundActive:var(--t194);--borderColor:var(--t361);--borderColorHover:var(--t360);--borderColorFocus:var(--t361);--borderColorPress:var(--t362);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--outlineColor:var(--t383);}
|
|
1916
1928
|
@media(prefers-color-scheme:light){
|
|
1917
|
-
.t_neutral_Button, .t_neutral_SliderThumb, .t_neutral_Switch, .t_neutral_surface2 {--color:var(--
|
|
1929
|
+
.t_neutral_Button, .t_neutral_SliderThumb, .t_neutral_Switch, .t_neutral_surface2 {--color:var(--t287);--colorHover:var(--t287);--colorPress:var(--t287);--colorFocus:var(--t365);--background:var(--t194);--backgroundHover:var(--t359);--backgroundPress:var(--t360);--backgroundFocus:var(--t362);--backgroundActive:var(--t194);--borderColor:var(--t361);--borderColorHover:var(--t360);--borderColorFocus:var(--t361);--borderColorPress:var(--t362);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--outlineColor:var(--t383);}
|
|
1918
1930
|
}
|
|
1919
|
-
:root.t_dark .t_light .t_neutral_Input, :root.t_dark .t_light .t_neutral_Progress, :root.t_dark .t_light .t_neutral_Slider, :root.t_dark .t_light .t_neutral_TextArea, :root.t_dark .t_light .t_neutral_surface1, :root.t_light .t_neutral_Input, :root.t_light .t_neutral_Progress, :root.t_light .t_neutral_Slider, :root.t_light .t_neutral_TextArea, :root.t_light .t_neutral_surface1, .tm_xxt {--color:var(--
|
|
1931
|
+
:root.t_dark .t_light .t_neutral_Input, :root.t_dark .t_light .t_neutral_Progress, :root.t_dark .t_light .t_neutral_Slider, :root.t_dark .t_light .t_neutral_TextArea, :root.t_dark .t_light .t_neutral_surface1, :root.t_light .t_neutral_Input, :root.t_light .t_neutral_Progress, :root.t_light .t_neutral_Slider, :root.t_light .t_neutral_TextArea, :root.t_light .t_neutral_surface1, .tm_xxt {--color:var(--t287);--colorHover:var(--t287);--colorPress:var(--t287);--colorFocus:var(--t365);--background:var(--t359);--backgroundHover:var(--t358);--backgroundPress:var(--t194);--backgroundFocus:var(--t360);--backgroundActive:var(--t359);--borderColor:var(--t360);--borderColorHover:var(--t194);--borderColorFocus:var(--t360);--borderColorPress:var(--t361);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--outlineColor:var(--t383);}
|
|
1920
1932
|
@media(prefers-color-scheme:light){
|
|
1921
|
-
.t_neutral_Input, .t_neutral_Progress, .t_neutral_Slider, .t_neutral_TextArea, .t_neutral_surface1 {--color:var(--
|
|
1933
|
+
.t_neutral_Input, .t_neutral_Progress, .t_neutral_Slider, .t_neutral_TextArea, .t_neutral_surface1 {--color:var(--t287);--colorHover:var(--t287);--colorPress:var(--t287);--colorFocus:var(--t365);--background:var(--t359);--backgroundHover:var(--t358);--backgroundPress:var(--t194);--backgroundFocus:var(--t360);--backgroundActive:var(--t359);--borderColor:var(--t360);--borderColorHover:var(--t194);--borderColorFocus:var(--t360);--borderColorPress:var(--t361);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--outlineColor:var(--t383);}
|
|
1922
1934
|
}
|
|
1923
|
-
:root.t_dark .t_light .t_neutral_ProgressIndicator, :root.t_dark .t_light .t_neutral_SliderActive, :root.t_light .t_neutral_ProgressIndicator, :root.t_light .t_neutral_SliderActive, .tm_xxt {--color:var(--
|
|
1935
|
+
:root.t_dark .t_light .t_neutral_ProgressIndicator, :root.t_dark .t_light .t_neutral_SliderActive, :root.t_light .t_neutral_ProgressIndicator, :root.t_light .t_neutral_SliderActive, .tm_xxt {--color:var(--t287);--colorHover:var(--t287);--colorPress:var(--t287);--colorFocus:var(--t365);--background:var(--t361);--backgroundHover:var(--t360);--backgroundPress:var(--t362);--backgroundFocus:var(--t287);--backgroundActive:var(--t361);--borderColor:var(--t13);--borderColorHover:var(--t362);--borderColorFocus:var(--t13);--borderColorPress:var(--t363);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--outlineColor:var(--t383);}
|
|
1924
1936
|
@media(prefers-color-scheme:light){
|
|
1925
|
-
.t_neutral_ProgressIndicator, .t_neutral_SliderActive {--color:var(--
|
|
1937
|
+
.t_neutral_ProgressIndicator, .t_neutral_SliderActive {--color:var(--t287);--colorHover:var(--t287);--colorPress:var(--t287);--colorFocus:var(--t365);--background:var(--t361);--backgroundHover:var(--t360);--backgroundPress:var(--t362);--backgroundFocus:var(--t287);--backgroundActive:var(--t361);--borderColor:var(--t13);--borderColorHover:var(--t362);--borderColorFocus:var(--t13);--borderColorPress:var(--t363);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--outlineColor:var(--t383);}
|
|
1926
1938
|
}
|
|
1927
|
-
:root.t_dark .t_light .t_neutral_SwitchThumb, :root.t_dark .t_light .t_neutral_Tooltip, :root.t_dark .t_light .t_neutral_accent, :root.t_light .t_neutral_SwitchThumb, :root.t_light .t_neutral_Tooltip, :root.t_light .t_neutral_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1939
|
+
:root.t_dark .t_light .t_neutral_SwitchThumb, :root.t_dark .t_light .t_neutral_Tooltip, :root.t_dark .t_light .t_neutral_accent, :root.t_light .t_neutral_SwitchThumb, :root.t_light .t_neutral_Tooltip, :root.t_light .t_neutral_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t366);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--color1:var(--t365);--color2:var(--t287);--color3:var(--t364);--color4:var(--t363);--color5:var(--t13);--color6:var(--t362);--color7:var(--t361);--color8:var(--t360);--color9:var(--t194);--color10:var(--t359);--color11:var(--t358);--color12:var(--t357);--color0:var(--t352);--color02:var(--t384);--color04:var(--t385);--color06:var(--t386);--color08:var(--t387);--color:var(--t357);--colorHover:var(--t357);--colorPress:var(--t357);--colorFocus:var(--t387);--background:var(--t287);--backgroundHover:var(--t365);--backgroundPress:var(--t364);--backgroundFocus:var(--t364);--backgroundActive:var(--t287);--borderColor:var(--t363);--borderColorHover:var(--t364);--borderColorFocus:var(--t363);--borderColorPress:var(--t13);--placeholderColor:var(--t194);--colorTransparent:var(--t352);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--outlineColor:var(--t383);}
|
|
1928
1940
|
@media(prefers-color-scheme:light){
|
|
1929
|
-
.t_neutral_SwitchThumb, .t_neutral_Tooltip, .t_neutral_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1941
|
+
.t_neutral_SwitchThumb, .t_neutral_Tooltip, .t_neutral_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t366);--background02:var(--t353);--background04:var(--t354);--background06:var(--t355);--background08:var(--t356);--color1:var(--t365);--color2:var(--t287);--color3:var(--t364);--color4:var(--t363);--color5:var(--t13);--color6:var(--t362);--color7:var(--t361);--color8:var(--t360);--color9:var(--t194);--color10:var(--t359);--color11:var(--t358);--color12:var(--t357);--color0:var(--t352);--color02:var(--t384);--color04:var(--t385);--color06:var(--t386);--color08:var(--t387);--color:var(--t357);--colorHover:var(--t357);--colorPress:var(--t357);--colorFocus:var(--t387);--background:var(--t287);--backgroundHover:var(--t365);--backgroundPress:var(--t364);--backgroundFocus:var(--t364);--backgroundActive:var(--t287);--borderColor:var(--t363);--borderColorHover:var(--t364);--borderColorFocus:var(--t363);--borderColorPress:var(--t13);--placeholderColor:var(--t194);--colorTransparent:var(--t352);--color01:var(--t371);--color0075:var(--t372);--color005:var(--t373);--color0025:var(--t374);--color002:var(--t375);--color001:var(--t376);--background01:var(--t377);--background0075:var(--t378);--background005:var(--t379);--background0025:var(--t380);--background002:var(--t381);--background001:var(--t382);--outlineColor:var(--t383);}
|
|
1930
1942
|
}
|
|
1931
1943
|
.t_light_neutral_SwitchThumb ::selection, .t_light_neutral_Tooltip ::selection, .t_light_neutral_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1932
|
-
:root.t_dark .t_light .t_orange, :root.t_light .t_orange, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1944
|
+
:root.t_dark .t_light .t_orange, :root.t_light .t_orange, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t847);--background02:var(--t848);--background04:var(--t849);--background06:var(--t850);--background08:var(--t851);--color1:var(--t852);--color2:var(--t853);--color3:var(--t854);--color4:var(--t855);--color5:var(--t856);--color6:var(--t857);--color7:var(--t858);--color8:var(--t859);--color9:var(--t401);--color10:var(--t860);--color11:var(--t861);--color12:var(--t862);--color0:var(--t863);--color02:var(--t864);--color04:var(--t865);--color06:var(--t866);--color08:var(--t867);--color:var(--t862);--colorHover:var(--t862);--colorPress:var(--t862);--colorFocus:var(--t867);--background:var(--t853);--backgroundHover:var(--t852);--backgroundPress:var(--t854);--backgroundFocus:var(--t854);--backgroundActive:var(--t853);--borderColor:var(--t855);--borderColorHover:var(--t854);--borderColorFocus:var(--t855);--borderColorPress:var(--t856);--placeholderColor:var(--t401);--colorTransparent:var(--t863);--color01:var(--t868);--color0075:var(--t869);--color005:var(--t870);--color0025:var(--t871);--color002:var(--t872);--color001:var(--t873);--background01:var(--t874);--background0075:var(--t875);--background005:var(--t876);--background0025:var(--t877);--background002:var(--t878);--background001:var(--t879);--outlineColor:var(--t880);}
|
|
1933
1945
|
@media(prefers-color-scheme:light){
|
|
1934
|
-
.t_orange {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1946
|
+
.t_orange {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t847);--background02:var(--t848);--background04:var(--t849);--background06:var(--t850);--background08:var(--t851);--color1:var(--t852);--color2:var(--t853);--color3:var(--t854);--color4:var(--t855);--color5:var(--t856);--color6:var(--t857);--color7:var(--t858);--color8:var(--t859);--color9:var(--t401);--color10:var(--t860);--color11:var(--t861);--color12:var(--t862);--color0:var(--t863);--color02:var(--t864);--color04:var(--t865);--color06:var(--t866);--color08:var(--t867);--color:var(--t862);--colorHover:var(--t862);--colorPress:var(--t862);--colorFocus:var(--t867);--background:var(--t853);--backgroundHover:var(--t852);--backgroundPress:var(--t854);--backgroundFocus:var(--t854);--backgroundActive:var(--t853);--borderColor:var(--t855);--borderColorHover:var(--t854);--borderColorFocus:var(--t855);--borderColorPress:var(--t856);--placeholderColor:var(--t401);--colorTransparent:var(--t863);--color01:var(--t868);--color0075:var(--t869);--color005:var(--t870);--color0025:var(--t871);--color002:var(--t872);--color001:var(--t873);--background01:var(--t874);--background0075:var(--t875);--background005:var(--t876);--background0025:var(--t877);--background002:var(--t878);--background001:var(--t879);--outlineColor:var(--t880);}
|
|
1935
1947
|
}
|
|
1936
1948
|
.t_light_orange ::selection{background:var(--color5);color:var(--color11)}
|
|
1937
|
-
:root.t_dark .t_light .t_orange_Button, :root.t_dark .t_light .t_orange_SliderThumb, :root.t_dark .t_light .t_orange_Switch, :root.t_dark .t_light .t_orange_surface2, :root.t_light .t_orange_Button, :root.t_light .t_orange_SliderThumb, :root.t_light .t_orange_Switch, :root.t_light .t_orange_surface2, .tm_xxt {--color:var(--
|
|
1949
|
+
:root.t_dark .t_light .t_orange_Button, :root.t_dark .t_light .t_orange_SliderThumb, :root.t_dark .t_light .t_orange_Switch, :root.t_dark .t_light .t_orange_surface2, :root.t_light .t_orange_Button, :root.t_light .t_orange_SliderThumb, :root.t_light .t_orange_Switch, :root.t_light .t_orange_surface2, .tm_xxt {--color:var(--t861);--colorHover:var(--t861);--colorPress:var(--t861);--colorFocus:var(--t862);--background:var(--t855);--backgroundHover:var(--t854);--backgroundPress:var(--t856);--backgroundFocus:var(--t858);--backgroundActive:var(--t855);--borderColor:var(--t857);--borderColorHover:var(--t856);--borderColorFocus:var(--t857);--borderColorPress:var(--t858);--color01:var(--t868);--color0075:var(--t869);--color005:var(--t870);--color0025:var(--t871);--color002:var(--t872);--color001:var(--t873);--background01:var(--t874);--background0075:var(--t875);--background005:var(--t876);--background0025:var(--t877);--background002:var(--t878);--background001:var(--t879);--background02:var(--t848);--background04:var(--t849);--background06:var(--t850);--background08:var(--t851);--outlineColor:var(--t880);}
|
|
1938
1950
|
@media(prefers-color-scheme:light){
|
|
1939
|
-
.t_orange_Button, .t_orange_SliderThumb, .t_orange_Switch, .t_orange_surface2 {--color:var(--
|
|
1951
|
+
.t_orange_Button, .t_orange_SliderThumb, .t_orange_Switch, .t_orange_surface2 {--color:var(--t861);--colorHover:var(--t861);--colorPress:var(--t861);--colorFocus:var(--t862);--background:var(--t855);--backgroundHover:var(--t854);--backgroundPress:var(--t856);--backgroundFocus:var(--t858);--backgroundActive:var(--t855);--borderColor:var(--t857);--borderColorHover:var(--t856);--borderColorFocus:var(--t857);--borderColorPress:var(--t858);--color01:var(--t868);--color0075:var(--t869);--color005:var(--t870);--color0025:var(--t871);--color002:var(--t872);--color001:var(--t873);--background01:var(--t874);--background0075:var(--t875);--background005:var(--t876);--background0025:var(--t877);--background002:var(--t878);--background001:var(--t879);--background02:var(--t848);--background04:var(--t849);--background06:var(--t850);--background08:var(--t851);--outlineColor:var(--t880);}
|
|
1940
1952
|
}
|
|
1941
|
-
:root.t_dark .t_light .t_orange_Input, :root.t_dark .t_light .t_orange_Progress, :root.t_dark .t_light .t_orange_Slider, :root.t_dark .t_light .t_orange_TextArea, :root.t_dark .t_light .t_orange_surface1, :root.t_light .t_orange_Input, :root.t_light .t_orange_Progress, :root.t_light .t_orange_Slider, :root.t_light .t_orange_TextArea, :root.t_light .t_orange_surface1, .tm_xxt {--color:var(--
|
|
1953
|
+
:root.t_dark .t_light .t_orange_Input, :root.t_dark .t_light .t_orange_Progress, :root.t_dark .t_light .t_orange_Slider, :root.t_dark .t_light .t_orange_TextArea, :root.t_dark .t_light .t_orange_surface1, :root.t_light .t_orange_Input, :root.t_light .t_orange_Progress, :root.t_light .t_orange_Slider, :root.t_light .t_orange_TextArea, :root.t_light .t_orange_surface1, .tm_xxt {--color:var(--t861);--colorHover:var(--t861);--colorPress:var(--t861);--colorFocus:var(--t862);--background:var(--t854);--backgroundHover:var(--t853);--backgroundPress:var(--t855);--backgroundFocus:var(--t856);--backgroundActive:var(--t854);--borderColor:var(--t856);--borderColorHover:var(--t855);--borderColorFocus:var(--t856);--borderColorPress:var(--t857);--color01:var(--t868);--color0075:var(--t869);--color005:var(--t870);--color0025:var(--t871);--color002:var(--t872);--color001:var(--t873);--background01:var(--t874);--background0075:var(--t875);--background005:var(--t876);--background0025:var(--t877);--background002:var(--t878);--background001:var(--t879);--background02:var(--t848);--background04:var(--t849);--background06:var(--t850);--background08:var(--t851);--outlineColor:var(--t880);}
|
|
1942
1954
|
@media(prefers-color-scheme:light){
|
|
1943
|
-
.t_orange_Input, .t_orange_Progress, .t_orange_Slider, .t_orange_TextArea, .t_orange_surface1 {--color:var(--
|
|
1955
|
+
.t_orange_Input, .t_orange_Progress, .t_orange_Slider, .t_orange_TextArea, .t_orange_surface1 {--color:var(--t861);--colorHover:var(--t861);--colorPress:var(--t861);--colorFocus:var(--t862);--background:var(--t854);--backgroundHover:var(--t853);--backgroundPress:var(--t855);--backgroundFocus:var(--t856);--backgroundActive:var(--t854);--borderColor:var(--t856);--borderColorHover:var(--t855);--borderColorFocus:var(--t856);--borderColorPress:var(--t857);--color01:var(--t868);--color0075:var(--t869);--color005:var(--t870);--color0025:var(--t871);--color002:var(--t872);--color001:var(--t873);--background01:var(--t874);--background0075:var(--t875);--background005:var(--t876);--background0025:var(--t877);--background002:var(--t878);--background001:var(--t879);--background02:var(--t848);--background04:var(--t849);--background06:var(--t850);--background08:var(--t851);--outlineColor:var(--t880);}
|
|
1944
1956
|
}
|
|
1945
|
-
:root.t_dark .t_light .t_orange_ProgressIndicator, :root.t_dark .t_light .t_orange_SliderActive, :root.t_light .t_orange_ProgressIndicator, :root.t_light .t_orange_SliderActive, .tm_xxt {--color:var(--
|
|
1957
|
+
:root.t_dark .t_light .t_orange_ProgressIndicator, :root.t_dark .t_light .t_orange_SliderActive, :root.t_light .t_orange_ProgressIndicator, :root.t_light .t_orange_SliderActive, .tm_xxt {--color:var(--t861);--colorHover:var(--t861);--colorPress:var(--t861);--colorFocus:var(--t862);--background:var(--t857);--backgroundHover:var(--t856);--backgroundPress:var(--t858);--backgroundFocus:var(--t861);--backgroundActive:var(--t857);--borderColor:var(--t859);--borderColorHover:var(--t858);--borderColorFocus:var(--t859);--borderColorPress:var(--t401);--color01:var(--t868);--color0075:var(--t869);--color005:var(--t870);--color0025:var(--t871);--color002:var(--t872);--color001:var(--t873);--background01:var(--t874);--background0075:var(--t875);--background005:var(--t876);--background0025:var(--t877);--background002:var(--t878);--background001:var(--t879);--background02:var(--t848);--background04:var(--t849);--background06:var(--t850);--background08:var(--t851);--outlineColor:var(--t880);}
|
|
1946
1958
|
@media(prefers-color-scheme:light){
|
|
1947
|
-
.t_orange_ProgressIndicator, .t_orange_SliderActive {--color:var(--
|
|
1959
|
+
.t_orange_ProgressIndicator, .t_orange_SliderActive {--color:var(--t861);--colorHover:var(--t861);--colorPress:var(--t861);--colorFocus:var(--t862);--background:var(--t857);--backgroundHover:var(--t856);--backgroundPress:var(--t858);--backgroundFocus:var(--t861);--backgroundActive:var(--t857);--borderColor:var(--t859);--borderColorHover:var(--t858);--borderColorFocus:var(--t859);--borderColorPress:var(--t401);--color01:var(--t868);--color0075:var(--t869);--color005:var(--t870);--color0025:var(--t871);--color002:var(--t872);--color001:var(--t873);--background01:var(--t874);--background0075:var(--t875);--background005:var(--t876);--background0025:var(--t877);--background002:var(--t878);--background001:var(--t879);--background02:var(--t848);--background04:var(--t849);--background06:var(--t850);--background08:var(--t851);--outlineColor:var(--t880);}
|
|
1948
1960
|
}
|
|
1949
|
-
:root.t_dark .t_light .t_orange_SwitchThumb, :root.t_dark .t_light .t_orange_Tooltip, :root.t_dark .t_light .t_orange_accent, :root.t_light .t_orange_SwitchThumb, :root.t_light .t_orange_Tooltip, :root.t_light .t_orange_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1961
|
+
:root.t_dark .t_light .t_orange_SwitchThumb, :root.t_dark .t_light .t_orange_Tooltip, :root.t_dark .t_light .t_orange_accent, :root.t_light .t_orange_SwitchThumb, :root.t_light .t_orange_Tooltip, :root.t_light .t_orange_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t863);--background02:var(--t848);--background04:var(--t849);--background06:var(--t850);--background08:var(--t851);--color1:var(--t862);--color2:var(--t861);--color3:var(--t860);--color4:var(--t401);--color5:var(--t859);--color6:var(--t858);--color7:var(--t857);--color8:var(--t856);--color9:var(--t855);--color10:var(--t854);--color11:var(--t853);--color12:var(--t852);--color0:var(--t847);--color02:var(--t881);--color04:var(--t882);--color06:var(--t883);--color08:var(--t884);--color:var(--t852);--colorHover:var(--t852);--colorPress:var(--t852);--colorFocus:var(--t884);--background:var(--t861);--backgroundHover:var(--t862);--backgroundPress:var(--t860);--backgroundFocus:var(--t860);--backgroundActive:var(--t861);--borderColor:var(--t401);--borderColorHover:var(--t860);--borderColorFocus:var(--t401);--borderColorPress:var(--t859);--placeholderColor:var(--t855);--colorTransparent:var(--t847);--color01:var(--t868);--color0075:var(--t869);--color005:var(--t870);--color0025:var(--t871);--color002:var(--t872);--color001:var(--t873);--background01:var(--t874);--background0075:var(--t875);--background005:var(--t876);--background0025:var(--t877);--background002:var(--t878);--background001:var(--t879);--outlineColor:var(--t880);}
|
|
1950
1962
|
@media(prefers-color-scheme:light){
|
|
1951
|
-
.t_orange_SwitchThumb, .t_orange_Tooltip, .t_orange_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1963
|
+
.t_orange_SwitchThumb, .t_orange_Tooltip, .t_orange_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t863);--background02:var(--t848);--background04:var(--t849);--background06:var(--t850);--background08:var(--t851);--color1:var(--t862);--color2:var(--t861);--color3:var(--t860);--color4:var(--t401);--color5:var(--t859);--color6:var(--t858);--color7:var(--t857);--color8:var(--t856);--color9:var(--t855);--color10:var(--t854);--color11:var(--t853);--color12:var(--t852);--color0:var(--t847);--color02:var(--t881);--color04:var(--t882);--color06:var(--t883);--color08:var(--t884);--color:var(--t852);--colorHover:var(--t852);--colorPress:var(--t852);--colorFocus:var(--t884);--background:var(--t861);--backgroundHover:var(--t862);--backgroundPress:var(--t860);--backgroundFocus:var(--t860);--backgroundActive:var(--t861);--borderColor:var(--t401);--borderColorHover:var(--t860);--borderColorFocus:var(--t401);--borderColorPress:var(--t859);--placeholderColor:var(--t855);--colorTransparent:var(--t847);--color01:var(--t868);--color0075:var(--t869);--color005:var(--t870);--color0025:var(--t871);--color002:var(--t872);--color001:var(--t873);--background01:var(--t874);--background0075:var(--t875);--background005:var(--t876);--background0025:var(--t877);--background002:var(--t878);--background001:var(--t879);--outlineColor:var(--t880);}
|
|
1952
1964
|
}
|
|
1953
1965
|
.t_light_orange_SwitchThumb ::selection, .t_light_orange_Tooltip ::selection, .t_light_orange_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1954
|
-
:root.t_dark .t_light .t_pink, :root.t_light .t_pink, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1966
|
+
:root.t_dark .t_light .t_pink, :root.t_light .t_pink, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t885);--background02:var(--t886);--background04:var(--t887);--background06:var(--t888);--background08:var(--t889);--color1:var(--t890);--color2:var(--t891);--color3:var(--t892);--color4:var(--t893);--color5:var(--t894);--color6:var(--t895);--color7:var(--t896);--color8:var(--t897);--color9:var(--t440);--color10:var(--t898);--color11:var(--t899);--color12:var(--t900);--color0:var(--t901);--color02:var(--t902);--color04:var(--t903);--color06:var(--t904);--color08:var(--t905);--color:var(--t900);--colorHover:var(--t900);--colorPress:var(--t900);--colorFocus:var(--t905);--background:var(--t891);--backgroundHover:var(--t890);--backgroundPress:var(--t892);--backgroundFocus:var(--t892);--backgroundActive:var(--t891);--borderColor:var(--t893);--borderColorHover:var(--t892);--borderColorFocus:var(--t893);--borderColorPress:var(--t894);--placeholderColor:var(--t440);--colorTransparent:var(--t901);--color01:var(--t906);--color0075:var(--t907);--color005:var(--t908);--color0025:var(--t909);--color002:var(--t910);--color001:var(--t911);--background01:var(--t912);--background0075:var(--t913);--background005:var(--t914);--background0025:var(--t915);--background002:var(--t916);--background001:var(--t917);--outlineColor:var(--t918);}
|
|
1955
1967
|
@media(prefers-color-scheme:light){
|
|
1956
|
-
.t_pink {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1968
|
+
.t_pink {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t885);--background02:var(--t886);--background04:var(--t887);--background06:var(--t888);--background08:var(--t889);--color1:var(--t890);--color2:var(--t891);--color3:var(--t892);--color4:var(--t893);--color5:var(--t894);--color6:var(--t895);--color7:var(--t896);--color8:var(--t897);--color9:var(--t440);--color10:var(--t898);--color11:var(--t899);--color12:var(--t900);--color0:var(--t901);--color02:var(--t902);--color04:var(--t903);--color06:var(--t904);--color08:var(--t905);--color:var(--t900);--colorHover:var(--t900);--colorPress:var(--t900);--colorFocus:var(--t905);--background:var(--t891);--backgroundHover:var(--t890);--backgroundPress:var(--t892);--backgroundFocus:var(--t892);--backgroundActive:var(--t891);--borderColor:var(--t893);--borderColorHover:var(--t892);--borderColorFocus:var(--t893);--borderColorPress:var(--t894);--placeholderColor:var(--t440);--colorTransparent:var(--t901);--color01:var(--t906);--color0075:var(--t907);--color005:var(--t908);--color0025:var(--t909);--color002:var(--t910);--color001:var(--t911);--background01:var(--t912);--background0075:var(--t913);--background005:var(--t914);--background0025:var(--t915);--background002:var(--t916);--background001:var(--t917);--outlineColor:var(--t918);}
|
|
1957
1969
|
}
|
|
1958
1970
|
.t_light_pink ::selection{background:var(--color5);color:var(--color11)}
|
|
1959
|
-
:root.t_dark .t_light .t_pink_Button, :root.t_dark .t_light .t_pink_SliderThumb, :root.t_dark .t_light .t_pink_Switch, :root.t_dark .t_light .t_pink_surface2, :root.t_light .t_pink_Button, :root.t_light .t_pink_SliderThumb, :root.t_light .t_pink_Switch, :root.t_light .t_pink_surface2, .tm_xxt {--color:var(--
|
|
1971
|
+
:root.t_dark .t_light .t_pink_Button, :root.t_dark .t_light .t_pink_SliderThumb, :root.t_dark .t_light .t_pink_Switch, :root.t_dark .t_light .t_pink_surface2, :root.t_light .t_pink_Button, :root.t_light .t_pink_SliderThumb, :root.t_light .t_pink_Switch, :root.t_light .t_pink_surface2, .tm_xxt {--color:var(--t899);--colorHover:var(--t899);--colorPress:var(--t899);--colorFocus:var(--t900);--background:var(--t893);--backgroundHover:var(--t892);--backgroundPress:var(--t894);--backgroundFocus:var(--t896);--backgroundActive:var(--t893);--borderColor:var(--t895);--borderColorHover:var(--t894);--borderColorFocus:var(--t895);--borderColorPress:var(--t896);--color01:var(--t906);--color0075:var(--t907);--color005:var(--t908);--color0025:var(--t909);--color002:var(--t910);--color001:var(--t911);--background01:var(--t912);--background0075:var(--t913);--background005:var(--t914);--background0025:var(--t915);--background002:var(--t916);--background001:var(--t917);--background02:var(--t886);--background04:var(--t887);--background06:var(--t888);--background08:var(--t889);--outlineColor:var(--t918);}
|
|
1960
1972
|
@media(prefers-color-scheme:light){
|
|
1961
|
-
.t_pink_Button, .t_pink_SliderThumb, .t_pink_Switch, .t_pink_surface2 {--color:var(--
|
|
1973
|
+
.t_pink_Button, .t_pink_SliderThumb, .t_pink_Switch, .t_pink_surface2 {--color:var(--t899);--colorHover:var(--t899);--colorPress:var(--t899);--colorFocus:var(--t900);--background:var(--t893);--backgroundHover:var(--t892);--backgroundPress:var(--t894);--backgroundFocus:var(--t896);--backgroundActive:var(--t893);--borderColor:var(--t895);--borderColorHover:var(--t894);--borderColorFocus:var(--t895);--borderColorPress:var(--t896);--color01:var(--t906);--color0075:var(--t907);--color005:var(--t908);--color0025:var(--t909);--color002:var(--t910);--color001:var(--t911);--background01:var(--t912);--background0075:var(--t913);--background005:var(--t914);--background0025:var(--t915);--background002:var(--t916);--background001:var(--t917);--background02:var(--t886);--background04:var(--t887);--background06:var(--t888);--background08:var(--t889);--outlineColor:var(--t918);}
|
|
1962
1974
|
}
|
|
1963
|
-
:root.t_dark .t_light .t_pink_Input, :root.t_dark .t_light .t_pink_Progress, :root.t_dark .t_light .t_pink_Slider, :root.t_dark .t_light .t_pink_TextArea, :root.t_dark .t_light .t_pink_surface1, :root.t_light .t_pink_Input, :root.t_light .t_pink_Progress, :root.t_light .t_pink_Slider, :root.t_light .t_pink_TextArea, :root.t_light .t_pink_surface1, .tm_xxt {--color:var(--
|
|
1975
|
+
:root.t_dark .t_light .t_pink_Input, :root.t_dark .t_light .t_pink_Progress, :root.t_dark .t_light .t_pink_Slider, :root.t_dark .t_light .t_pink_TextArea, :root.t_dark .t_light .t_pink_surface1, :root.t_light .t_pink_Input, :root.t_light .t_pink_Progress, :root.t_light .t_pink_Slider, :root.t_light .t_pink_TextArea, :root.t_light .t_pink_surface1, .tm_xxt {--color:var(--t899);--colorHover:var(--t899);--colorPress:var(--t899);--colorFocus:var(--t900);--background:var(--t892);--backgroundHover:var(--t891);--backgroundPress:var(--t893);--backgroundFocus:var(--t894);--backgroundActive:var(--t892);--borderColor:var(--t894);--borderColorHover:var(--t893);--borderColorFocus:var(--t894);--borderColorPress:var(--t895);--color01:var(--t906);--color0075:var(--t907);--color005:var(--t908);--color0025:var(--t909);--color002:var(--t910);--color001:var(--t911);--background01:var(--t912);--background0075:var(--t913);--background005:var(--t914);--background0025:var(--t915);--background002:var(--t916);--background001:var(--t917);--background02:var(--t886);--background04:var(--t887);--background06:var(--t888);--background08:var(--t889);--outlineColor:var(--t918);}
|
|
1964
1976
|
@media(prefers-color-scheme:light){
|
|
1965
|
-
.t_pink_Input, .t_pink_Progress, .t_pink_Slider, .t_pink_TextArea, .t_pink_surface1 {--color:var(--
|
|
1977
|
+
.t_pink_Input, .t_pink_Progress, .t_pink_Slider, .t_pink_TextArea, .t_pink_surface1 {--color:var(--t899);--colorHover:var(--t899);--colorPress:var(--t899);--colorFocus:var(--t900);--background:var(--t892);--backgroundHover:var(--t891);--backgroundPress:var(--t893);--backgroundFocus:var(--t894);--backgroundActive:var(--t892);--borderColor:var(--t894);--borderColorHover:var(--t893);--borderColorFocus:var(--t894);--borderColorPress:var(--t895);--color01:var(--t906);--color0075:var(--t907);--color005:var(--t908);--color0025:var(--t909);--color002:var(--t910);--color001:var(--t911);--background01:var(--t912);--background0075:var(--t913);--background005:var(--t914);--background0025:var(--t915);--background002:var(--t916);--background001:var(--t917);--background02:var(--t886);--background04:var(--t887);--background06:var(--t888);--background08:var(--t889);--outlineColor:var(--t918);}
|
|
1966
1978
|
}
|
|
1967
|
-
:root.t_dark .t_light .t_pink_ProgressIndicator, :root.t_dark .t_light .t_pink_SliderActive, :root.t_light .t_pink_ProgressIndicator, :root.t_light .t_pink_SliderActive, .tm_xxt {--color:var(--
|
|
1979
|
+
:root.t_dark .t_light .t_pink_ProgressIndicator, :root.t_dark .t_light .t_pink_SliderActive, :root.t_light .t_pink_ProgressIndicator, :root.t_light .t_pink_SliderActive, .tm_xxt {--color:var(--t899);--colorHover:var(--t899);--colorPress:var(--t899);--colorFocus:var(--t900);--background:var(--t895);--backgroundHover:var(--t894);--backgroundPress:var(--t896);--backgroundFocus:var(--t899);--backgroundActive:var(--t895);--borderColor:var(--t897);--borderColorHover:var(--t896);--borderColorFocus:var(--t897);--borderColorPress:var(--t440);--color01:var(--t906);--color0075:var(--t907);--color005:var(--t908);--color0025:var(--t909);--color002:var(--t910);--color001:var(--t911);--background01:var(--t912);--background0075:var(--t913);--background005:var(--t914);--background0025:var(--t915);--background002:var(--t916);--background001:var(--t917);--background02:var(--t886);--background04:var(--t887);--background06:var(--t888);--background08:var(--t889);--outlineColor:var(--t918);}
|
|
1968
1980
|
@media(prefers-color-scheme:light){
|
|
1969
|
-
.t_pink_ProgressIndicator, .t_pink_SliderActive {--color:var(--
|
|
1981
|
+
.t_pink_ProgressIndicator, .t_pink_SliderActive {--color:var(--t899);--colorHover:var(--t899);--colorPress:var(--t899);--colorFocus:var(--t900);--background:var(--t895);--backgroundHover:var(--t894);--backgroundPress:var(--t896);--backgroundFocus:var(--t899);--backgroundActive:var(--t895);--borderColor:var(--t897);--borderColorHover:var(--t896);--borderColorFocus:var(--t897);--borderColorPress:var(--t440);--color01:var(--t906);--color0075:var(--t907);--color005:var(--t908);--color0025:var(--t909);--color002:var(--t910);--color001:var(--t911);--background01:var(--t912);--background0075:var(--t913);--background005:var(--t914);--background0025:var(--t915);--background002:var(--t916);--background001:var(--t917);--background02:var(--t886);--background04:var(--t887);--background06:var(--t888);--background08:var(--t889);--outlineColor:var(--t918);}
|
|
1970
1982
|
}
|
|
1971
|
-
:root.t_dark .t_light .t_pink_SwitchThumb, :root.t_dark .t_light .t_pink_Tooltip, :root.t_dark .t_light .t_pink_accent, :root.t_light .t_pink_SwitchThumb, :root.t_light .t_pink_Tooltip, :root.t_light .t_pink_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1983
|
+
:root.t_dark .t_light .t_pink_SwitchThumb, :root.t_dark .t_light .t_pink_Tooltip, :root.t_dark .t_light .t_pink_accent, :root.t_light .t_pink_SwitchThumb, :root.t_light .t_pink_Tooltip, :root.t_light .t_pink_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t901);--background02:var(--t886);--background04:var(--t887);--background06:var(--t888);--background08:var(--t889);--color1:var(--t900);--color2:var(--t899);--color3:var(--t898);--color4:var(--t440);--color5:var(--t897);--color6:var(--t896);--color7:var(--t895);--color8:var(--t894);--color9:var(--t893);--color10:var(--t892);--color11:var(--t891);--color12:var(--t890);--color0:var(--t885);--color02:var(--t919);--color04:var(--t920);--color06:var(--t921);--color08:var(--t922);--color:var(--t890);--colorHover:var(--t890);--colorPress:var(--t890);--colorFocus:var(--t922);--background:var(--t899);--backgroundHover:var(--t900);--backgroundPress:var(--t898);--backgroundFocus:var(--t898);--backgroundActive:var(--t899);--borderColor:var(--t440);--borderColorHover:var(--t898);--borderColorFocus:var(--t440);--borderColorPress:var(--t897);--placeholderColor:var(--t893);--colorTransparent:var(--t885);--color01:var(--t906);--color0075:var(--t907);--color005:var(--t908);--color0025:var(--t909);--color002:var(--t910);--color001:var(--t911);--background01:var(--t912);--background0075:var(--t913);--background005:var(--t914);--background0025:var(--t915);--background002:var(--t916);--background001:var(--t917);--outlineColor:var(--t918);}
|
|
1972
1984
|
@media(prefers-color-scheme:light){
|
|
1973
|
-
.t_pink_SwitchThumb, .t_pink_Tooltip, .t_pink_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
1985
|
+
.t_pink_SwitchThumb, .t_pink_Tooltip, .t_pink_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t901);--background02:var(--t886);--background04:var(--t887);--background06:var(--t888);--background08:var(--t889);--color1:var(--t900);--color2:var(--t899);--color3:var(--t898);--color4:var(--t440);--color5:var(--t897);--color6:var(--t896);--color7:var(--t895);--color8:var(--t894);--color9:var(--t893);--color10:var(--t892);--color11:var(--t891);--color12:var(--t890);--color0:var(--t885);--color02:var(--t919);--color04:var(--t920);--color06:var(--t921);--color08:var(--t922);--color:var(--t890);--colorHover:var(--t890);--colorPress:var(--t890);--colorFocus:var(--t922);--background:var(--t899);--backgroundHover:var(--t900);--backgroundPress:var(--t898);--backgroundFocus:var(--t898);--backgroundActive:var(--t899);--borderColor:var(--t440);--borderColorHover:var(--t898);--borderColorFocus:var(--t440);--borderColorPress:var(--t897);--placeholderColor:var(--t893);--colorTransparent:var(--t885);--color01:var(--t906);--color0075:var(--t907);--color005:var(--t908);--color0025:var(--t909);--color002:var(--t910);--color001:var(--t911);--background01:var(--t912);--background0075:var(--t913);--background005:var(--t914);--background0025:var(--t915);--background002:var(--t916);--background001:var(--t917);--outlineColor:var(--t918);}
|
|
1974
1986
|
}
|
|
1975
1987
|
.t_light_pink_SwitchThumb ::selection, .t_light_pink_Tooltip ::selection, .t_light_pink_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1976
|
-
:root.t_dark .t_light .t_purple, :root.t_light .t_purple, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1988
|
+
:root.t_dark .t_light .t_purple, :root.t_light .t_purple, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t923);--background02:var(--t924);--background04:var(--t925);--background06:var(--t926);--background08:var(--t927);--color1:var(--t928);--color2:var(--t929);--color3:var(--t930);--color4:var(--t931);--color5:var(--t932);--color6:var(--t933);--color7:var(--t934);--color8:var(--t935);--color9:var(--t479);--color10:var(--t936);--color11:var(--t937);--color12:var(--t938);--color0:var(--t939);--color02:var(--t940);--color04:var(--t941);--color06:var(--t942);--color08:var(--t943);--color:var(--t938);--colorHover:var(--t938);--colorPress:var(--t938);--colorFocus:var(--t943);--background:var(--t929);--backgroundHover:var(--t928);--backgroundPress:var(--t930);--backgroundFocus:var(--t930);--backgroundActive:var(--t929);--borderColor:var(--t931);--borderColorHover:var(--t930);--borderColorFocus:var(--t931);--borderColorPress:var(--t932);--placeholderColor:var(--t479);--colorTransparent:var(--t939);--color01:var(--t944);--color0075:var(--t945);--color005:var(--t946);--color0025:var(--t947);--color002:var(--t948);--color001:var(--t949);--background01:var(--t950);--background0075:var(--t951);--background005:var(--t952);--background0025:var(--t953);--background002:var(--t954);--background001:var(--t955);--outlineColor:var(--t956);}
|
|
1977
1989
|
@media(prefers-color-scheme:light){
|
|
1978
|
-
.t_purple {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
1990
|
+
.t_purple {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t923);--background02:var(--t924);--background04:var(--t925);--background06:var(--t926);--background08:var(--t927);--color1:var(--t928);--color2:var(--t929);--color3:var(--t930);--color4:var(--t931);--color5:var(--t932);--color6:var(--t933);--color7:var(--t934);--color8:var(--t935);--color9:var(--t479);--color10:var(--t936);--color11:var(--t937);--color12:var(--t938);--color0:var(--t939);--color02:var(--t940);--color04:var(--t941);--color06:var(--t942);--color08:var(--t943);--color:var(--t938);--colorHover:var(--t938);--colorPress:var(--t938);--colorFocus:var(--t943);--background:var(--t929);--backgroundHover:var(--t928);--backgroundPress:var(--t930);--backgroundFocus:var(--t930);--backgroundActive:var(--t929);--borderColor:var(--t931);--borderColorHover:var(--t930);--borderColorFocus:var(--t931);--borderColorPress:var(--t932);--placeholderColor:var(--t479);--colorTransparent:var(--t939);--color01:var(--t944);--color0075:var(--t945);--color005:var(--t946);--color0025:var(--t947);--color002:var(--t948);--color001:var(--t949);--background01:var(--t950);--background0075:var(--t951);--background005:var(--t952);--background0025:var(--t953);--background002:var(--t954);--background001:var(--t955);--outlineColor:var(--t956);}
|
|
1979
1991
|
}
|
|
1980
1992
|
.t_light_purple ::selection{background:var(--color5);color:var(--color11)}
|
|
1981
|
-
:root.t_dark .t_light .t_purple_Button, :root.t_dark .t_light .t_purple_SliderThumb, :root.t_dark .t_light .t_purple_Switch, :root.t_dark .t_light .t_purple_surface2, :root.t_light .t_purple_Button, :root.t_light .t_purple_SliderThumb, :root.t_light .t_purple_Switch, :root.t_light .t_purple_surface2, .tm_xxt {--color:var(--
|
|
1993
|
+
:root.t_dark .t_light .t_purple_Button, :root.t_dark .t_light .t_purple_SliderThumb, :root.t_dark .t_light .t_purple_Switch, :root.t_dark .t_light .t_purple_surface2, :root.t_light .t_purple_Button, :root.t_light .t_purple_SliderThumb, :root.t_light .t_purple_Switch, :root.t_light .t_purple_surface2, .tm_xxt {--color:var(--t937);--colorHover:var(--t937);--colorPress:var(--t937);--colorFocus:var(--t938);--background:var(--t931);--backgroundHover:var(--t930);--backgroundPress:var(--t932);--backgroundFocus:var(--t934);--backgroundActive:var(--t931);--borderColor:var(--t933);--borderColorHover:var(--t932);--borderColorFocus:var(--t933);--borderColorPress:var(--t934);--color01:var(--t944);--color0075:var(--t945);--color005:var(--t946);--color0025:var(--t947);--color002:var(--t948);--color001:var(--t949);--background01:var(--t950);--background0075:var(--t951);--background005:var(--t952);--background0025:var(--t953);--background002:var(--t954);--background001:var(--t955);--background02:var(--t924);--background04:var(--t925);--background06:var(--t926);--background08:var(--t927);--outlineColor:var(--t956);}
|
|
1982
1994
|
@media(prefers-color-scheme:light){
|
|
1983
|
-
.t_purple_Button, .t_purple_SliderThumb, .t_purple_Switch, .t_purple_surface2 {--color:var(--
|
|
1995
|
+
.t_purple_Button, .t_purple_SliderThumb, .t_purple_Switch, .t_purple_surface2 {--color:var(--t937);--colorHover:var(--t937);--colorPress:var(--t937);--colorFocus:var(--t938);--background:var(--t931);--backgroundHover:var(--t930);--backgroundPress:var(--t932);--backgroundFocus:var(--t934);--backgroundActive:var(--t931);--borderColor:var(--t933);--borderColorHover:var(--t932);--borderColorFocus:var(--t933);--borderColorPress:var(--t934);--color01:var(--t944);--color0075:var(--t945);--color005:var(--t946);--color0025:var(--t947);--color002:var(--t948);--color001:var(--t949);--background01:var(--t950);--background0075:var(--t951);--background005:var(--t952);--background0025:var(--t953);--background002:var(--t954);--background001:var(--t955);--background02:var(--t924);--background04:var(--t925);--background06:var(--t926);--background08:var(--t927);--outlineColor:var(--t956);}
|
|
1984
1996
|
}
|
|
1985
|
-
:root.t_dark .t_light .t_purple_Input, :root.t_dark .t_light .t_purple_Progress, :root.t_dark .t_light .t_purple_Slider, :root.t_dark .t_light .t_purple_TextArea, :root.t_dark .t_light .t_purple_surface1, :root.t_light .t_purple_Input, :root.t_light .t_purple_Progress, :root.t_light .t_purple_Slider, :root.t_light .t_purple_TextArea, :root.t_light .t_purple_surface1, .tm_xxt {--color:var(--
|
|
1997
|
+
:root.t_dark .t_light .t_purple_Input, :root.t_dark .t_light .t_purple_Progress, :root.t_dark .t_light .t_purple_Slider, :root.t_dark .t_light .t_purple_TextArea, :root.t_dark .t_light .t_purple_surface1, :root.t_light .t_purple_Input, :root.t_light .t_purple_Progress, :root.t_light .t_purple_Slider, :root.t_light .t_purple_TextArea, :root.t_light .t_purple_surface1, .tm_xxt {--color:var(--t937);--colorHover:var(--t937);--colorPress:var(--t937);--colorFocus:var(--t938);--background:var(--t930);--backgroundHover:var(--t929);--backgroundPress:var(--t931);--backgroundFocus:var(--t932);--backgroundActive:var(--t930);--borderColor:var(--t932);--borderColorHover:var(--t931);--borderColorFocus:var(--t932);--borderColorPress:var(--t933);--color01:var(--t944);--color0075:var(--t945);--color005:var(--t946);--color0025:var(--t947);--color002:var(--t948);--color001:var(--t949);--background01:var(--t950);--background0075:var(--t951);--background005:var(--t952);--background0025:var(--t953);--background002:var(--t954);--background001:var(--t955);--background02:var(--t924);--background04:var(--t925);--background06:var(--t926);--background08:var(--t927);--outlineColor:var(--t956);}
|
|
1986
1998
|
@media(prefers-color-scheme:light){
|
|
1987
|
-
.t_purple_Input, .t_purple_Progress, .t_purple_Slider, .t_purple_TextArea, .t_purple_surface1 {--color:var(--
|
|
1999
|
+
.t_purple_Input, .t_purple_Progress, .t_purple_Slider, .t_purple_TextArea, .t_purple_surface1 {--color:var(--t937);--colorHover:var(--t937);--colorPress:var(--t937);--colorFocus:var(--t938);--background:var(--t930);--backgroundHover:var(--t929);--backgroundPress:var(--t931);--backgroundFocus:var(--t932);--backgroundActive:var(--t930);--borderColor:var(--t932);--borderColorHover:var(--t931);--borderColorFocus:var(--t932);--borderColorPress:var(--t933);--color01:var(--t944);--color0075:var(--t945);--color005:var(--t946);--color0025:var(--t947);--color002:var(--t948);--color001:var(--t949);--background01:var(--t950);--background0075:var(--t951);--background005:var(--t952);--background0025:var(--t953);--background002:var(--t954);--background001:var(--t955);--background02:var(--t924);--background04:var(--t925);--background06:var(--t926);--background08:var(--t927);--outlineColor:var(--t956);}
|
|
1988
2000
|
}
|
|
1989
|
-
:root.t_dark .t_light .t_purple_ProgressIndicator, :root.t_dark .t_light .t_purple_SliderActive, :root.t_light .t_purple_ProgressIndicator, :root.t_light .t_purple_SliderActive, .tm_xxt {--color:var(--
|
|
2001
|
+
:root.t_dark .t_light .t_purple_ProgressIndicator, :root.t_dark .t_light .t_purple_SliderActive, :root.t_light .t_purple_ProgressIndicator, :root.t_light .t_purple_SliderActive, .tm_xxt {--color:var(--t937);--colorHover:var(--t937);--colorPress:var(--t937);--colorFocus:var(--t938);--background:var(--t933);--backgroundHover:var(--t932);--backgroundPress:var(--t934);--backgroundFocus:var(--t937);--backgroundActive:var(--t933);--borderColor:var(--t935);--borderColorHover:var(--t934);--borderColorFocus:var(--t935);--borderColorPress:var(--t479);--color01:var(--t944);--color0075:var(--t945);--color005:var(--t946);--color0025:var(--t947);--color002:var(--t948);--color001:var(--t949);--background01:var(--t950);--background0075:var(--t951);--background005:var(--t952);--background0025:var(--t953);--background002:var(--t954);--background001:var(--t955);--background02:var(--t924);--background04:var(--t925);--background06:var(--t926);--background08:var(--t927);--outlineColor:var(--t956);}
|
|
1990
2002
|
@media(prefers-color-scheme:light){
|
|
1991
|
-
.t_purple_ProgressIndicator, .t_purple_SliderActive {--color:var(--
|
|
2003
|
+
.t_purple_ProgressIndicator, .t_purple_SliderActive {--color:var(--t937);--colorHover:var(--t937);--colorPress:var(--t937);--colorFocus:var(--t938);--background:var(--t933);--backgroundHover:var(--t932);--backgroundPress:var(--t934);--backgroundFocus:var(--t937);--backgroundActive:var(--t933);--borderColor:var(--t935);--borderColorHover:var(--t934);--borderColorFocus:var(--t935);--borderColorPress:var(--t479);--color01:var(--t944);--color0075:var(--t945);--color005:var(--t946);--color0025:var(--t947);--color002:var(--t948);--color001:var(--t949);--background01:var(--t950);--background0075:var(--t951);--background005:var(--t952);--background0025:var(--t953);--background002:var(--t954);--background001:var(--t955);--background02:var(--t924);--background04:var(--t925);--background06:var(--t926);--background08:var(--t927);--outlineColor:var(--t956);}
|
|
1992
2004
|
}
|
|
1993
|
-
:root.t_dark .t_light .t_purple_SwitchThumb, :root.t_dark .t_light .t_purple_Tooltip, :root.t_dark .t_light .t_purple_accent, :root.t_light .t_purple_SwitchThumb, :root.t_light .t_purple_Tooltip, :root.t_light .t_purple_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
2005
|
+
:root.t_dark .t_light .t_purple_SwitchThumb, :root.t_dark .t_light .t_purple_Tooltip, :root.t_dark .t_light .t_purple_accent, :root.t_light .t_purple_SwitchThumb, :root.t_light .t_purple_Tooltip, :root.t_light .t_purple_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t939);--background02:var(--t924);--background04:var(--t925);--background06:var(--t926);--background08:var(--t927);--color1:var(--t938);--color2:var(--t937);--color3:var(--t936);--color4:var(--t479);--color5:var(--t935);--color6:var(--t934);--color7:var(--t933);--color8:var(--t932);--color9:var(--t931);--color10:var(--t930);--color11:var(--t929);--color12:var(--t928);--color0:var(--t923);--color02:var(--t957);--color04:var(--t958);--color06:var(--t959);--color08:var(--t960);--color:var(--t928);--colorHover:var(--t928);--colorPress:var(--t928);--colorFocus:var(--t960);--background:var(--t937);--backgroundHover:var(--t938);--backgroundPress:var(--t936);--backgroundFocus:var(--t936);--backgroundActive:var(--t937);--borderColor:var(--t479);--borderColorHover:var(--t936);--borderColorFocus:var(--t479);--borderColorPress:var(--t935);--placeholderColor:var(--t931);--colorTransparent:var(--t923);--color01:var(--t944);--color0075:var(--t945);--color005:var(--t946);--color0025:var(--t947);--color002:var(--t948);--color001:var(--t949);--background01:var(--t950);--background0075:var(--t951);--background005:var(--t952);--background0025:var(--t953);--background002:var(--t954);--background001:var(--t955);--outlineColor:var(--t956);}
|
|
1994
2006
|
@media(prefers-color-scheme:light){
|
|
1995
|
-
.t_purple_SwitchThumb, .t_purple_Tooltip, .t_purple_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
2007
|
+
.t_purple_SwitchThumb, .t_purple_Tooltip, .t_purple_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t939);--background02:var(--t924);--background04:var(--t925);--background06:var(--t926);--background08:var(--t927);--color1:var(--t938);--color2:var(--t937);--color3:var(--t936);--color4:var(--t479);--color5:var(--t935);--color6:var(--t934);--color7:var(--t933);--color8:var(--t932);--color9:var(--t931);--color10:var(--t930);--color11:var(--t929);--color12:var(--t928);--color0:var(--t923);--color02:var(--t957);--color04:var(--t958);--color06:var(--t959);--color08:var(--t960);--color:var(--t928);--colorHover:var(--t928);--colorPress:var(--t928);--colorFocus:var(--t960);--background:var(--t937);--backgroundHover:var(--t938);--backgroundPress:var(--t936);--backgroundFocus:var(--t936);--backgroundActive:var(--t937);--borderColor:var(--t479);--borderColorHover:var(--t936);--borderColorFocus:var(--t479);--borderColorPress:var(--t935);--placeholderColor:var(--t931);--colorTransparent:var(--t923);--color01:var(--t944);--color0075:var(--t945);--color005:var(--t946);--color0025:var(--t947);--color002:var(--t948);--color001:var(--t949);--background01:var(--t950);--background0075:var(--t951);--background005:var(--t952);--background0025:var(--t953);--background002:var(--t954);--background001:var(--t955);--outlineColor:var(--t956);}
|
|
1996
2008
|
}
|
|
1997
2009
|
.t_light_purple_SwitchThumb ::selection, .t_light_purple_Tooltip ::selection, .t_light_purple_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
1998
|
-
:root.t_dark .t_light .t_red, :root.t_light .t_red, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
2010
|
+
:root.t_dark .t_light .t_red, :root.t_light .t_red, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t961);--background02:var(--t962);--background04:var(--t963);--background06:var(--t964);--background08:var(--t965);--color1:var(--t966);--color2:var(--t967);--color3:var(--t968);--color4:var(--t969);--color5:var(--t970);--color6:var(--t971);--color7:var(--t972);--color8:var(--t973);--color9:var(--t518);--color10:var(--t974);--color11:var(--t975);--color12:var(--t976);--color0:var(--t977);--color02:var(--t978);--color04:var(--t979);--color06:var(--t980);--color08:var(--t981);--color:var(--t976);--colorHover:var(--t976);--colorPress:var(--t976);--colorFocus:var(--t981);--background:var(--t967);--backgroundHover:var(--t966);--backgroundPress:var(--t968);--backgroundFocus:var(--t968);--backgroundActive:var(--t967);--borderColor:var(--t969);--borderColorHover:var(--t968);--borderColorFocus:var(--t969);--borderColorPress:var(--t970);--placeholderColor:var(--t518);--colorTransparent:var(--t977);--color01:var(--t982);--color0075:var(--t983);--color005:var(--t984);--color0025:var(--t985);--color002:var(--t986);--color001:var(--t987);--background01:var(--t988);--background0075:var(--t989);--background005:var(--t990);--background0025:var(--t991);--background002:var(--t992);--background001:var(--t993);--outlineColor:var(--t994);}
|
|
1999
2011
|
@media(prefers-color-scheme:light){
|
|
2000
|
-
.t_red {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
2012
|
+
.t_red {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t961);--background02:var(--t962);--background04:var(--t963);--background06:var(--t964);--background08:var(--t965);--color1:var(--t966);--color2:var(--t967);--color3:var(--t968);--color4:var(--t969);--color5:var(--t970);--color6:var(--t971);--color7:var(--t972);--color8:var(--t973);--color9:var(--t518);--color10:var(--t974);--color11:var(--t975);--color12:var(--t976);--color0:var(--t977);--color02:var(--t978);--color04:var(--t979);--color06:var(--t980);--color08:var(--t981);--color:var(--t976);--colorHover:var(--t976);--colorPress:var(--t976);--colorFocus:var(--t981);--background:var(--t967);--backgroundHover:var(--t966);--backgroundPress:var(--t968);--backgroundFocus:var(--t968);--backgroundActive:var(--t967);--borderColor:var(--t969);--borderColorHover:var(--t968);--borderColorFocus:var(--t969);--borderColorPress:var(--t970);--placeholderColor:var(--t518);--colorTransparent:var(--t977);--color01:var(--t982);--color0075:var(--t983);--color005:var(--t984);--color0025:var(--t985);--color002:var(--t986);--color001:var(--t987);--background01:var(--t988);--background0075:var(--t989);--background005:var(--t990);--background0025:var(--t991);--background002:var(--t992);--background001:var(--t993);--outlineColor:var(--t994);}
|
|
2001
2013
|
}
|
|
2002
2014
|
.t_light_red ::selection{background:var(--color5);color:var(--color11)}
|
|
2003
|
-
:root.t_dark .t_light .t_red_Button, :root.t_dark .t_light .t_red_SliderThumb, :root.t_dark .t_light .t_red_Switch, :root.t_dark .t_light .t_red_surface2, :root.t_light .t_red_Button, :root.t_light .t_red_SliderThumb, :root.t_light .t_red_Switch, :root.t_light .t_red_surface2, .tm_xxt {--color:var(--
|
|
2015
|
+
:root.t_dark .t_light .t_red_Button, :root.t_dark .t_light .t_red_SliderThumb, :root.t_dark .t_light .t_red_Switch, :root.t_dark .t_light .t_red_surface2, :root.t_light .t_red_Button, :root.t_light .t_red_SliderThumb, :root.t_light .t_red_Switch, :root.t_light .t_red_surface2, .tm_xxt {--color:var(--t975);--colorHover:var(--t975);--colorPress:var(--t975);--colorFocus:var(--t976);--background:var(--t969);--backgroundHover:var(--t968);--backgroundPress:var(--t970);--backgroundFocus:var(--t972);--backgroundActive:var(--t969);--borderColor:var(--t971);--borderColorHover:var(--t970);--borderColorFocus:var(--t971);--borderColorPress:var(--t972);--color01:var(--t982);--color0075:var(--t983);--color005:var(--t984);--color0025:var(--t985);--color002:var(--t986);--color001:var(--t987);--background01:var(--t988);--background0075:var(--t989);--background005:var(--t990);--background0025:var(--t991);--background002:var(--t992);--background001:var(--t993);--background02:var(--t962);--background04:var(--t963);--background06:var(--t964);--background08:var(--t965);--outlineColor:var(--t994);}
|
|
2004
2016
|
@media(prefers-color-scheme:light){
|
|
2005
|
-
.t_red_Button, .t_red_SliderThumb, .t_red_Switch, .t_red_surface2 {--color:var(--
|
|
2017
|
+
.t_red_Button, .t_red_SliderThumb, .t_red_Switch, .t_red_surface2 {--color:var(--t975);--colorHover:var(--t975);--colorPress:var(--t975);--colorFocus:var(--t976);--background:var(--t969);--backgroundHover:var(--t968);--backgroundPress:var(--t970);--backgroundFocus:var(--t972);--backgroundActive:var(--t969);--borderColor:var(--t971);--borderColorHover:var(--t970);--borderColorFocus:var(--t971);--borderColorPress:var(--t972);--color01:var(--t982);--color0075:var(--t983);--color005:var(--t984);--color0025:var(--t985);--color002:var(--t986);--color001:var(--t987);--background01:var(--t988);--background0075:var(--t989);--background005:var(--t990);--background0025:var(--t991);--background002:var(--t992);--background001:var(--t993);--background02:var(--t962);--background04:var(--t963);--background06:var(--t964);--background08:var(--t965);--outlineColor:var(--t994);}
|
|
2006
2018
|
}
|
|
2007
|
-
:root.t_dark .t_light .t_red_Input, :root.t_dark .t_light .t_red_Progress, :root.t_dark .t_light .t_red_Slider, :root.t_dark .t_light .t_red_TextArea, :root.t_dark .t_light .t_red_surface1, :root.t_light .t_red_Input, :root.t_light .t_red_Progress, :root.t_light .t_red_Slider, :root.t_light .t_red_TextArea, :root.t_light .t_red_surface1, .tm_xxt {--color:var(--
|
|
2019
|
+
:root.t_dark .t_light .t_red_Input, :root.t_dark .t_light .t_red_Progress, :root.t_dark .t_light .t_red_Slider, :root.t_dark .t_light .t_red_TextArea, :root.t_dark .t_light .t_red_surface1, :root.t_light .t_red_Input, :root.t_light .t_red_Progress, :root.t_light .t_red_Slider, :root.t_light .t_red_TextArea, :root.t_light .t_red_surface1, .tm_xxt {--color:var(--t975);--colorHover:var(--t975);--colorPress:var(--t975);--colorFocus:var(--t976);--background:var(--t968);--backgroundHover:var(--t967);--backgroundPress:var(--t969);--backgroundFocus:var(--t970);--backgroundActive:var(--t968);--borderColor:var(--t970);--borderColorHover:var(--t969);--borderColorFocus:var(--t970);--borderColorPress:var(--t971);--color01:var(--t982);--color0075:var(--t983);--color005:var(--t984);--color0025:var(--t985);--color002:var(--t986);--color001:var(--t987);--background01:var(--t988);--background0075:var(--t989);--background005:var(--t990);--background0025:var(--t991);--background002:var(--t992);--background001:var(--t993);--background02:var(--t962);--background04:var(--t963);--background06:var(--t964);--background08:var(--t965);--outlineColor:var(--t994);}
|
|
2008
2020
|
@media(prefers-color-scheme:light){
|
|
2009
|
-
.t_red_Input, .t_red_Progress, .t_red_Slider, .t_red_TextArea, .t_red_surface1 {--color:var(--
|
|
2021
|
+
.t_red_Input, .t_red_Progress, .t_red_Slider, .t_red_TextArea, .t_red_surface1 {--color:var(--t975);--colorHover:var(--t975);--colorPress:var(--t975);--colorFocus:var(--t976);--background:var(--t968);--backgroundHover:var(--t967);--backgroundPress:var(--t969);--backgroundFocus:var(--t970);--backgroundActive:var(--t968);--borderColor:var(--t970);--borderColorHover:var(--t969);--borderColorFocus:var(--t970);--borderColorPress:var(--t971);--color01:var(--t982);--color0075:var(--t983);--color005:var(--t984);--color0025:var(--t985);--color002:var(--t986);--color001:var(--t987);--background01:var(--t988);--background0075:var(--t989);--background005:var(--t990);--background0025:var(--t991);--background002:var(--t992);--background001:var(--t993);--background02:var(--t962);--background04:var(--t963);--background06:var(--t964);--background08:var(--t965);--outlineColor:var(--t994);}
|
|
2010
2022
|
}
|
|
2011
|
-
:root.t_dark .t_light .t_red_ProgressIndicator, :root.t_dark .t_light .t_red_SliderActive, :root.t_light .t_red_ProgressIndicator, :root.t_light .t_red_SliderActive, .tm_xxt {--color:var(--
|
|
2023
|
+
:root.t_dark .t_light .t_red_ProgressIndicator, :root.t_dark .t_light .t_red_SliderActive, :root.t_light .t_red_ProgressIndicator, :root.t_light .t_red_SliderActive, .tm_xxt {--color:var(--t975);--colorHover:var(--t975);--colorPress:var(--t975);--colorFocus:var(--t976);--background:var(--t971);--backgroundHover:var(--t970);--backgroundPress:var(--t972);--backgroundFocus:var(--t975);--backgroundActive:var(--t971);--borderColor:var(--t973);--borderColorHover:var(--t972);--borderColorFocus:var(--t973);--borderColorPress:var(--t518);--color01:var(--t982);--color0075:var(--t983);--color005:var(--t984);--color0025:var(--t985);--color002:var(--t986);--color001:var(--t987);--background01:var(--t988);--background0075:var(--t989);--background005:var(--t990);--background0025:var(--t991);--background002:var(--t992);--background001:var(--t993);--background02:var(--t962);--background04:var(--t963);--background06:var(--t964);--background08:var(--t965);--outlineColor:var(--t994);}
|
|
2012
2024
|
@media(prefers-color-scheme:light){
|
|
2013
|
-
.t_red_ProgressIndicator, .t_red_SliderActive {--color:var(--
|
|
2025
|
+
.t_red_ProgressIndicator, .t_red_SliderActive {--color:var(--t975);--colorHover:var(--t975);--colorPress:var(--t975);--colorFocus:var(--t976);--background:var(--t971);--backgroundHover:var(--t970);--backgroundPress:var(--t972);--backgroundFocus:var(--t975);--backgroundActive:var(--t971);--borderColor:var(--t973);--borderColorHover:var(--t972);--borderColorFocus:var(--t973);--borderColorPress:var(--t518);--color01:var(--t982);--color0075:var(--t983);--color005:var(--t984);--color0025:var(--t985);--color002:var(--t986);--color001:var(--t987);--background01:var(--t988);--background0075:var(--t989);--background005:var(--t990);--background0025:var(--t991);--background002:var(--t992);--background001:var(--t993);--background02:var(--t962);--background04:var(--t963);--background06:var(--t964);--background08:var(--t965);--outlineColor:var(--t994);}
|
|
2014
2026
|
}
|
|
2015
|
-
:root.t_dark .t_light .t_red_SwitchThumb, :root.t_dark .t_light .t_red_Tooltip, :root.t_dark .t_light .t_red_accent, :root.t_light .t_red_SwitchThumb, :root.t_light .t_red_Tooltip, :root.t_light .t_red_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
2027
|
+
:root.t_dark .t_light .t_red_SwitchThumb, :root.t_dark .t_light .t_red_Tooltip, :root.t_dark .t_light .t_red_accent, :root.t_light .t_red_SwitchThumb, :root.t_light .t_red_Tooltip, :root.t_light .t_red_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t977);--background02:var(--t962);--background04:var(--t963);--background06:var(--t964);--background08:var(--t965);--color1:var(--t976);--color2:var(--t975);--color3:var(--t974);--color4:var(--t518);--color5:var(--t973);--color6:var(--t972);--color7:var(--t971);--color8:var(--t970);--color9:var(--t969);--color10:var(--t968);--color11:var(--t967);--color12:var(--t966);--color0:var(--t961);--color02:var(--t995);--color04:var(--t996);--color06:var(--t997);--color08:var(--t998);--color:var(--t966);--colorHover:var(--t966);--colorPress:var(--t966);--colorFocus:var(--t998);--background:var(--t975);--backgroundHover:var(--t976);--backgroundPress:var(--t974);--backgroundFocus:var(--t974);--backgroundActive:var(--t975);--borderColor:var(--t518);--borderColorHover:var(--t974);--borderColorFocus:var(--t518);--borderColorPress:var(--t973);--placeholderColor:var(--t969);--colorTransparent:var(--t961);--color01:var(--t982);--color0075:var(--t983);--color005:var(--t984);--color0025:var(--t985);--color002:var(--t986);--color001:var(--t987);--background01:var(--t988);--background0075:var(--t989);--background005:var(--t990);--background0025:var(--t991);--background002:var(--t992);--background001:var(--t993);--outlineColor:var(--t994);}
|
|
2016
2028
|
@media(prefers-color-scheme:light){
|
|
2017
|
-
.t_red_SwitchThumb, .t_red_Tooltip, .t_red_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
2029
|
+
.t_red_SwitchThumb, .t_red_Tooltip, .t_red_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t977);--background02:var(--t962);--background04:var(--t963);--background06:var(--t964);--background08:var(--t965);--color1:var(--t976);--color2:var(--t975);--color3:var(--t974);--color4:var(--t518);--color5:var(--t973);--color6:var(--t972);--color7:var(--t971);--color8:var(--t970);--color9:var(--t969);--color10:var(--t968);--color11:var(--t967);--color12:var(--t966);--color0:var(--t961);--color02:var(--t995);--color04:var(--t996);--color06:var(--t997);--color08:var(--t998);--color:var(--t966);--colorHover:var(--t966);--colorPress:var(--t966);--colorFocus:var(--t998);--background:var(--t975);--backgroundHover:var(--t976);--backgroundPress:var(--t974);--backgroundFocus:var(--t974);--backgroundActive:var(--t975);--borderColor:var(--t518);--borderColorHover:var(--t974);--borderColorFocus:var(--t518);--borderColorPress:var(--t973);--placeholderColor:var(--t969);--colorTransparent:var(--t961);--color01:var(--t982);--color0075:var(--t983);--color005:var(--t984);--color0025:var(--t985);--color002:var(--t986);--color001:var(--t987);--background01:var(--t988);--background0075:var(--t989);--background005:var(--t990);--background0025:var(--t991);--background002:var(--t992);--background001:var(--t993);--outlineColor:var(--t994);}
|
|
2018
2030
|
}
|
|
2019
2031
|
.t_light_red_SwitchThumb ::selection, .t_light_red_Tooltip ::selection, .t_light_red_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
2020
|
-
:root.t_dark .t_light .t_teal, :root.t_light .t_teal, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
2032
|
+
:root.t_dark .t_light .t_teal, :root.t_light .t_teal, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t999);--background02:var(--t1000);--background04:var(--t1001);--background06:var(--t1002);--background08:var(--t1003);--color1:var(--t1004);--color2:var(--t1005);--color3:var(--t1006);--color4:var(--t1007);--color5:var(--t1008);--color6:var(--t1009);--color7:var(--t1010);--color8:var(--t1011);--color9:var(--t557);--color10:var(--t1012);--color11:var(--t1013);--color12:var(--t1014);--color0:var(--t1015);--color02:var(--t1016);--color04:var(--t1017);--color06:var(--t1018);--color08:var(--t1019);--color:var(--t1014);--colorHover:var(--t1014);--colorPress:var(--t1014);--colorFocus:var(--t1019);--background:var(--t1005);--backgroundHover:var(--t1004);--backgroundPress:var(--t1006);--backgroundFocus:var(--t1006);--backgroundActive:var(--t1005);--borderColor:var(--t1007);--borderColorHover:var(--t1006);--borderColorFocus:var(--t1007);--borderColorPress:var(--t1008);--placeholderColor:var(--t557);--colorTransparent:var(--t1015);--color01:var(--t1020);--color0075:var(--t1021);--color005:var(--t1022);--color0025:var(--t1023);--color002:var(--t1024);--color001:var(--t1025);--background01:var(--t1026);--background0075:var(--t1027);--background005:var(--t1028);--background0025:var(--t1029);--background002:var(--t1030);--background001:var(--t1031);--outlineColor:var(--t1032);}
|
|
2021
2033
|
@media(prefers-color-scheme:light){
|
|
2022
|
-
.t_teal {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
2034
|
+
.t_teal {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t999);--background02:var(--t1000);--background04:var(--t1001);--background06:var(--t1002);--background08:var(--t1003);--color1:var(--t1004);--color2:var(--t1005);--color3:var(--t1006);--color4:var(--t1007);--color5:var(--t1008);--color6:var(--t1009);--color7:var(--t1010);--color8:var(--t1011);--color9:var(--t557);--color10:var(--t1012);--color11:var(--t1013);--color12:var(--t1014);--color0:var(--t1015);--color02:var(--t1016);--color04:var(--t1017);--color06:var(--t1018);--color08:var(--t1019);--color:var(--t1014);--colorHover:var(--t1014);--colorPress:var(--t1014);--colorFocus:var(--t1019);--background:var(--t1005);--backgroundHover:var(--t1004);--backgroundPress:var(--t1006);--backgroundFocus:var(--t1006);--backgroundActive:var(--t1005);--borderColor:var(--t1007);--borderColorHover:var(--t1006);--borderColorFocus:var(--t1007);--borderColorPress:var(--t1008);--placeholderColor:var(--t557);--colorTransparent:var(--t1015);--color01:var(--t1020);--color0075:var(--t1021);--color005:var(--t1022);--color0025:var(--t1023);--color002:var(--t1024);--color001:var(--t1025);--background01:var(--t1026);--background0075:var(--t1027);--background005:var(--t1028);--background0025:var(--t1029);--background002:var(--t1030);--background001:var(--t1031);--outlineColor:var(--t1032);}
|
|
2023
2035
|
}
|
|
2024
2036
|
.t_light_teal ::selection{background:var(--color5);color:var(--color11)}
|
|
2025
|
-
:root.t_dark .t_light .t_teal_Button, :root.t_dark .t_light .t_teal_SliderThumb, :root.t_dark .t_light .t_teal_Switch, :root.t_dark .t_light .t_teal_surface2, :root.t_light .t_teal_Button, :root.t_light .t_teal_SliderThumb, :root.t_light .t_teal_Switch, :root.t_light .t_teal_surface2, .tm_xxt {--color:var(--
|
|
2037
|
+
:root.t_dark .t_light .t_teal_Button, :root.t_dark .t_light .t_teal_SliderThumb, :root.t_dark .t_light .t_teal_Switch, :root.t_dark .t_light .t_teal_surface2, :root.t_light .t_teal_Button, :root.t_light .t_teal_SliderThumb, :root.t_light .t_teal_Switch, :root.t_light .t_teal_surface2, .tm_xxt {--color:var(--t1013);--colorHover:var(--t1013);--colorPress:var(--t1013);--colorFocus:var(--t1014);--background:var(--t1007);--backgroundHover:var(--t1006);--backgroundPress:var(--t1008);--backgroundFocus:var(--t1010);--backgroundActive:var(--t1007);--borderColor:var(--t1009);--borderColorHover:var(--t1008);--borderColorFocus:var(--t1009);--borderColorPress:var(--t1010);--color01:var(--t1020);--color0075:var(--t1021);--color005:var(--t1022);--color0025:var(--t1023);--color002:var(--t1024);--color001:var(--t1025);--background01:var(--t1026);--background0075:var(--t1027);--background005:var(--t1028);--background0025:var(--t1029);--background002:var(--t1030);--background001:var(--t1031);--background02:var(--t1000);--background04:var(--t1001);--background06:var(--t1002);--background08:var(--t1003);--outlineColor:var(--t1032);}
|
|
2026
2038
|
@media(prefers-color-scheme:light){
|
|
2027
|
-
.t_teal_Button, .t_teal_SliderThumb, .t_teal_Switch, .t_teal_surface2 {--color:var(--
|
|
2039
|
+
.t_teal_Button, .t_teal_SliderThumb, .t_teal_Switch, .t_teal_surface2 {--color:var(--t1013);--colorHover:var(--t1013);--colorPress:var(--t1013);--colorFocus:var(--t1014);--background:var(--t1007);--backgroundHover:var(--t1006);--backgroundPress:var(--t1008);--backgroundFocus:var(--t1010);--backgroundActive:var(--t1007);--borderColor:var(--t1009);--borderColorHover:var(--t1008);--borderColorFocus:var(--t1009);--borderColorPress:var(--t1010);--color01:var(--t1020);--color0075:var(--t1021);--color005:var(--t1022);--color0025:var(--t1023);--color002:var(--t1024);--color001:var(--t1025);--background01:var(--t1026);--background0075:var(--t1027);--background005:var(--t1028);--background0025:var(--t1029);--background002:var(--t1030);--background001:var(--t1031);--background02:var(--t1000);--background04:var(--t1001);--background06:var(--t1002);--background08:var(--t1003);--outlineColor:var(--t1032);}
|
|
2028
2040
|
}
|
|
2029
|
-
:root.t_dark .t_light .t_teal_Input, :root.t_dark .t_light .t_teal_Progress, :root.t_dark .t_light .t_teal_Slider, :root.t_dark .t_light .t_teal_TextArea, :root.t_dark .t_light .t_teal_surface1, :root.t_light .t_teal_Input, :root.t_light .t_teal_Progress, :root.t_light .t_teal_Slider, :root.t_light .t_teal_TextArea, :root.t_light .t_teal_surface1, .tm_xxt {--color:var(--
|
|
2041
|
+
:root.t_dark .t_light .t_teal_Input, :root.t_dark .t_light .t_teal_Progress, :root.t_dark .t_light .t_teal_Slider, :root.t_dark .t_light .t_teal_TextArea, :root.t_dark .t_light .t_teal_surface1, :root.t_light .t_teal_Input, :root.t_light .t_teal_Progress, :root.t_light .t_teal_Slider, :root.t_light .t_teal_TextArea, :root.t_light .t_teal_surface1, .tm_xxt {--color:var(--t1013);--colorHover:var(--t1013);--colorPress:var(--t1013);--colorFocus:var(--t1014);--background:var(--t1006);--backgroundHover:var(--t1005);--backgroundPress:var(--t1007);--backgroundFocus:var(--t1008);--backgroundActive:var(--t1006);--borderColor:var(--t1008);--borderColorHover:var(--t1007);--borderColorFocus:var(--t1008);--borderColorPress:var(--t1009);--color01:var(--t1020);--color0075:var(--t1021);--color005:var(--t1022);--color0025:var(--t1023);--color002:var(--t1024);--color001:var(--t1025);--background01:var(--t1026);--background0075:var(--t1027);--background005:var(--t1028);--background0025:var(--t1029);--background002:var(--t1030);--background001:var(--t1031);--background02:var(--t1000);--background04:var(--t1001);--background06:var(--t1002);--background08:var(--t1003);--outlineColor:var(--t1032);}
|
|
2030
2042
|
@media(prefers-color-scheme:light){
|
|
2031
|
-
.t_teal_Input, .t_teal_Progress, .t_teal_Slider, .t_teal_TextArea, .t_teal_surface1 {--color:var(--
|
|
2043
|
+
.t_teal_Input, .t_teal_Progress, .t_teal_Slider, .t_teal_TextArea, .t_teal_surface1 {--color:var(--t1013);--colorHover:var(--t1013);--colorPress:var(--t1013);--colorFocus:var(--t1014);--background:var(--t1006);--backgroundHover:var(--t1005);--backgroundPress:var(--t1007);--backgroundFocus:var(--t1008);--backgroundActive:var(--t1006);--borderColor:var(--t1008);--borderColorHover:var(--t1007);--borderColorFocus:var(--t1008);--borderColorPress:var(--t1009);--color01:var(--t1020);--color0075:var(--t1021);--color005:var(--t1022);--color0025:var(--t1023);--color002:var(--t1024);--color001:var(--t1025);--background01:var(--t1026);--background0075:var(--t1027);--background005:var(--t1028);--background0025:var(--t1029);--background002:var(--t1030);--background001:var(--t1031);--background02:var(--t1000);--background04:var(--t1001);--background06:var(--t1002);--background08:var(--t1003);--outlineColor:var(--t1032);}
|
|
2032
2044
|
}
|
|
2033
|
-
:root.t_dark .t_light .t_teal_ProgressIndicator, :root.t_dark .t_light .t_teal_SliderActive, :root.t_light .t_teal_ProgressIndicator, :root.t_light .t_teal_SliderActive, .tm_xxt {--color:var(--
|
|
2045
|
+
:root.t_dark .t_light .t_teal_ProgressIndicator, :root.t_dark .t_light .t_teal_SliderActive, :root.t_light .t_teal_ProgressIndicator, :root.t_light .t_teal_SliderActive, .tm_xxt {--color:var(--t1013);--colorHover:var(--t1013);--colorPress:var(--t1013);--colorFocus:var(--t1014);--background:var(--t1009);--backgroundHover:var(--t1008);--backgroundPress:var(--t1010);--backgroundFocus:var(--t1013);--backgroundActive:var(--t1009);--borderColor:var(--t1011);--borderColorHover:var(--t1010);--borderColorFocus:var(--t1011);--borderColorPress:var(--t557);--color01:var(--t1020);--color0075:var(--t1021);--color005:var(--t1022);--color0025:var(--t1023);--color002:var(--t1024);--color001:var(--t1025);--background01:var(--t1026);--background0075:var(--t1027);--background005:var(--t1028);--background0025:var(--t1029);--background002:var(--t1030);--background001:var(--t1031);--background02:var(--t1000);--background04:var(--t1001);--background06:var(--t1002);--background08:var(--t1003);--outlineColor:var(--t1032);}
|
|
2034
2046
|
@media(prefers-color-scheme:light){
|
|
2035
|
-
.t_teal_ProgressIndicator, .t_teal_SliderActive {--color:var(--
|
|
2047
|
+
.t_teal_ProgressIndicator, .t_teal_SliderActive {--color:var(--t1013);--colorHover:var(--t1013);--colorPress:var(--t1013);--colorFocus:var(--t1014);--background:var(--t1009);--backgroundHover:var(--t1008);--backgroundPress:var(--t1010);--backgroundFocus:var(--t1013);--backgroundActive:var(--t1009);--borderColor:var(--t1011);--borderColorHover:var(--t1010);--borderColorFocus:var(--t1011);--borderColorPress:var(--t557);--color01:var(--t1020);--color0075:var(--t1021);--color005:var(--t1022);--color0025:var(--t1023);--color002:var(--t1024);--color001:var(--t1025);--background01:var(--t1026);--background0075:var(--t1027);--background005:var(--t1028);--background0025:var(--t1029);--background002:var(--t1030);--background001:var(--t1031);--background02:var(--t1000);--background04:var(--t1001);--background06:var(--t1002);--background08:var(--t1003);--outlineColor:var(--t1032);}
|
|
2036
2048
|
}
|
|
2037
|
-
:root.t_dark .t_light .t_teal_SwitchThumb, :root.t_dark .t_light .t_teal_Tooltip, :root.t_dark .t_light .t_teal_accent, :root.t_light .t_teal_SwitchThumb, :root.t_light .t_teal_Tooltip, :root.t_light .t_teal_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
2049
|
+
:root.t_dark .t_light .t_teal_SwitchThumb, :root.t_dark .t_light .t_teal_Tooltip, :root.t_dark .t_light .t_teal_accent, :root.t_light .t_teal_SwitchThumb, :root.t_light .t_teal_Tooltip, :root.t_light .t_teal_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t1015);--background02:var(--t1000);--background04:var(--t1001);--background06:var(--t1002);--background08:var(--t1003);--color1:var(--t1014);--color2:var(--t1013);--color3:var(--t1012);--color4:var(--t557);--color5:var(--t1011);--color6:var(--t1010);--color7:var(--t1009);--color8:var(--t1008);--color9:var(--t1007);--color10:var(--t1006);--color11:var(--t1005);--color12:var(--t1004);--color0:var(--t999);--color02:var(--t1033);--color04:var(--t1034);--color06:var(--t1035);--color08:var(--t1036);--color:var(--t1004);--colorHover:var(--t1004);--colorPress:var(--t1004);--colorFocus:var(--t1036);--background:var(--t1013);--backgroundHover:var(--t1014);--backgroundPress:var(--t1012);--backgroundFocus:var(--t1012);--backgroundActive:var(--t1013);--borderColor:var(--t557);--borderColorHover:var(--t1012);--borderColorFocus:var(--t557);--borderColorPress:var(--t1011);--placeholderColor:var(--t1007);--colorTransparent:var(--t999);--color01:var(--t1020);--color0075:var(--t1021);--color005:var(--t1022);--color0025:var(--t1023);--color002:var(--t1024);--color001:var(--t1025);--background01:var(--t1026);--background0075:var(--t1027);--background005:var(--t1028);--background0025:var(--t1029);--background002:var(--t1030);--background001:var(--t1031);--outlineColor:var(--t1032);}
|
|
2038
2050
|
@media(prefers-color-scheme:light){
|
|
2039
|
-
.t_teal_SwitchThumb, .t_teal_Tooltip, .t_teal_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
2051
|
+
.t_teal_SwitchThumb, .t_teal_Tooltip, .t_teal_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t1015);--background02:var(--t1000);--background04:var(--t1001);--background06:var(--t1002);--background08:var(--t1003);--color1:var(--t1014);--color2:var(--t1013);--color3:var(--t1012);--color4:var(--t557);--color5:var(--t1011);--color6:var(--t1010);--color7:var(--t1009);--color8:var(--t1008);--color9:var(--t1007);--color10:var(--t1006);--color11:var(--t1005);--color12:var(--t1004);--color0:var(--t999);--color02:var(--t1033);--color04:var(--t1034);--color06:var(--t1035);--color08:var(--t1036);--color:var(--t1004);--colorHover:var(--t1004);--colorPress:var(--t1004);--colorFocus:var(--t1036);--background:var(--t1013);--backgroundHover:var(--t1014);--backgroundPress:var(--t1012);--backgroundFocus:var(--t1012);--backgroundActive:var(--t1013);--borderColor:var(--t557);--borderColorHover:var(--t1012);--borderColorFocus:var(--t557);--borderColorPress:var(--t1011);--placeholderColor:var(--t1007);--colorTransparent:var(--t999);--color01:var(--t1020);--color0075:var(--t1021);--color005:var(--t1022);--color0025:var(--t1023);--color002:var(--t1024);--color001:var(--t1025);--background01:var(--t1026);--background0075:var(--t1027);--background005:var(--t1028);--background0025:var(--t1029);--background002:var(--t1030);--background001:var(--t1031);--outlineColor:var(--t1032);}
|
|
2040
2052
|
}
|
|
2041
2053
|
.t_light_teal_SwitchThumb ::selection, .t_light_teal_Tooltip ::selection, .t_light_teal_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
2042
|
-
:root.t_dark .t_light .t_white, :root.t_light .t_white, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t18);--background02:var(--
|
|
2054
|
+
:root.t_dark .t_light .t_white, :root.t_light .t_white, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t18);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--color1:var(--t23);--color2:var(--t191);--color3:var(--t1);--color4:var(--t192);--color5:var(--t16);--color6:var(--t193);--color7:var(--t194);--color8:var(--t195);--color9:var(--t196);--color10:var(--t0);--color11:var(--t24);--color12:var(--t197);--color0:var(--t219);--color02:var(--t220);--color04:var(--t221);--color06:var(--t222);--color08:var(--t223);--color:var(--t197);--colorHover:var(--t197);--colorPress:var(--t197);--colorFocus:var(--t223);--background:var(--t191);--backgroundHover:var(--t23);--backgroundPress:var(--t1);--backgroundFocus:var(--t1);--backgroundActive:var(--t191);--borderColor:var(--t192);--borderColorHover:var(--t1);--borderColorFocus:var(--t192);--borderColorPress:var(--t16);--placeholderColor:var(--t196);--colorTransparent:var(--t219);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--outlineColor:var(--t236);}
|
|
2043
2055
|
@media(prefers-color-scheme:light){
|
|
2044
|
-
.t_white {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t18);--background02:var(--
|
|
2056
|
+
.t_white {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t18);--background02:var(--t215);--background04:var(--t216);--background06:var(--t217);--background08:var(--t218);--color1:var(--t23);--color2:var(--t191);--color3:var(--t1);--color4:var(--t192);--color5:var(--t16);--color6:var(--t193);--color7:var(--t194);--color8:var(--t195);--color9:var(--t196);--color10:var(--t0);--color11:var(--t24);--color12:var(--t197);--color0:var(--t219);--color02:var(--t220);--color04:var(--t221);--color06:var(--t222);--color08:var(--t223);--color:var(--t197);--colorHover:var(--t197);--colorPress:var(--t197);--colorFocus:var(--t223);--background:var(--t191);--backgroundHover:var(--t23);--backgroundPress:var(--t1);--backgroundFocus:var(--t1);--backgroundActive:var(--t191);--borderColor:var(--t192);--borderColorHover:var(--t1);--borderColorFocus:var(--t192);--borderColorPress:var(--t16);--placeholderColor:var(--t196);--colorTransparent:var(--t219);--color01:var(--t224);--color0075:var(--t225);--color005:var(--t226);--color0025:var(--t227);--color002:var(--t228);--color001:var(--t229);--background01:var(--t230);--background0075:var(--t231);--background005:var(--t232);--background0025:var(--t233);--background002:var(--t234);--background001:var(--t235);--outlineColor:var(--t236);}
|
|
2045
2057
|
}
|
|
2046
2058
|
.t_light_white ::selection{background:var(--color5);color:var(--color11)}
|
|
2047
|
-
:root.t_dark .t_light .t_yellow, :root.t_light .t_yellow, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
2059
|
+
:root.t_dark .t_light .t_yellow, :root.t_light .t_yellow, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t1037);--background02:var(--t1038);--background04:var(--t1039);--background06:var(--t1040);--background08:var(--t1041);--color1:var(--t1042);--color2:var(--t1043);--color3:var(--t1044);--color4:var(--t1045);--color5:var(--t1046);--color6:var(--t1047);--color7:var(--t1048);--color8:var(--t1049);--color9:var(--t596);--color10:var(--t1050);--color11:var(--t1051);--color12:var(--t1052);--color0:var(--t1053);--color02:var(--t1054);--color04:var(--t1055);--color06:var(--t1056);--color08:var(--t1057);--color:var(--t1052);--colorHover:var(--t1052);--colorPress:var(--t1052);--colorFocus:var(--t1057);--background:var(--t1043);--backgroundHover:var(--t1042);--backgroundPress:var(--t1044);--backgroundFocus:var(--t1044);--backgroundActive:var(--t1043);--borderColor:var(--t1045);--borderColorHover:var(--t1044);--borderColorFocus:var(--t1045);--borderColorPress:var(--t1046);--placeholderColor:var(--t596);--colorTransparent:var(--t1053);--color01:var(--t1058);--color0075:var(--t1059);--color005:var(--t1060);--color0025:var(--t1061);--color002:var(--t1062);--color001:var(--t1063);--background01:var(--t1064);--background0075:var(--t1065);--background005:var(--t1066);--background0025:var(--t1067);--background002:var(--t1068);--background001:var(--t1069);--outlineColor:var(--t1070);}
|
|
2048
2060
|
@media(prefers-color-scheme:light){
|
|
2049
|
-
.t_yellow {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--
|
|
2061
|
+
.t_yellow {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t1037);--background02:var(--t1038);--background04:var(--t1039);--background06:var(--t1040);--background08:var(--t1041);--color1:var(--t1042);--color2:var(--t1043);--color3:var(--t1044);--color4:var(--t1045);--color5:var(--t1046);--color6:var(--t1047);--color7:var(--t1048);--color8:var(--t1049);--color9:var(--t596);--color10:var(--t1050);--color11:var(--t1051);--color12:var(--t1052);--color0:var(--t1053);--color02:var(--t1054);--color04:var(--t1055);--color06:var(--t1056);--color08:var(--t1057);--color:var(--t1052);--colorHover:var(--t1052);--colorPress:var(--t1052);--colorFocus:var(--t1057);--background:var(--t1043);--backgroundHover:var(--t1042);--backgroundPress:var(--t1044);--backgroundFocus:var(--t1044);--backgroundActive:var(--t1043);--borderColor:var(--t1045);--borderColorHover:var(--t1044);--borderColorFocus:var(--t1045);--borderColorPress:var(--t1046);--placeholderColor:var(--t596);--colorTransparent:var(--t1053);--color01:var(--t1058);--color0075:var(--t1059);--color005:var(--t1060);--color0025:var(--t1061);--color002:var(--t1062);--color001:var(--t1063);--background01:var(--t1064);--background0075:var(--t1065);--background005:var(--t1066);--background0025:var(--t1067);--background002:var(--t1068);--background001:var(--t1069);--outlineColor:var(--t1070);}
|
|
2050
2062
|
}
|
|
2051
2063
|
.t_light_yellow ::selection{background:var(--color5);color:var(--color11)}
|
|
2052
|
-
:root.t_dark .t_light .t_yellow_Button, :root.t_dark .t_light .t_yellow_SliderThumb, :root.t_dark .t_light .t_yellow_Switch, :root.t_dark .t_light .t_yellow_surface2, :root.t_light .t_yellow_Button, :root.t_light .t_yellow_SliderThumb, :root.t_light .t_yellow_Switch, :root.t_light .t_yellow_surface2, .tm_xxt {--color:var(--
|
|
2064
|
+
:root.t_dark .t_light .t_yellow_Button, :root.t_dark .t_light .t_yellow_SliderThumb, :root.t_dark .t_light .t_yellow_Switch, :root.t_dark .t_light .t_yellow_surface2, :root.t_light .t_yellow_Button, :root.t_light .t_yellow_SliderThumb, :root.t_light .t_yellow_Switch, :root.t_light .t_yellow_surface2, .tm_xxt {--color:var(--t1051);--colorHover:var(--t1051);--colorPress:var(--t1051);--colorFocus:var(--t1052);--background:var(--t1045);--backgroundHover:var(--t1044);--backgroundPress:var(--t1046);--backgroundFocus:var(--t1048);--backgroundActive:var(--t1045);--borderColor:var(--t1047);--borderColorHover:var(--t1046);--borderColorFocus:var(--t1047);--borderColorPress:var(--t1048);--color01:var(--t1058);--color0075:var(--t1059);--color005:var(--t1060);--color0025:var(--t1061);--color002:var(--t1062);--color001:var(--t1063);--background01:var(--t1064);--background0075:var(--t1065);--background005:var(--t1066);--background0025:var(--t1067);--background002:var(--t1068);--background001:var(--t1069);--background02:var(--t1038);--background04:var(--t1039);--background06:var(--t1040);--background08:var(--t1041);--outlineColor:var(--t1070);}
|
|
2053
2065
|
@media(prefers-color-scheme:light){
|
|
2054
|
-
.t_yellow_Button, .t_yellow_SliderThumb, .t_yellow_Switch, .t_yellow_surface2 {--color:var(--
|
|
2066
|
+
.t_yellow_Button, .t_yellow_SliderThumb, .t_yellow_Switch, .t_yellow_surface2 {--color:var(--t1051);--colorHover:var(--t1051);--colorPress:var(--t1051);--colorFocus:var(--t1052);--background:var(--t1045);--backgroundHover:var(--t1044);--backgroundPress:var(--t1046);--backgroundFocus:var(--t1048);--backgroundActive:var(--t1045);--borderColor:var(--t1047);--borderColorHover:var(--t1046);--borderColorFocus:var(--t1047);--borderColorPress:var(--t1048);--color01:var(--t1058);--color0075:var(--t1059);--color005:var(--t1060);--color0025:var(--t1061);--color002:var(--t1062);--color001:var(--t1063);--background01:var(--t1064);--background0075:var(--t1065);--background005:var(--t1066);--background0025:var(--t1067);--background002:var(--t1068);--background001:var(--t1069);--background02:var(--t1038);--background04:var(--t1039);--background06:var(--t1040);--background08:var(--t1041);--outlineColor:var(--t1070);}
|
|
2055
2067
|
}
|
|
2056
|
-
:root.t_dark .t_light .t_yellow_Input, :root.t_dark .t_light .t_yellow_Progress, :root.t_dark .t_light .t_yellow_Slider, :root.t_dark .t_light .t_yellow_TextArea, :root.t_dark .t_light .t_yellow_surface1, :root.t_light .t_yellow_Input, :root.t_light .t_yellow_Progress, :root.t_light .t_yellow_Slider, :root.t_light .t_yellow_TextArea, :root.t_light .t_yellow_surface1, .tm_xxt {--color:var(--
|
|
2068
|
+
:root.t_dark .t_light .t_yellow_Input, :root.t_dark .t_light .t_yellow_Progress, :root.t_dark .t_light .t_yellow_Slider, :root.t_dark .t_light .t_yellow_TextArea, :root.t_dark .t_light .t_yellow_surface1, :root.t_light .t_yellow_Input, :root.t_light .t_yellow_Progress, :root.t_light .t_yellow_Slider, :root.t_light .t_yellow_TextArea, :root.t_light .t_yellow_surface1, .tm_xxt {--color:var(--t1051);--colorHover:var(--t1051);--colorPress:var(--t1051);--colorFocus:var(--t1052);--background:var(--t1044);--backgroundHover:var(--t1043);--backgroundPress:var(--t1045);--backgroundFocus:var(--t1046);--backgroundActive:var(--t1044);--borderColor:var(--t1046);--borderColorHover:var(--t1045);--borderColorFocus:var(--t1046);--borderColorPress:var(--t1047);--color01:var(--t1058);--color0075:var(--t1059);--color005:var(--t1060);--color0025:var(--t1061);--color002:var(--t1062);--color001:var(--t1063);--background01:var(--t1064);--background0075:var(--t1065);--background005:var(--t1066);--background0025:var(--t1067);--background002:var(--t1068);--background001:var(--t1069);--background02:var(--t1038);--background04:var(--t1039);--background06:var(--t1040);--background08:var(--t1041);--outlineColor:var(--t1070);}
|
|
2057
2069
|
@media(prefers-color-scheme:light){
|
|
2058
|
-
.t_yellow_Input, .t_yellow_Progress, .t_yellow_Slider, .t_yellow_TextArea, .t_yellow_surface1 {--color:var(--
|
|
2070
|
+
.t_yellow_Input, .t_yellow_Progress, .t_yellow_Slider, .t_yellow_TextArea, .t_yellow_surface1 {--color:var(--t1051);--colorHover:var(--t1051);--colorPress:var(--t1051);--colorFocus:var(--t1052);--background:var(--t1044);--backgroundHover:var(--t1043);--backgroundPress:var(--t1045);--backgroundFocus:var(--t1046);--backgroundActive:var(--t1044);--borderColor:var(--t1046);--borderColorHover:var(--t1045);--borderColorFocus:var(--t1046);--borderColorPress:var(--t1047);--color01:var(--t1058);--color0075:var(--t1059);--color005:var(--t1060);--color0025:var(--t1061);--color002:var(--t1062);--color001:var(--t1063);--background01:var(--t1064);--background0075:var(--t1065);--background005:var(--t1066);--background0025:var(--t1067);--background002:var(--t1068);--background001:var(--t1069);--background02:var(--t1038);--background04:var(--t1039);--background06:var(--t1040);--background08:var(--t1041);--outlineColor:var(--t1070);}
|
|
2059
2071
|
}
|
|
2060
|
-
:root.t_dark .t_light .t_yellow_ProgressIndicator, :root.t_dark .t_light .t_yellow_SliderActive, :root.t_light .t_yellow_ProgressIndicator, :root.t_light .t_yellow_SliderActive, .tm_xxt {--color:var(--
|
|
2072
|
+
:root.t_dark .t_light .t_yellow_ProgressIndicator, :root.t_dark .t_light .t_yellow_SliderActive, :root.t_light .t_yellow_ProgressIndicator, :root.t_light .t_yellow_SliderActive, .tm_xxt {--color:var(--t1051);--colorHover:var(--t1051);--colorPress:var(--t1051);--colorFocus:var(--t1052);--background:var(--t1047);--backgroundHover:var(--t1046);--backgroundPress:var(--t1048);--backgroundFocus:var(--t1051);--backgroundActive:var(--t1047);--borderColor:var(--t1049);--borderColorHover:var(--t1048);--borderColorFocus:var(--t1049);--borderColorPress:var(--t596);--color01:var(--t1058);--color0075:var(--t1059);--color005:var(--t1060);--color0025:var(--t1061);--color002:var(--t1062);--color001:var(--t1063);--background01:var(--t1064);--background0075:var(--t1065);--background005:var(--t1066);--background0025:var(--t1067);--background002:var(--t1068);--background001:var(--t1069);--background02:var(--t1038);--background04:var(--t1039);--background06:var(--t1040);--background08:var(--t1041);--outlineColor:var(--t1070);}
|
|
2061
2073
|
@media(prefers-color-scheme:light){
|
|
2062
|
-
.t_yellow_ProgressIndicator, .t_yellow_SliderActive {--color:var(--
|
|
2074
|
+
.t_yellow_ProgressIndicator, .t_yellow_SliderActive {--color:var(--t1051);--colorHover:var(--t1051);--colorPress:var(--t1051);--colorFocus:var(--t1052);--background:var(--t1047);--backgroundHover:var(--t1046);--backgroundPress:var(--t1048);--backgroundFocus:var(--t1051);--backgroundActive:var(--t1047);--borderColor:var(--t1049);--borderColorHover:var(--t1048);--borderColorFocus:var(--t1049);--borderColorPress:var(--t596);--color01:var(--t1058);--color0075:var(--t1059);--color005:var(--t1060);--color0025:var(--t1061);--color002:var(--t1062);--color001:var(--t1063);--background01:var(--t1064);--background0075:var(--t1065);--background005:var(--t1066);--background0025:var(--t1067);--background002:var(--t1068);--background001:var(--t1069);--background02:var(--t1038);--background04:var(--t1039);--background06:var(--t1040);--background08:var(--t1041);--outlineColor:var(--t1070);}
|
|
2063
2075
|
}
|
|
2064
|
-
:root.t_dark .t_light .t_yellow_SwitchThumb, :root.t_dark .t_light .t_yellow_Tooltip, :root.t_dark .t_light .t_yellow_accent, :root.t_light .t_yellow_SwitchThumb, :root.t_light .t_yellow_Tooltip, :root.t_light .t_yellow_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
2076
|
+
:root.t_dark .t_light .t_yellow_SwitchThumb, :root.t_dark .t_light .t_yellow_Tooltip, :root.t_dark .t_light .t_yellow_accent, :root.t_light .t_yellow_SwitchThumb, :root.t_light .t_yellow_Tooltip, :root.t_light .t_yellow_accent, .tm_xxt {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t1053);--background02:var(--t1038);--background04:var(--t1039);--background06:var(--t1040);--background08:var(--t1041);--color1:var(--t1052);--color2:var(--t1051);--color3:var(--t1050);--color4:var(--t596);--color5:var(--t1049);--color6:var(--t1048);--color7:var(--t1047);--color8:var(--t1046);--color9:var(--t1045);--color10:var(--t1044);--color11:var(--t1043);--color12:var(--t1042);--color0:var(--t1037);--color02:var(--t1071);--color04:var(--t1072);--color06:var(--t1073);--color08:var(--t1074);--color:var(--t1042);--colorHover:var(--t1042);--colorPress:var(--t1042);--colorFocus:var(--t1074);--background:var(--t1051);--backgroundHover:var(--t1052);--backgroundPress:var(--t1050);--backgroundFocus:var(--t1050);--backgroundActive:var(--t1051);--borderColor:var(--t596);--borderColorHover:var(--t1050);--borderColorFocus:var(--t596);--borderColorPress:var(--t1049);--placeholderColor:var(--t1045);--colorTransparent:var(--t1037);--color01:var(--t1058);--color0075:var(--t1059);--color005:var(--t1060);--color0025:var(--t1061);--color002:var(--t1062);--color001:var(--t1063);--background01:var(--t1064);--background0075:var(--t1065);--background005:var(--t1066);--background0025:var(--t1067);--background002:var(--t1068);--background001:var(--t1069);--outlineColor:var(--t1070);}
|
|
2065
2077
|
@media(prefers-color-scheme:light){
|
|
2066
|
-
.t_yellow_SwitchThumb, .t_yellow_Tooltip, .t_yellow_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--
|
|
2078
|
+
.t_yellow_SwitchThumb, .t_yellow_Tooltip, .t_yellow_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t1053);--background02:var(--t1038);--background04:var(--t1039);--background06:var(--t1040);--background08:var(--t1041);--color1:var(--t1052);--color2:var(--t1051);--color3:var(--t1050);--color4:var(--t596);--color5:var(--t1049);--color6:var(--t1048);--color7:var(--t1047);--color8:var(--t1046);--color9:var(--t1045);--color10:var(--t1044);--color11:var(--t1043);--color12:var(--t1042);--color0:var(--t1037);--color02:var(--t1071);--color04:var(--t1072);--color06:var(--t1073);--color08:var(--t1074);--color:var(--t1042);--colorHover:var(--t1042);--colorPress:var(--t1042);--colorFocus:var(--t1074);--background:var(--t1051);--backgroundHover:var(--t1052);--backgroundPress:var(--t1050);--backgroundFocus:var(--t1050);--backgroundActive:var(--t1051);--borderColor:var(--t596);--borderColorHover:var(--t1050);--borderColorFocus:var(--t596);--borderColorPress:var(--t1049);--placeholderColor:var(--t1045);--colorTransparent:var(--t1037);--color01:var(--t1058);--color0075:var(--t1059);--color005:var(--t1060);--color0025:var(--t1061);--color002:var(--t1062);--color001:var(--t1063);--background01:var(--t1064);--background0075:var(--t1065);--background005:var(--t1066);--background0025:var(--t1067);--background002:var(--t1068);--background001:var(--t1069);--outlineColor:var(--t1070);}
|
|
2067
2079
|
}
|
|
2068
2080
|
.t_light_yellow_SwitchThumb ::selection, .t_light_yellow_Tooltip ::selection, .t_light_yellow_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
2069
2081
|
:root ._aspectRatio-1--6{aspect-ratio:1.6;}
|