@hanzo/ui 8.0.40 → 8.0.41
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/backends/gui/card.cjs +3 -2
- package/dist/backends/gui/card.d.ts +2 -2
- package/dist/backends/gui/card.d.ts.map +1 -1
- package/dist/backends/gui/card.js +3 -2
- package/dist/backends/gui/card.js.map +1 -1
- package/dist/backends/gui/collapsible.cjs +6 -1
- package/dist/backends/gui/collapsible.d.ts +1 -1
- package/dist/backends/gui/collapsible.d.ts.map +1 -1
- package/dist/backends/gui/collapsible.js +6 -1
- package/dist/backends/gui/collapsible.js.map +1 -1
- package/dist/backends/gui/scroll-area.cjs +2 -1
- package/dist/backends/gui/scroll-area.d.ts.map +1 -1
- package/dist/backends/gui/scroll-area.js +2 -1
- package/dist/backends/gui/scroll-area.js.map +1 -1
- package/dist/backends/gui/slider.cjs +8 -1
- package/dist/backends/gui/slider.d.ts.map +1 -1
- package/dist/backends/gui/slider.js +8 -1
- package/dist/backends/gui/slider.js.map +1 -1
- package/dist/backends/gui/switch.cjs +3 -1
- package/dist/backends/gui/switch.d.ts.map +1 -1
- package/dist/backends/gui/switch.js +3 -1
- package/dist/backends/gui/switch.js.map +1 -1
- package/dist/backends/gui/tabs.cjs +1 -1
- package/dist/backends/gui/tabs.d.ts +1 -1
- package/dist/backends/gui/tabs.d.ts.map +1 -1
- package/dist/backends/gui/tabs.js +1 -1
- package/dist/backends/gui/tabs.js.map +1 -1
- package/dist/gallery.cjs +23 -0
- package/dist/gallery.d.ts +7 -0
- package/dist/gallery.d.ts.map +1 -0
- package/dist/gallery.js +20 -0
- package/dist/gallery.js.map +1 -0
- package/dist/index.cjs +6 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/root.cjs +67 -0
- package/dist/root.d.ts +10 -0
- package/dist/root.d.ts.map +1 -0
- package/dist/root.js +64 -0
- package/dist/root.js.map +1 -0
- package/dist/styles.css +1259 -0
- package/dist/theme.css +71 -40
- package/package.json +14 -4
package/dist/styles.css
ADDED
|
@@ -0,0 +1,1259 @@
|
|
|
1
|
+
/* @hanzo/ui — generated by scripts/gen-css.mjs. Do not edit. */
|
|
2
|
+
:root { --hanzo-ui-styles: 1; }
|
|
3
|
+
/**
|
|
4
|
+
* @hanzo/ui — the Hanzo visual identity, self-contained.
|
|
5
|
+
*
|
|
6
|
+
* import '@hanzo/ui/theme.css'
|
|
7
|
+
*
|
|
8
|
+
* Defines EVERY standard design token the components reference, so `@hanzo/ui`
|
|
9
|
+
* never depends on a consumer having pre-declared them (the bug this rework
|
|
10
|
+
* fixes: components that reached for tokens the host didn't define rendered
|
|
11
|
+
* transparent). Values originate in `@hanzo/tokens` (dark/light theme sets) —
|
|
12
|
+
* the same source `@hanzo/ui/tokens` exposes to code — so CSS and runtime agree.
|
|
13
|
+
*
|
|
14
|
+
* Dark-first Hanzo identity: neutral zinc-on-black, calm, high-contrast. `:root`
|
|
15
|
+
* IS the dark look — the file said "dark-first" while shipping light at `:root`,
|
|
16
|
+
* so an app that mounted <Hanzo> (dark by default) and read `--background` in its
|
|
17
|
+
* own CSS got white. `.light` retunes. Both themes also answer to gui's own
|
|
18
|
+
* `.t_light` / `.t_dark`, which <Hanzo> stamps on the body, so the CSS custom
|
|
19
|
+
* properties and the component tokens name one theme and never disagree.
|
|
20
|
+
* Typography is Geist Sans (UI/body) + Geist Mono (code) — bound
|
|
21
|
+
* through `--font-geist-sans` / `--font-geist-mono`; a host that loads Geist
|
|
22
|
+
* (next/font, @fontsource, CDN) binds those variables and everything inherits
|
|
23
|
+
* it. No Inter, no system-stack default anywhere.
|
|
24
|
+
*
|
|
25
|
+
* Plain CSS, nothing else: `:root` / `.light` custom properties plus the base font
|
|
26
|
+
* and the touch/elevation rules the components name. The Tailwind v4 `@theme
|
|
27
|
+
* inline` block that used to map these onto utilities is gone with Tailwind.
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
/* Geist family fallbacks — a host that binds --font-geist-sans/-mono (e.g. via
|
|
32
|
+
next/font) overrides these; otherwise the named Geist families are used if
|
|
33
|
+
installed, with a final generic fallback. Never Inter. */
|
|
34
|
+
:root {
|
|
35
|
+
--font-geist-sans: var(--font-geist-sans-provided, 'Geist');
|
|
36
|
+
--font-geist-mono: var(--font-geist-mono-provided, 'Geist Mono');
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/* Dark-first Hanzo identity — neutral zinc-on-black.
|
|
40
|
+
Borders are HAIRLINES: 10% white, never a solid chalk line on black. */
|
|
41
|
+
:root,
|
|
42
|
+
.dark,
|
|
43
|
+
.t_dark {
|
|
44
|
+
--radius: 0.5rem;
|
|
45
|
+
|
|
46
|
+
--background: oklch(0.145 0 0);
|
|
47
|
+
--foreground: oklch(0.985 0 0);
|
|
48
|
+
--card: oklch(0.205 0 0);
|
|
49
|
+
--card-foreground: oklch(0.985 0 0);
|
|
50
|
+
--popover: oklch(0.269 0 0);
|
|
51
|
+
--popover-foreground: oklch(0.985 0 0);
|
|
52
|
+
--primary: oklch(0.922 0 0);
|
|
53
|
+
--primary-foreground: oklch(0.205 0 0);
|
|
54
|
+
--secondary: oklch(0.269 0 0);
|
|
55
|
+
--secondary-foreground: oklch(0.985 0 0);
|
|
56
|
+
--muted: oklch(0.269 0 0);
|
|
57
|
+
--muted-foreground: oklch(0.708 0 0);
|
|
58
|
+
--accent: oklch(0.371 0 0);
|
|
59
|
+
--accent-foreground: oklch(0.985 0 0);
|
|
60
|
+
--destructive: oklch(0.704 0.191 22.216);
|
|
61
|
+
--border: oklch(1 0 0 / 10%);
|
|
62
|
+
--input: oklch(1 0 0 / 15%);
|
|
63
|
+
--ring: oklch(0.556 0 0);
|
|
64
|
+
|
|
65
|
+
--chart-1: oklch(0.488 0.243 264.376);
|
|
66
|
+
--chart-2: oklch(0.696 0.17 162.48);
|
|
67
|
+
--chart-3: oklch(0.769 0.188 70.08);
|
|
68
|
+
--chart-4: oklch(0.627 0.265 303.9);
|
|
69
|
+
--chart-5: oklch(0.645 0.246 16.439);
|
|
70
|
+
|
|
71
|
+
--sidebar: oklch(0.205 0 0);
|
|
72
|
+
--sidebar-foreground: oklch(0.985 0 0);
|
|
73
|
+
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
74
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
75
|
+
--sidebar-accent: oklch(0.269 0 0);
|
|
76
|
+
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
77
|
+
--sidebar-border: oklch(1 0 0 / 10%);
|
|
78
|
+
--sidebar-ring: oklch(0.439 0 0);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/* Light — the counterpart. Ordered before `.dark` so an explicit `.dark` inside
|
|
82
|
+
a light subtree still wins the specificity tie. */
|
|
83
|
+
.light,
|
|
84
|
+
.t_light {
|
|
85
|
+
--background: oklch(1 0 0);
|
|
86
|
+
--foreground: oklch(0.145 0 0);
|
|
87
|
+
--card: oklch(1 0 0);
|
|
88
|
+
--card-foreground: oklch(0.145 0 0);
|
|
89
|
+
--popover: oklch(1 0 0);
|
|
90
|
+
--popover-foreground: oklch(0.145 0 0);
|
|
91
|
+
--primary: oklch(0.205 0 0);
|
|
92
|
+
--primary-foreground: oklch(0.985 0 0);
|
|
93
|
+
--secondary: oklch(0.97 0 0);
|
|
94
|
+
--secondary-foreground: oklch(0.205 0 0);
|
|
95
|
+
--muted: oklch(0.97 0 0);
|
|
96
|
+
--muted-foreground: oklch(0.556 0 0);
|
|
97
|
+
--accent: oklch(0.97 0 0);
|
|
98
|
+
--accent-foreground: oklch(0.205 0 0);
|
|
99
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
100
|
+
--border: oklch(0.922 0 0);
|
|
101
|
+
--input: oklch(0.922 0 0);
|
|
102
|
+
--ring: oklch(0.708 0 0);
|
|
103
|
+
|
|
104
|
+
--chart-1: oklch(0.646 0.222 41.116);
|
|
105
|
+
--chart-2: oklch(0.6 0.118 184.704);
|
|
106
|
+
--chart-3: oklch(0.398 0.07 227.392);
|
|
107
|
+
--chart-4: oklch(0.828 0.189 84.429);
|
|
108
|
+
--chart-5: oklch(0.769 0.188 70.08);
|
|
109
|
+
|
|
110
|
+
--sidebar: oklch(0.985 0 0);
|
|
111
|
+
--sidebar-foreground: oklch(0.145 0 0);
|
|
112
|
+
--sidebar-primary: oklch(0.205 0 0);
|
|
113
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
114
|
+
--sidebar-accent: oklch(0.97 0 0);
|
|
115
|
+
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
116
|
+
--sidebar-border: oklch(0.922 0 0);
|
|
117
|
+
--sidebar-ring: oklch(0.708 0 0);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/* ── The UA reset ─────────────────────────────────────────────────────────────
|
|
121
|
+
gui renders REAL <button>, <input> and <textarea> elements, and the browser
|
|
122
|
+
has opinions about those: a button is #efefef with a 2px OUTSET border. gui
|
|
123
|
+
compiles style props to border-WIDTH and border-COLOR and never emits
|
|
124
|
+
border-STYLE, so the UA's `outset` survived every one of them — which is why
|
|
125
|
+
a Collapsible trigger rendered as a white bar across a dark page and a Switch
|
|
126
|
+
wore a 2px black ring. A <div> was never affected (its border-style starts at
|
|
127
|
+
`none`), so this only ever showed on the components that are really buttons.
|
|
128
|
+
|
|
129
|
+
`:where()` carries ZERO specificity, so every gui atomic class still wins;
|
|
130
|
+
`border: 0 solid transparent` leaves the STYLE resolved so that a component
|
|
131
|
+
setting only a width and a colour actually draws its line. */
|
|
132
|
+
:where(button, input, textarea) {
|
|
133
|
+
appearance: none;
|
|
134
|
+
background-color: transparent;
|
|
135
|
+
border: 0 solid transparent;
|
|
136
|
+
color: inherit;
|
|
137
|
+
font: inherit;
|
|
138
|
+
margin: 0;
|
|
139
|
+
padding: 0;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/* Geist by default — UI/body inherits Geist Sans; code/mono surfaces get Geist
|
|
143
|
+
Mono. Components never hard-code a family; they inherit this or bind
|
|
144
|
+
`font-sans`/`font-mono` (which resolve to Geist above). */
|
|
145
|
+
:where(html, body) {
|
|
146
|
+
font-family: var(--font-geist-sans), sans-serif;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
:where(code, kbd, samp, pre) {
|
|
150
|
+
font-family: var(--font-geist-mono), monospace;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/* ── Touch targets ────────────────────────────────────────────────────────────
|
|
154
|
+
The 44px floor on web/Tauri. gui drops `hitSlop` on web (it is a native-only
|
|
155
|
+
prop), so `touch()` in the gui backend emits data-touch-x / data-touch-y and
|
|
156
|
+
these rules expand the hit box with a transparent ::after overlay — no layout
|
|
157
|
+
shift, no padding hack. Native takes hitSlop instead and ignores all of this. */
|
|
158
|
+
[data-touch-x]::after,
|
|
159
|
+
[data-touch-y]::after {
|
|
160
|
+
content: "";
|
|
161
|
+
position: absolute;
|
|
162
|
+
inset: 0;
|
|
163
|
+
pointer-events: auto;
|
|
164
|
+
}
|
|
165
|
+
[data-touch-x="1"]::after { left: -1px; right: -1px; }
|
|
166
|
+
[data-touch-x="2"]::after { left: -2px; right: -2px; }
|
|
167
|
+
[data-touch-x="3"]::after { left: -3px; right: -3px; }
|
|
168
|
+
[data-touch-x="4"]::after { left: -4px; right: -4px; }
|
|
169
|
+
[data-touch-x="5"]::after { left: -5px; right: -5px; }
|
|
170
|
+
[data-touch-x="6"]::after { left: -6px; right: -6px; }
|
|
171
|
+
[data-touch-x="7"]::after { left: -7px; right: -7px; }
|
|
172
|
+
[data-touch-x="8"]::after { left: -8px; right: -8px; }
|
|
173
|
+
[data-touch-x="9"]::after { left: -9px; right: -9px; }
|
|
174
|
+
[data-touch-x="10"]::after { left: -10px; right: -10px; }
|
|
175
|
+
[data-touch-x="11"]::after { left: -11px; right: -11px; }
|
|
176
|
+
[data-touch-x="12"]::after { left: -12px; right: -12px; }
|
|
177
|
+
[data-touch-x="13"]::after { left: -13px; right: -13px; }
|
|
178
|
+
[data-touch-x="14"]::after { left: -14px; right: -14px; }
|
|
179
|
+
[data-touch-x="15"]::after { left: -15px; right: -15px; }
|
|
180
|
+
[data-touch-x="16"]::after { left: -16px; right: -16px; }
|
|
181
|
+
[data-touch-x="17"]::after { left: -17px; right: -17px; }
|
|
182
|
+
[data-touch-x="18"]::after { left: -18px; right: -18px; }
|
|
183
|
+
[data-touch-x="19"]::after { left: -19px; right: -19px; }
|
|
184
|
+
[data-touch-x="20"]::after { left: -20px; right: -20px; }
|
|
185
|
+
[data-touch-x="21"]::after { left: -21px; right: -21px; }
|
|
186
|
+
[data-touch-x="22"]::after { left: -22px; right: -22px; }
|
|
187
|
+
[data-touch-x="23"]::after { left: -23px; right: -23px; }
|
|
188
|
+
[data-touch-x="24"]::after { left: -24px; right: -24px; }
|
|
189
|
+
[data-touch-y="1"]::after { top: -1px; bottom: -1px; }
|
|
190
|
+
[data-touch-y="2"]::after { top: -2px; bottom: -2px; }
|
|
191
|
+
[data-touch-y="3"]::after { top: -3px; bottom: -3px; }
|
|
192
|
+
[data-touch-y="4"]::after { top: -4px; bottom: -4px; }
|
|
193
|
+
[data-touch-y="5"]::after { top: -5px; bottom: -5px; }
|
|
194
|
+
[data-touch-y="6"]::after { top: -6px; bottom: -6px; }
|
|
195
|
+
[data-touch-y="7"]::after { top: -7px; bottom: -7px; }
|
|
196
|
+
[data-touch-y="8"]::after { top: -8px; bottom: -8px; }
|
|
197
|
+
[data-touch-y="9"]::after { top: -9px; bottom: -9px; }
|
|
198
|
+
[data-touch-y="10"]::after { top: -10px; bottom: -10px; }
|
|
199
|
+
[data-touch-y="11"]::after { top: -11px; bottom: -11px; }
|
|
200
|
+
[data-touch-y="12"]::after { top: -12px; bottom: -12px; }
|
|
201
|
+
[data-touch-y="13"]::after { top: -13px; bottom: -13px; }
|
|
202
|
+
[data-touch-y="14"]::after { top: -14px; bottom: -14px; }
|
|
203
|
+
[data-touch-y="15"]::after { top: -15px; bottom: -15px; }
|
|
204
|
+
[data-touch-y="16"]::after { top: -16px; bottom: -16px; }
|
|
205
|
+
[data-touch-y="17"]::after { top: -17px; bottom: -17px; }
|
|
206
|
+
[data-touch-y="18"]::after { top: -18px; bottom: -18px; }
|
|
207
|
+
[data-touch-y="19"]::after { top: -19px; bottom: -19px; }
|
|
208
|
+
[data-touch-y="20"]::after { top: -20px; bottom: -20px; }
|
|
209
|
+
[data-touch-y="21"]::after { top: -21px; bottom: -21px; }
|
|
210
|
+
[data-touch-y="22"]::after { top: -22px; bottom: -22px; }
|
|
211
|
+
[data-touch-y="23"]::after { top: -23px; bottom: -23px; }
|
|
212
|
+
[data-touch-y="24"]::after { top: -24px; bottom: -24px; }
|
|
213
|
+
|
|
214
|
+
/* Elevation ladder — the shadow steps components name by class. */
|
|
215
|
+
.hz-elevation-1 { box-shadow: var(--hz-elevation-1, 0 1px 2px rgba(0, 0, 0, 0.16)); }
|
|
216
|
+
.hz-elevation-2 { box-shadow: var(--hz-elevation-2, 0 4px 12px rgba(0, 0, 0, 0.24)); }
|
|
217
|
+
.hz-elevation-3 { box-shadow: var(--hz-elevation-3, 0 8px 24px rgba(0, 0, 0, 0.36)); }
|
|
218
|
+
.hz-elevation-4 { box-shadow: var(--hz-elevation-4, 0 16px 48px rgba(0, 0, 0, 0.44)); }
|
|
219
|
+
|
|
220
|
+
/* @hanzo/ui motion primitives — the calm, restrained animation vocabulary the
|
|
221
|
+
Hanzo surfaces share. One place defines the easing; components apply the class.
|
|
222
|
+
`className` forwards to the underlying DOM node on web, so the browser
|
|
223
|
+
transitions the Gui-driven inline width/transform/opacity. Every animation is
|
|
224
|
+
guarded by `prefers-reduced-motion: reduce`.
|
|
225
|
+
|
|
226
|
+
Import once at the app root: import '@hanzo/ui/styles/motion.css' */
|
|
227
|
+
|
|
228
|
+
/* Fade-up entrance — <FadeIn> applies the class + a per-item stagger delay.
|
|
229
|
+
~0.4s ease-out, small upward travel (matches the hanzo.ai marketing feel). */
|
|
230
|
+
@keyframes hz-fade-up {
|
|
231
|
+
from {
|
|
232
|
+
opacity: 0;
|
|
233
|
+
transform: translateY(10px);
|
|
234
|
+
}
|
|
235
|
+
to {
|
|
236
|
+
opacity: 1;
|
|
237
|
+
transform: translateY(0);
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.hz-fade-up {
|
|
242
|
+
animation: hz-fade-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
|
|
243
|
+
will-change: transform, opacity;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
@media (prefers-reduced-motion: reduce) {
|
|
247
|
+
.hz-fade-up {
|
|
248
|
+
animation: none;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/* Shell chrome motion — sidebar collapse (width) and the Linear-style two-level
|
|
253
|
+
nav slide (transform); backdrop cross-fade behind a SlideOver / dialog. */
|
|
254
|
+
.hz-collapse {
|
|
255
|
+
transition: width 220ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
256
|
+
will-change: width;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.hz-slide {
|
|
260
|
+
transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
261
|
+
will-change: transform;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.hz-fade {
|
|
265
|
+
transition: opacity 240ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
266
|
+
will-change: opacity;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
/* Drag-to-reorder — a pinned row while it is being dragged (pointer DnD). The
|
|
270
|
+
lifted row gets a subtle lift; siblings ease into place via `.hz-slide`. */
|
|
271
|
+
.hz-drag-item {
|
|
272
|
+
touch-action: none;
|
|
273
|
+
transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
274
|
+
}
|
|
275
|
+
.hz-drag-item[data-dragging='true'] {
|
|
276
|
+
transition: none;
|
|
277
|
+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
|
|
278
|
+
opacity: 0.96;
|
|
279
|
+
cursor: grabbing;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
@media (prefers-reduced-motion: reduce) {
|
|
283
|
+
.hz-collapse,
|
|
284
|
+
.hz-slide,
|
|
285
|
+
.hz-fade,
|
|
286
|
+
.hz-drag-item {
|
|
287
|
+
transition: none;
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
/* Living-overview motion — the "videogame-like" living dashboard. The count-up +
|
|
292
|
+
live sparkline are driven in JS (rAF, gated by prefers-reduced-motion in the
|
|
293
|
+
hooks); these are the pure-CSS bits: a loading shimmer, a live-feed pulse, and
|
|
294
|
+
a brief highlight when a freshly-arrived row lands. */
|
|
295
|
+
|
|
296
|
+
/* Skeleton shimmer — an honest "loading", never fabricated content. */
|
|
297
|
+
@keyframes hz-shimmer {
|
|
298
|
+
0% {
|
|
299
|
+
background-position: -160px 0;
|
|
300
|
+
}
|
|
301
|
+
100% {
|
|
302
|
+
background-position: 160px 0;
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.hz-skeleton {
|
|
307
|
+
background-color: var(--color3, rgba(148, 163, 184, 0.14));
|
|
308
|
+
background-image: linear-gradient(
|
|
309
|
+
90deg,
|
|
310
|
+
transparent 0%,
|
|
311
|
+
var(--color4, rgba(148, 163, 184, 0.22)) 50%,
|
|
312
|
+
transparent 100%
|
|
313
|
+
);
|
|
314
|
+
background-size: 160px 100%;
|
|
315
|
+
background-repeat: no-repeat;
|
|
316
|
+
animation: hz-shimmer 1.2s ease-in-out infinite;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
/* Live-feed pulse — the "Live" dot on a streaming panel. */
|
|
320
|
+
@keyframes hz-pulse {
|
|
321
|
+
0%,
|
|
322
|
+
100% {
|
|
323
|
+
opacity: 1;
|
|
324
|
+
transform: scale(1);
|
|
325
|
+
}
|
|
326
|
+
50% {
|
|
327
|
+
opacity: 0.45;
|
|
328
|
+
transform: scale(0.82);
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
/* Entrance for a freshly-arrived activity row (staggerless — one row at a time). */
|
|
333
|
+
@keyframes hz-row-in {
|
|
334
|
+
from {
|
|
335
|
+
opacity: 0;
|
|
336
|
+
transform: translateY(-6px);
|
|
337
|
+
}
|
|
338
|
+
to {
|
|
339
|
+
opacity: 1;
|
|
340
|
+
transform: translateY(0);
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.hz-row-in {
|
|
345
|
+
animation: hz-row-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
@media (prefers-reduced-motion: reduce) {
|
|
349
|
+
.hz-skeleton {
|
|
350
|
+
animation: none;
|
|
351
|
+
}
|
|
352
|
+
.hz-row-in {
|
|
353
|
+
animation: none;
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
/* ── Typography + surface classes the product layer's components reference ──────
|
|
358
|
+
DataTable/Metric typeset numeric cells with `hz-mono`/`hz-tnum`; ComboBox and
|
|
359
|
+
SelectMenu paint their popovers with `hz-paper hz-menu-in`; DataTable rows use
|
|
360
|
+
`hz-row`. They travel WITH the components (this is the package's one stylesheet)
|
|
361
|
+
so any host that imports `@hanzo/ui/styles/motion.css` renders them correctly.
|
|
362
|
+
The elevation/ring variables fall back to sane values, so a host that defines its
|
|
363
|
+
own `--hz-*` theme tokens (the console does) still wins. */
|
|
364
|
+
|
|
365
|
+
.hz-tnum {
|
|
366
|
+
font-variant-numeric: tabular-nums;
|
|
367
|
+
font-feature-settings: 'tnum' 1;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
/* Data/numeric face — Geist Mono + tabular figures for metric values, prices, IDs
|
|
371
|
+
and counts, so numbers read as precise, column-aligned data. */
|
|
372
|
+
.hz-mono {
|
|
373
|
+
font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
|
374
|
+
font-variant-numeric: tabular-nums;
|
|
375
|
+
font-feature-settings: 'tnum' 1;
|
|
376
|
+
letter-spacing: -0.01em;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.hz-paper {
|
|
380
|
+
box-shadow: var(--hz-ring, inset 0 0 0 1px rgba(255, 255, 255, 0.08)),
|
|
381
|
+
var(--hz-paper-highlight, inset 0 1px 0 0 rgba(255, 255, 255, 0.05)),
|
|
382
|
+
var(--hz-elevation-3, 0 8px 24px rgba(0, 0, 0, 0.36));
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
@keyframes hz-menu-in {
|
|
386
|
+
from {
|
|
387
|
+
opacity: 0;
|
|
388
|
+
}
|
|
389
|
+
to {
|
|
390
|
+
opacity: 1;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.hz-menu-in {
|
|
395
|
+
animation: hz-menu-in 140ms ease-out both;
|
|
396
|
+
will-change: opacity;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.hz-row {
|
|
400
|
+
transition: background-color 140ms ease-out;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
@media (prefers-reduced-motion: reduce) {
|
|
404
|
+
.hz-menu-in {
|
|
405
|
+
animation: none;
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
._ovs-contain {overscroll-behavior:contain;}
|
|
410
|
+
.t_unmounted .is_View, .t_unmounted .is_Text { transition: none !important; }
|
|
411
|
+
.is_View { display: flex; align-items: stretch; flex-direction: column; flex-basis: auto; box-sizing: border-box; min-height: 0; min-width: 0; flex-shrink: 0; }
|
|
412
|
+
.is_Text { display: inline; box-sizing: border-box; word-wrap: break-word; white-space: pre-wrap; margin: 0; }
|
|
413
|
+
@scope (.is_Text) to (.is_View) { .is_Text { white-space: inherit; word-wrap: inherit; } }
|
|
414
|
+
._dsp_contents {display:contents;}
|
|
415
|
+
._no_backdrop::backdrop {display: none;}
|
|
416
|
+
.is_Input::selection, .is_TextArea::selection {background-color: var(--t_selectionColor);}
|
|
417
|
+
.is_Input::placeholder, .is_TextArea::placeholder {color: var(--t_placeholderColor);}
|
|
418
|
+
:root ._pe-boxonly>* {pointer-events:none;}
|
|
419
|
+
:root ._pe-boxnone>* {pointer-events:auto;}
|
|
420
|
+
._hsb-x::-webkit-scrollbar:horizontal { display: none !important; }
|
|
421
|
+
._hsb-y::-webkit-scrollbar:vertical { display: none !important; }
|
|
422
|
+
._hsb-x { scrollbar-width: none !important; }
|
|
423
|
+
._hsb-y { scrollbar-width: none !important; }
|
|
424
|
+
: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)}
|
|
425
|
+
: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
|
|
426
|
+
}
|
|
427
|
+
: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
|
|
428
|
+
}
|
|
429
|
+
:root .font_heading, :root .t_lang-heading-default .font_heading { --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-0:600; --f-weight-1:600; --f-weight-2:600; --f-weight-3:600; --f-weight-4:600; --f-weight-5:600; --f-weight-6:700; --f-weight-7:700; --f-weight-8:700; --f-weight-9:800; --f-weight-10:800; --f-weight-11:800; --f-weight-12:800; --f-weight-13:800; --f-weight-14:800; --f-weight-15:800; --f-weight-16:800; --f-weight-true:800; --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
|
|
430
|
+
}
|
|
431
|
+
.font_body, .font_heading, .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)}
|
|
432
|
+
: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(--t17);--colorHover:var(--t22);--colorPress:var(--t17);--colorFocus:var(--t16);--background:var(--t8);--backgroundHover:var(--t9);--backgroundPress:var(--t7);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t10);--borderColorHover:var(--t0);--borderColorFocus:var(--t10);--borderColorPress:var(--t9);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--black1:var(--t23);--black2:var(--t24);--black3:var(--t25);--black4:var(--t26);--black5:var(--t27);--black6:var(--t28);--black7:var(--t29);--black8:var(--t30);--black9:var(--t31);--black10:var(--t32);--black11:var(--t33);--black12:var(--t34);--white1:var(--t35);--white2:var(--t36);--white3:var(--t37);--white4:var(--t38);--white5:var(--t39);--white6:var(--t40);--white7:var(--t41);--white8:var(--t42);--white9:var(--t43);--white10:var(--t44);--white11:var(--t45);--white12:var(--t46);--white:var(--t47);--white0:var(--t48);--white02:var(--t49);--white04:var(--t50);--white06:var(--t51);--white08:var(--t52);--black:var(--t53);--black0:var(--t54);--black02:var(--t55);--black04:var(--t56);--black06:var(--t57);--black08:var(--t58);--shadow1:var(--t59);--shadow2:var(--t60);--shadow3:var(--t61);--shadow4:var(--t62);--shadow5:var(--t63);--shadow6:var(--t58);--shadow7:var(--t64);--shadow8:var(--t53);--highlight1:var(--t65);--highlight2:var(--t49);--highlight3:var(--t66);--highlight4:var(--t67);--highlight5:var(--t68);--highlight6:var(--t69);--highlight7:var(--t70);--highlight8:var(--t47);--shadowColor:var(--t61);--gray1:var(--t71);--gray2:var(--t25);--gray3:var(--t72);--gray4:var(--t73);--gray5:var(--t74);--gray6:var(--t75);--gray7:var(--t76);--gray8:var(--t77);--gray9:var(--t78);--gray10:var(--t79);--gray11:var(--t80);--gray12:var(--t81);--blue1:var(--t82);--blue2:var(--t83);--blue3:var(--t84);--blue4:var(--t85);--blue5:var(--t86);--blue6:var(--t87);--blue7:var(--t88);--blue8:var(--t89);--blue9:var(--t90);--blue10:var(--t91);--blue11:var(--t92);--blue12:var(--t93);--red1:var(--t94);--red2:var(--t95);--red3:var(--t96);--red4:var(--t97);--red5:var(--t98);--red6:var(--t99);--red7:var(--t100);--red8:var(--t101);--red9:var(--t102);--red10:var(--t103);--red11:var(--t104);--red12:var(--t105);--yellow1:var(--t106);--yellow2:var(--t107);--yellow3:var(--t108);--yellow4:var(--t109);--yellow5:var(--t110);--yellow6:var(--t111);--yellow7:var(--t112);--yellow8:var(--t113);--yellow9:var(--t114);--yellow10:var(--t115);--yellow11:var(--t116);--yellow12:var(--t117);--green1:var(--t118);--green2:var(--t119);--green3:var(--t120);--green4:var(--t121);--green5:var(--t122);--green6:var(--t123);--green7:var(--t124);--green8:var(--t125);--green9:var(--t126);--green10:var(--t127);--green11:var(--t128);--green12:var(--t129);--orange1:var(--t130);--orange2:var(--t131);--orange3:var(--t132);--orange4:var(--t133);--orange5:var(--t134);--orange6:var(--t135);--orange7:var(--t136);--orange8:var(--t137);--orange9:var(--t138);--orange10:var(--t139);--orange11:var(--t140);--orange12:var(--t141);--pink1:var(--t142);--pink2:var(--t143);--pink3:var(--t144);--pink4:var(--t145);--pink5:var(--t146);--pink6:var(--t147);--pink7:var(--t148);--pink8:var(--t149);--pink9:var(--t150);--pink10:var(--t151);--pink11:var(--t152);--pink12:var(--t153);--purple1:var(--t154);--purple2:var(--t155);--purple3:var(--t156);--purple4:var(--t157);--purple5:var(--t158);--purple6:var(--t159);--purple7:var(--t160);--purple8:var(--t161);--purple9:var(--t162);--purple10:var(--t163);--purple11:var(--t164);--purple12:var(--t165);--teal1:var(--t166);--teal2:var(--t167);--teal3:var(--t168);--teal4:var(--t169);--teal5:var(--t170);--teal6:var(--t171);--teal7:var(--t172);--teal8:var(--t173);--teal9:var(--t174);--teal10:var(--t175);--teal11:var(--t176);--teal12:var(--t177);--neutral1:var(--t178);--neutral2:var(--t179);--neutral3:var(--t180);--neutral4:var(--t41);--neutral5:var(--t181);--neutral6:var(--t182);--neutral7:var(--t183);--neutral8:var(--t184);--neutral9:var(--t185);--neutral10:var(--t186);--neutral11:var(--t187);--neutral12:var(--t188);--accent1:var(--t17);--accent2:var(--t189);--accent3:var(--t1);--accent4:var(--t190);--accent5:var(--t16);--accent6:var(--t191);--accent7:var(--t192);--accent8:var(--t193);--accent9:var(--t194);--accent10:var(--t0);--accent11:var(--t10);--accent12:var(--t195);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--outlineColor:var(--t208);}
|
|
433
|
+
@media(prefers-color-scheme:dark){
|
|
434
|
+
body{background:var(--background);color:var(--color)}
|
|
435
|
+
: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(--t17);--colorHover:var(--t22);--colorPress:var(--t17);--colorFocus:var(--t16);--background:var(--t8);--backgroundHover:var(--t9);--backgroundPress:var(--t7);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t10);--borderColorHover:var(--t0);--borderColorFocus:var(--t10);--borderColorPress:var(--t9);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--black1:var(--t23);--black2:var(--t24);--black3:var(--t25);--black4:var(--t26);--black5:var(--t27);--black6:var(--t28);--black7:var(--t29);--black8:var(--t30);--black9:var(--t31);--black10:var(--t32);--black11:var(--t33);--black12:var(--t34);--white1:var(--t35);--white2:var(--t36);--white3:var(--t37);--white4:var(--t38);--white5:var(--t39);--white6:var(--t40);--white7:var(--t41);--white8:var(--t42);--white9:var(--t43);--white10:var(--t44);--white11:var(--t45);--white12:var(--t46);--white:var(--t47);--white0:var(--t48);--white02:var(--t49);--white04:var(--t50);--white06:var(--t51);--white08:var(--t52);--black:var(--t53);--black0:var(--t54);--black02:var(--t55);--black04:var(--t56);--black06:var(--t57);--black08:var(--t58);--shadow1:var(--t59);--shadow2:var(--t60);--shadow3:var(--t61);--shadow4:var(--t62);--shadow5:var(--t63);--shadow6:var(--t58);--shadow7:var(--t64);--shadow8:var(--t53);--highlight1:var(--t65);--highlight2:var(--t49);--highlight3:var(--t66);--highlight4:var(--t67);--highlight5:var(--t68);--highlight6:var(--t69);--highlight7:var(--t70);--highlight8:var(--t47);--shadowColor:var(--t61);--gray1:var(--t71);--gray2:var(--t25);--gray3:var(--t72);--gray4:var(--t73);--gray5:var(--t74);--gray6:var(--t75);--gray7:var(--t76);--gray8:var(--t77);--gray9:var(--t78);--gray10:var(--t79);--gray11:var(--t80);--gray12:var(--t81);--blue1:var(--t82);--blue2:var(--t83);--blue3:var(--t84);--blue4:var(--t85);--blue5:var(--t86);--blue6:var(--t87);--blue7:var(--t88);--blue8:var(--t89);--blue9:var(--t90);--blue10:var(--t91);--blue11:var(--t92);--blue12:var(--t93);--red1:var(--t94);--red2:var(--t95);--red3:var(--t96);--red4:var(--t97);--red5:var(--t98);--red6:var(--t99);--red7:var(--t100);--red8:var(--t101);--red9:var(--t102);--red10:var(--t103);--red11:var(--t104);--red12:var(--t105);--yellow1:var(--t106);--yellow2:var(--t107);--yellow3:var(--t108);--yellow4:var(--t109);--yellow5:var(--t110);--yellow6:var(--t111);--yellow7:var(--t112);--yellow8:var(--t113);--yellow9:var(--t114);--yellow10:var(--t115);--yellow11:var(--t116);--yellow12:var(--t117);--green1:var(--t118);--green2:var(--t119);--green3:var(--t120);--green4:var(--t121);--green5:var(--t122);--green6:var(--t123);--green7:var(--t124);--green8:var(--t125);--green9:var(--t126);--green10:var(--t127);--green11:var(--t128);--green12:var(--t129);--orange1:var(--t130);--orange2:var(--t131);--orange3:var(--t132);--orange4:var(--t133);--orange5:var(--t134);--orange6:var(--t135);--orange7:var(--t136);--orange8:var(--t137);--orange9:var(--t138);--orange10:var(--t139);--orange11:var(--t140);--orange12:var(--t141);--pink1:var(--t142);--pink2:var(--t143);--pink3:var(--t144);--pink4:var(--t145);--pink5:var(--t146);--pink6:var(--t147);--pink7:var(--t148);--pink8:var(--t149);--pink9:var(--t150);--pink10:var(--t151);--pink11:var(--t152);--pink12:var(--t153);--purple1:var(--t154);--purple2:var(--t155);--purple3:var(--t156);--purple4:var(--t157);--purple5:var(--t158);--purple6:var(--t159);--purple7:var(--t160);--purple8:var(--t161);--purple9:var(--t162);--purple10:var(--t163);--purple11:var(--t164);--purple12:var(--t165);--teal1:var(--t166);--teal2:var(--t167);--teal3:var(--t168);--teal4:var(--t169);--teal5:var(--t170);--teal6:var(--t171);--teal7:var(--t172);--teal8:var(--t173);--teal9:var(--t174);--teal10:var(--t175);--teal11:var(--t176);--teal12:var(--t177);--neutral1:var(--t178);--neutral2:var(--t179);--neutral3:var(--t180);--neutral4:var(--t41);--neutral5:var(--t181);--neutral6:var(--t182);--neutral7:var(--t183);--neutral8:var(--t184);--neutral9:var(--t185);--neutral10:var(--t186);--neutral11:var(--t187);--neutral12:var(--t188);--accent1:var(--t17);--accent2:var(--t189);--accent3:var(--t1);--accent4:var(--t190);--accent5:var(--t16);--accent6:var(--t191);--accent7:var(--t192);--accent8:var(--t193);--accent9:var(--t194);--accent10:var(--t0);--accent11:var(--t10);--accent12:var(--t195);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--outlineColor:var(--t208);}
|
|
436
|
+
}
|
|
437
|
+
.t_dark ::selection{background:var(--color5);color:var(--color11)}
|
|
438
|
+
: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(--t17);--colorPress:var(--t16);--colorFocus:var(--t15);--background:var(--t10);--backgroundHover:var(--t0);--backgroundPress:var(--t9);--backgroundFocus:var(--t12);--backgroundActive:var(--t10);--borderColor:var(--t11);--borderColorHover:var(--t12);--borderColorFocus:var(--t11);--borderColorPress:var(--t0);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t208);}
|
|
439
|
+
@media(prefers-color-scheme:dark){
|
|
440
|
+
.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(--t17);--colorPress:var(--t16);--colorFocus:var(--t15);--background:var(--t10);--backgroundHover:var(--t0);--backgroundPress:var(--t9);--backgroundFocus:var(--t12);--backgroundActive:var(--t10);--borderColor:var(--t11);--borderColorHover:var(--t12);--borderColorFocus:var(--t11);--borderColorPress:var(--t0);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t208);}
|
|
441
|
+
}
|
|
442
|
+
: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(--t17);--colorPress:var(--t16);--colorFocus:var(--t15);--background:var(--t9);--backgroundHover:var(--t10);--backgroundPress:var(--t8);--backgroundFocus:var(--t0);--backgroundActive:var(--t9);--borderColor:var(--t0);--borderColorHover:var(--t11);--borderColorFocus:var(--t0);--borderColorPress:var(--t10);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t208);}
|
|
443
|
+
@media(prefers-color-scheme:dark){
|
|
444
|
+
.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(--t17);--colorPress:var(--t16);--colorFocus:var(--t15);--background:var(--t9);--backgroundHover:var(--t10);--backgroundPress:var(--t8);--backgroundFocus:var(--t0);--backgroundActive:var(--t9);--borderColor:var(--t0);--borderColorHover:var(--t11);--borderColorFocus:var(--t0);--borderColorPress:var(--t10);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t208);}
|
|
445
|
+
}
|
|
446
|
+
: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(--t17);--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(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t208);}
|
|
447
|
+
@media(prefers-color-scheme:dark){
|
|
448
|
+
.t_ProgressIndicator, .t_SliderActive, .t_black_ProgressIndicator, .t_black_SliderActive {--color:var(--t16);--colorHover:var(--t17);--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(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t208);}
|
|
449
|
+
}
|
|
450
|
+
: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(--t17);--color2:var(--t16);--color3:var(--t15);--color4:var(--t14);--color5:var(--t13);--color6:var(--t12);--color7:var(--t11);--color8:var(--t0);--color9:var(--t10);--color10:var(--t9);--color11:var(--t8);--color12:var(--t7);--color0:var(--t2);--color02:var(--t209);--color04:var(--t210);--color06:var(--t211);--color08:var(--t212);--color:var(--t7);--colorHover:var(--t212);--colorPress:var(--t7);--colorFocus:var(--t8);--background:var(--t16);--backgroundHover:var(--t15);--backgroundPress:var(--t17);--backgroundFocus:var(--t15);--backgroundActive:var(--t16);--borderColor:var(--t14);--borderColorHover:var(--t13);--borderColorFocus:var(--t14);--borderColorPress:var(--t15);--placeholderColor:var(--t10);--colorTransparent:var(--t2);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--outlineColor:var(--t208);}
|
|
451
|
+
@media(prefers-color-scheme:dark){
|
|
452
|
+
.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(--t17);--color2:var(--t16);--color3:var(--t15);--color4:var(--t14);--color5:var(--t13);--color6:var(--t12);--color7:var(--t11);--color8:var(--t0);--color9:var(--t10);--color10:var(--t9);--color11:var(--t8);--color12:var(--t7);--color0:var(--t2);--color02:var(--t209);--color04:var(--t210);--color06:var(--t211);--color08:var(--t212);--color:var(--t7);--colorHover:var(--t212);--colorPress:var(--t7);--colorFocus:var(--t8);--background:var(--t16);--backgroundHover:var(--t15);--backgroundPress:var(--t17);--backgroundFocus:var(--t15);--backgroundActive:var(--t16);--borderColor:var(--t14);--borderColorHover:var(--t13);--borderColorFocus:var(--t14);--borderColorPress:var(--t15);--placeholderColor:var(--t10);--colorTransparent:var(--t2);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--outlineColor:var(--t208);}
|
|
453
|
+
}
|
|
454
|
+
.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)}
|
|
455
|
+
: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(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--color1:var(--t17);--color2:var(--t189);--color3:var(--t1);--color4:var(--t190);--color5:var(--t16);--color6:var(--t191);--color7:var(--t192);--color8:var(--t193);--color9:var(--t194);--color10:var(--t0);--color11:var(--t10);--color12:var(--t195);--color0:var(--t217);--color02:var(--t218);--color04:var(--t219);--color06:var(--t220);--color08:var(--t221);--color:var(--t195);--colorHover:var(--t221);--colorPress:var(--t195);--colorFocus:var(--t10);--background:var(--t189);--backgroundHover:var(--t1);--backgroundPress:var(--t17);--backgroundFocus:var(--t1);--backgroundActive:var(--t189);--borderColor:var(--t190);--borderColorHover:var(--t16);--borderColorFocus:var(--t190);--borderColorPress:var(--t1);--placeholderColor:var(--t194);--colorTransparent:var(--t217);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--outlineColor:var(--t234);}
|
|
456
|
+
@media(prefers-color-scheme:dark){
|
|
457
|
+
.t_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t18);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--color1:var(--t17);--color2:var(--t189);--color3:var(--t1);--color4:var(--t190);--color5:var(--t16);--color6:var(--t191);--color7:var(--t192);--color8:var(--t193);--color9:var(--t194);--color10:var(--t0);--color11:var(--t10);--color12:var(--t195);--color0:var(--t217);--color02:var(--t218);--color04:var(--t219);--color06:var(--t220);--color08:var(--t221);--color:var(--t195);--colorHover:var(--t221);--colorPress:var(--t195);--colorFocus:var(--t10);--background:var(--t189);--backgroundHover:var(--t1);--backgroundPress:var(--t17);--backgroundFocus:var(--t1);--backgroundActive:var(--t189);--borderColor:var(--t190);--borderColorHover:var(--t16);--borderColorFocus:var(--t190);--borderColorPress:var(--t1);--placeholderColor:var(--t194);--colorTransparent:var(--t217);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--outlineColor:var(--t234);}
|
|
458
|
+
}
|
|
459
|
+
.t_dark_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
460
|
+
: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(--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(--t17);--colorHover:var(--t22);--colorPress:var(--t17);--colorFocus:var(--t16);--background:var(--t8);--backgroundHover:var(--t9);--backgroundPress:var(--t7);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t10);--borderColorHover:var(--t0);--borderColorFocus:var(--t10);--borderColorPress:var(--t9);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--outlineColor:var(--t208);}
|
|
461
|
+
@media(prefers-color-scheme:dark){
|
|
462
|
+
.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(--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(--t17);--colorHover:var(--t22);--colorPress:var(--t17);--colorFocus:var(--t16);--background:var(--t8);--backgroundHover:var(--t9);--backgroundPress:var(--t7);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t10);--borderColorHover:var(--t0);--borderColorFocus:var(--t10);--borderColorPress:var(--t9);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--outlineColor:var(--t208);}
|
|
463
|
+
}
|
|
464
|
+
.t_dark_black ::selection{background:var(--color5);color:var(--color11)}
|
|
465
|
+
:root.t_dark .t_blue, :root.t_light .t_dark .t_blue, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t235);--background02:var(--t236);--background04:var(--t237);--background06:var(--t238);--background08:var(--t239);--color1:var(--t240);--color2:var(--t241);--color3:var(--t242);--color4:var(--t243);--color5:var(--t244);--color6:var(--t245);--color7:var(--t246);--color8:var(--t247);--color9:var(--t248);--color10:var(--t249);--color11:var(--t250);--color12:var(--t251);--color0:var(--t252);--color02:var(--t253);--color04:var(--t254);--color06:var(--t255);--color08:var(--t256);--color:var(--t251);--colorHover:var(--t256);--colorPress:var(--t251);--colorFocus:var(--t250);--background:var(--t241);--backgroundHover:var(--t242);--backgroundPress:var(--t240);--backgroundFocus:var(--t242);--backgroundActive:var(--t241);--borderColor:var(--t243);--borderColorHover:var(--t244);--borderColorFocus:var(--t243);--borderColorPress:var(--t242);--placeholderColor:var(--t248);--colorTransparent:var(--t252);--color01:var(--t257);--color0075:var(--t258);--color005:var(--t259);--color0025:var(--t260);--color002:var(--t261);--color001:var(--t262);--background01:var(--t263);--background0075:var(--t264);--background005:var(--t265);--background0025:var(--t266);--background002:var(--t267);--background001:var(--t268);--outlineColor:var(--t269);}
|
|
466
|
+
@media(prefers-color-scheme:dark){
|
|
467
|
+
.t_blue {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t235);--background02:var(--t236);--background04:var(--t237);--background06:var(--t238);--background08:var(--t239);--color1:var(--t240);--color2:var(--t241);--color3:var(--t242);--color4:var(--t243);--color5:var(--t244);--color6:var(--t245);--color7:var(--t246);--color8:var(--t247);--color9:var(--t248);--color10:var(--t249);--color11:var(--t250);--color12:var(--t251);--color0:var(--t252);--color02:var(--t253);--color04:var(--t254);--color06:var(--t255);--color08:var(--t256);--color:var(--t251);--colorHover:var(--t256);--colorPress:var(--t251);--colorFocus:var(--t250);--background:var(--t241);--backgroundHover:var(--t242);--backgroundPress:var(--t240);--backgroundFocus:var(--t242);--backgroundActive:var(--t241);--borderColor:var(--t243);--borderColorHover:var(--t244);--borderColorFocus:var(--t243);--borderColorPress:var(--t242);--placeholderColor:var(--t248);--colorTransparent:var(--t252);--color01:var(--t257);--color0075:var(--t258);--color005:var(--t259);--color0025:var(--t260);--color002:var(--t261);--color001:var(--t262);--background01:var(--t263);--background0075:var(--t264);--background005:var(--t265);--background0025:var(--t266);--background002:var(--t267);--background001:var(--t268);--outlineColor:var(--t269);}
|
|
468
|
+
}
|
|
469
|
+
.t_dark_blue ::selection{background:var(--color5);color:var(--color11)}
|
|
470
|
+
: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(--t250);--colorHover:var(--t251);--colorPress:var(--t250);--colorFocus:var(--t249);--background:var(--t243);--backgroundHover:var(--t244);--backgroundPress:var(--t242);--backgroundFocus:var(--t246);--backgroundActive:var(--t243);--borderColor:var(--t245);--borderColorHover:var(--t246);--borderColorFocus:var(--t245);--borderColorPress:var(--t244);--color01:var(--t257);--color0075:var(--t258);--color005:var(--t259);--color0025:var(--t260);--color002:var(--t261);--color001:var(--t262);--background01:var(--t263);--background0075:var(--t264);--background005:var(--t265);--background0025:var(--t266);--background002:var(--t267);--background001:var(--t268);--background02:var(--t236);--background04:var(--t237);--background06:var(--t238);--background08:var(--t239);--outlineColor:var(--t269);}
|
|
471
|
+
@media(prefers-color-scheme:dark){
|
|
472
|
+
.t_blue_Button, .t_blue_SliderThumb, .t_blue_Switch, .t_blue_surface2 {--color:var(--t250);--colorHover:var(--t251);--colorPress:var(--t250);--colorFocus:var(--t249);--background:var(--t243);--backgroundHover:var(--t244);--backgroundPress:var(--t242);--backgroundFocus:var(--t246);--backgroundActive:var(--t243);--borderColor:var(--t245);--borderColorHover:var(--t246);--borderColorFocus:var(--t245);--borderColorPress:var(--t244);--color01:var(--t257);--color0075:var(--t258);--color005:var(--t259);--color0025:var(--t260);--color002:var(--t261);--color001:var(--t262);--background01:var(--t263);--background0075:var(--t264);--background005:var(--t265);--background0025:var(--t266);--background002:var(--t267);--background001:var(--t268);--background02:var(--t236);--background04:var(--t237);--background06:var(--t238);--background08:var(--t239);--outlineColor:var(--t269);}
|
|
473
|
+
}
|
|
474
|
+
: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(--t250);--colorHover:var(--t251);--colorPress:var(--t250);--colorFocus:var(--t249);--background:var(--t242);--backgroundHover:var(--t243);--backgroundPress:var(--t241);--backgroundFocus:var(--t244);--backgroundActive:var(--t242);--borderColor:var(--t244);--borderColorHover:var(--t245);--borderColorFocus:var(--t244);--borderColorPress:var(--t243);--color01:var(--t257);--color0075:var(--t258);--color005:var(--t259);--color0025:var(--t260);--color002:var(--t261);--color001:var(--t262);--background01:var(--t263);--background0075:var(--t264);--background005:var(--t265);--background0025:var(--t266);--background002:var(--t267);--background001:var(--t268);--background02:var(--t236);--background04:var(--t237);--background06:var(--t238);--background08:var(--t239);--outlineColor:var(--t269);}
|
|
475
|
+
@media(prefers-color-scheme:dark){
|
|
476
|
+
.t_blue_Input, .t_blue_Progress, .t_blue_Slider, .t_blue_TextArea, .t_blue_surface1 {--color:var(--t250);--colorHover:var(--t251);--colorPress:var(--t250);--colorFocus:var(--t249);--background:var(--t242);--backgroundHover:var(--t243);--backgroundPress:var(--t241);--backgroundFocus:var(--t244);--backgroundActive:var(--t242);--borderColor:var(--t244);--borderColorHover:var(--t245);--borderColorFocus:var(--t244);--borderColorPress:var(--t243);--color01:var(--t257);--color0075:var(--t258);--color005:var(--t259);--color0025:var(--t260);--color002:var(--t261);--color001:var(--t262);--background01:var(--t263);--background0075:var(--t264);--background005:var(--t265);--background0025:var(--t266);--background002:var(--t267);--background001:var(--t268);--background02:var(--t236);--background04:var(--t237);--background06:var(--t238);--background08:var(--t239);--outlineColor:var(--t269);}
|
|
477
|
+
}
|
|
478
|
+
: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(--t250);--colorHover:var(--t251);--colorPress:var(--t250);--colorFocus:var(--t249);--background:var(--t245);--backgroundHover:var(--t246);--backgroundPress:var(--t244);--backgroundFocus:var(--t250);--backgroundActive:var(--t245);--borderColor:var(--t247);--borderColorHover:var(--t248);--borderColorFocus:var(--t247);--borderColorPress:var(--t246);--color01:var(--t257);--color0075:var(--t258);--color005:var(--t259);--color0025:var(--t260);--color002:var(--t261);--color001:var(--t262);--background01:var(--t263);--background0075:var(--t264);--background005:var(--t265);--background0025:var(--t266);--background002:var(--t267);--background001:var(--t268);--background02:var(--t236);--background04:var(--t237);--background06:var(--t238);--background08:var(--t239);--outlineColor:var(--t269);}
|
|
479
|
+
@media(prefers-color-scheme:dark){
|
|
480
|
+
.t_blue_ProgressIndicator, .t_blue_SliderActive {--color:var(--t250);--colorHover:var(--t251);--colorPress:var(--t250);--colorFocus:var(--t249);--background:var(--t245);--backgroundHover:var(--t246);--backgroundPress:var(--t244);--backgroundFocus:var(--t250);--backgroundActive:var(--t245);--borderColor:var(--t247);--borderColorHover:var(--t248);--borderColorFocus:var(--t247);--borderColorPress:var(--t246);--color01:var(--t257);--color0075:var(--t258);--color005:var(--t259);--color0025:var(--t260);--color002:var(--t261);--color001:var(--t262);--background01:var(--t263);--background0075:var(--t264);--background005:var(--t265);--background0025:var(--t266);--background002:var(--t267);--background001:var(--t268);--background02:var(--t236);--background04:var(--t237);--background06:var(--t238);--background08:var(--t239);--outlineColor:var(--t269);}
|
|
481
|
+
}
|
|
482
|
+
: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(--t252);--background02:var(--t236);--background04:var(--t237);--background06:var(--t238);--background08:var(--t239);--color1:var(--t251);--color2:var(--t250);--color3:var(--t249);--color4:var(--t248);--color5:var(--t247);--color6:var(--t246);--color7:var(--t245);--color8:var(--t244);--color9:var(--t243);--color10:var(--t242);--color11:var(--t241);--color12:var(--t240);--color0:var(--t235);--color02:var(--t270);--color04:var(--t271);--color06:var(--t272);--color08:var(--t273);--color:var(--t240);--colorHover:var(--t273);--colorPress:var(--t240);--colorFocus:var(--t241);--background:var(--t250);--backgroundHover:var(--t249);--backgroundPress:var(--t251);--backgroundFocus:var(--t249);--backgroundActive:var(--t250);--borderColor:var(--t248);--borderColorHover:var(--t247);--borderColorFocus:var(--t248);--borderColorPress:var(--t249);--placeholderColor:var(--t243);--colorTransparent:var(--t235);--color01:var(--t257);--color0075:var(--t258);--color005:var(--t259);--color0025:var(--t260);--color002:var(--t261);--color001:var(--t262);--background01:var(--t263);--background0075:var(--t264);--background005:var(--t265);--background0025:var(--t266);--background002:var(--t267);--background001:var(--t268);--outlineColor:var(--t269);}
|
|
483
|
+
@media(prefers-color-scheme:dark){
|
|
484
|
+
.t_blue_SwitchThumb, .t_blue_Tooltip, .t_blue_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t252);--background02:var(--t236);--background04:var(--t237);--background06:var(--t238);--background08:var(--t239);--color1:var(--t251);--color2:var(--t250);--color3:var(--t249);--color4:var(--t248);--color5:var(--t247);--color6:var(--t246);--color7:var(--t245);--color8:var(--t244);--color9:var(--t243);--color10:var(--t242);--color11:var(--t241);--color12:var(--t240);--color0:var(--t235);--color02:var(--t270);--color04:var(--t271);--color06:var(--t272);--color08:var(--t273);--color:var(--t240);--colorHover:var(--t273);--colorPress:var(--t240);--colorFocus:var(--t241);--background:var(--t250);--backgroundHover:var(--t249);--backgroundPress:var(--t251);--backgroundFocus:var(--t249);--backgroundActive:var(--t250);--borderColor:var(--t248);--borderColorHover:var(--t247);--borderColorFocus:var(--t248);--borderColorPress:var(--t249);--placeholderColor:var(--t243);--colorTransparent:var(--t235);--color01:var(--t257);--color0075:var(--t258);--color005:var(--t259);--color0025:var(--t260);--color002:var(--t261);--color001:var(--t262);--background01:var(--t263);--background0075:var(--t264);--background005:var(--t265);--background0025:var(--t266);--background002:var(--t267);--background001:var(--t268);--outlineColor:var(--t269);}
|
|
485
|
+
}
|
|
486
|
+
.t_dark_blue_SwitchThumb ::selection, .t_dark_blue_Tooltip ::selection, .t_dark_blue_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
487
|
+
:root.t_dark .t_gray, :root.t_light .t_dark .t_gray, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t274);--background02:var(--t275);--background04:var(--t276);--background06:var(--t277);--background08:var(--t278);--color1:var(--t279);--color2:var(--t9);--color3:var(--t280);--color4:var(--t281);--color5:var(--t282);--color6:var(--t283);--color7:var(--t284);--color8:var(--t285);--color9:var(--t286);--color10:var(--t287);--color11:var(--t288);--color12:var(--t1);--color0:var(--t289);--color02:var(--t290);--color04:var(--t291);--color06:var(--t292);--color08:var(--t293);--color:var(--t1);--colorHover:var(--t293);--colorPress:var(--t1);--colorFocus:var(--t288);--background:var(--t9);--backgroundHover:var(--t280);--backgroundPress:var(--t279);--backgroundFocus:var(--t280);--backgroundActive:var(--t9);--borderColor:var(--t281);--borderColorHover:var(--t282);--borderColorFocus:var(--t281);--borderColorPress:var(--t280);--placeholderColor:var(--t286);--colorTransparent:var(--t289);--color01:var(--t294);--color0075:var(--t295);--color005:var(--t296);--color0025:var(--t297);--color002:var(--t298);--color001:var(--t299);--background01:var(--t300);--background0075:var(--t301);--background005:var(--t302);--background0025:var(--t303);--background002:var(--t304);--background001:var(--t305);--outlineColor:var(--t306);}
|
|
488
|
+
@media(prefers-color-scheme:dark){
|
|
489
|
+
.t_gray {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t274);--background02:var(--t275);--background04:var(--t276);--background06:var(--t277);--background08:var(--t278);--color1:var(--t279);--color2:var(--t9);--color3:var(--t280);--color4:var(--t281);--color5:var(--t282);--color6:var(--t283);--color7:var(--t284);--color8:var(--t285);--color9:var(--t286);--color10:var(--t287);--color11:var(--t288);--color12:var(--t1);--color0:var(--t289);--color02:var(--t290);--color04:var(--t291);--color06:var(--t292);--color08:var(--t293);--color:var(--t1);--colorHover:var(--t293);--colorPress:var(--t1);--colorFocus:var(--t288);--background:var(--t9);--backgroundHover:var(--t280);--backgroundPress:var(--t279);--backgroundFocus:var(--t280);--backgroundActive:var(--t9);--borderColor:var(--t281);--borderColorHover:var(--t282);--borderColorFocus:var(--t281);--borderColorPress:var(--t280);--placeholderColor:var(--t286);--colorTransparent:var(--t289);--color01:var(--t294);--color0075:var(--t295);--color005:var(--t296);--color0025:var(--t297);--color002:var(--t298);--color001:var(--t299);--background01:var(--t300);--background0075:var(--t301);--background005:var(--t302);--background0025:var(--t303);--background002:var(--t304);--background001:var(--t305);--outlineColor:var(--t306);}
|
|
490
|
+
}
|
|
491
|
+
.t_dark_gray ::selection{background:var(--color5);color:var(--color11)}
|
|
492
|
+
: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(--t288);--colorHover:var(--t1);--colorPress:var(--t288);--colorFocus:var(--t287);--background:var(--t281);--backgroundHover:var(--t282);--backgroundPress:var(--t280);--backgroundFocus:var(--t284);--backgroundActive:var(--t281);--borderColor:var(--t283);--borderColorHover:var(--t284);--borderColorFocus:var(--t283);--borderColorPress:var(--t282);--color01:var(--t294);--color0075:var(--t295);--color005:var(--t296);--color0025:var(--t297);--color002:var(--t298);--color001:var(--t299);--background01:var(--t300);--background0075:var(--t301);--background005:var(--t302);--background0025:var(--t303);--background002:var(--t304);--background001:var(--t305);--background02:var(--t275);--background04:var(--t276);--background06:var(--t277);--background08:var(--t278);--outlineColor:var(--t306);}
|
|
493
|
+
@media(prefers-color-scheme:dark){
|
|
494
|
+
.t_gray_Button, .t_gray_SliderThumb, .t_gray_Switch, .t_gray_surface2 {--color:var(--t288);--colorHover:var(--t1);--colorPress:var(--t288);--colorFocus:var(--t287);--background:var(--t281);--backgroundHover:var(--t282);--backgroundPress:var(--t280);--backgroundFocus:var(--t284);--backgroundActive:var(--t281);--borderColor:var(--t283);--borderColorHover:var(--t284);--borderColorFocus:var(--t283);--borderColorPress:var(--t282);--color01:var(--t294);--color0075:var(--t295);--color005:var(--t296);--color0025:var(--t297);--color002:var(--t298);--color001:var(--t299);--background01:var(--t300);--background0075:var(--t301);--background005:var(--t302);--background0025:var(--t303);--background002:var(--t304);--background001:var(--t305);--background02:var(--t275);--background04:var(--t276);--background06:var(--t277);--background08:var(--t278);--outlineColor:var(--t306);}
|
|
495
|
+
}
|
|
496
|
+
: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(--t288);--colorHover:var(--t1);--colorPress:var(--t288);--colorFocus:var(--t287);--background:var(--t280);--backgroundHover:var(--t281);--backgroundPress:var(--t9);--backgroundFocus:var(--t282);--backgroundActive:var(--t280);--borderColor:var(--t282);--borderColorHover:var(--t283);--borderColorFocus:var(--t282);--borderColorPress:var(--t281);--color01:var(--t294);--color0075:var(--t295);--color005:var(--t296);--color0025:var(--t297);--color002:var(--t298);--color001:var(--t299);--background01:var(--t300);--background0075:var(--t301);--background005:var(--t302);--background0025:var(--t303);--background002:var(--t304);--background001:var(--t305);--background02:var(--t275);--background04:var(--t276);--background06:var(--t277);--background08:var(--t278);--outlineColor:var(--t306);}
|
|
497
|
+
@media(prefers-color-scheme:dark){
|
|
498
|
+
.t_gray_Input, .t_gray_Progress, .t_gray_Slider, .t_gray_TextArea, .t_gray_surface1 {--color:var(--t288);--colorHover:var(--t1);--colorPress:var(--t288);--colorFocus:var(--t287);--background:var(--t280);--backgroundHover:var(--t281);--backgroundPress:var(--t9);--backgroundFocus:var(--t282);--backgroundActive:var(--t280);--borderColor:var(--t282);--borderColorHover:var(--t283);--borderColorFocus:var(--t282);--borderColorPress:var(--t281);--color01:var(--t294);--color0075:var(--t295);--color005:var(--t296);--color0025:var(--t297);--color002:var(--t298);--color001:var(--t299);--background01:var(--t300);--background0075:var(--t301);--background005:var(--t302);--background0025:var(--t303);--background002:var(--t304);--background001:var(--t305);--background02:var(--t275);--background04:var(--t276);--background06:var(--t277);--background08:var(--t278);--outlineColor:var(--t306);}
|
|
499
|
+
}
|
|
500
|
+
: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(--t288);--colorHover:var(--t1);--colorPress:var(--t288);--colorFocus:var(--t287);--background:var(--t283);--backgroundHover:var(--t284);--backgroundPress:var(--t282);--backgroundFocus:var(--t288);--backgroundActive:var(--t283);--borderColor:var(--t285);--borderColorHover:var(--t286);--borderColorFocus:var(--t285);--borderColorPress:var(--t284);--color01:var(--t294);--color0075:var(--t295);--color005:var(--t296);--color0025:var(--t297);--color002:var(--t298);--color001:var(--t299);--background01:var(--t300);--background0075:var(--t301);--background005:var(--t302);--background0025:var(--t303);--background002:var(--t304);--background001:var(--t305);--background02:var(--t275);--background04:var(--t276);--background06:var(--t277);--background08:var(--t278);--outlineColor:var(--t306);}
|
|
501
|
+
@media(prefers-color-scheme:dark){
|
|
502
|
+
.t_gray_ProgressIndicator, .t_gray_SliderActive {--color:var(--t288);--colorHover:var(--t1);--colorPress:var(--t288);--colorFocus:var(--t287);--background:var(--t283);--backgroundHover:var(--t284);--backgroundPress:var(--t282);--backgroundFocus:var(--t288);--backgroundActive:var(--t283);--borderColor:var(--t285);--borderColorHover:var(--t286);--borderColorFocus:var(--t285);--borderColorPress:var(--t284);--color01:var(--t294);--color0075:var(--t295);--color005:var(--t296);--color0025:var(--t297);--color002:var(--t298);--color001:var(--t299);--background01:var(--t300);--background0075:var(--t301);--background005:var(--t302);--background0025:var(--t303);--background002:var(--t304);--background001:var(--t305);--background02:var(--t275);--background04:var(--t276);--background06:var(--t277);--background08:var(--t278);--outlineColor:var(--t306);}
|
|
503
|
+
}
|
|
504
|
+
: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(--t289);--background02:var(--t275);--background04:var(--t276);--background06:var(--t277);--background08:var(--t278);--color1:var(--t1);--color2:var(--t288);--color3:var(--t287);--color4:var(--t286);--color5:var(--t285);--color6:var(--t284);--color7:var(--t283);--color8:var(--t282);--color9:var(--t281);--color10:var(--t280);--color11:var(--t9);--color12:var(--t279);--color0:var(--t274);--color02:var(--t307);--color04:var(--t308);--color06:var(--t309);--color08:var(--t310);--color:var(--t279);--colorHover:var(--t310);--colorPress:var(--t279);--colorFocus:var(--t9);--background:var(--t288);--backgroundHover:var(--t287);--backgroundPress:var(--t1);--backgroundFocus:var(--t287);--backgroundActive:var(--t288);--borderColor:var(--t286);--borderColorHover:var(--t285);--borderColorFocus:var(--t286);--borderColorPress:var(--t287);--placeholderColor:var(--t281);--colorTransparent:var(--t274);--color01:var(--t294);--color0075:var(--t295);--color005:var(--t296);--color0025:var(--t297);--color002:var(--t298);--color001:var(--t299);--background01:var(--t300);--background0075:var(--t301);--background005:var(--t302);--background0025:var(--t303);--background002:var(--t304);--background001:var(--t305);--outlineColor:var(--t306);}
|
|
505
|
+
@media(prefers-color-scheme:dark){
|
|
506
|
+
.t_gray_SwitchThumb, .t_gray_Tooltip, .t_gray_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t289);--background02:var(--t275);--background04:var(--t276);--background06:var(--t277);--background08:var(--t278);--color1:var(--t1);--color2:var(--t288);--color3:var(--t287);--color4:var(--t286);--color5:var(--t285);--color6:var(--t284);--color7:var(--t283);--color8:var(--t282);--color9:var(--t281);--color10:var(--t280);--color11:var(--t9);--color12:var(--t279);--color0:var(--t274);--color02:var(--t307);--color04:var(--t308);--color06:var(--t309);--color08:var(--t310);--color:var(--t279);--colorHover:var(--t310);--colorPress:var(--t279);--colorFocus:var(--t9);--background:var(--t288);--backgroundHover:var(--t287);--backgroundPress:var(--t1);--backgroundFocus:var(--t287);--backgroundActive:var(--t288);--borderColor:var(--t286);--borderColorHover:var(--t285);--borderColorFocus:var(--t286);--borderColorPress:var(--t287);--placeholderColor:var(--t281);--colorTransparent:var(--t274);--color01:var(--t294);--color0075:var(--t295);--color005:var(--t296);--color0025:var(--t297);--color002:var(--t298);--color001:var(--t299);--background01:var(--t300);--background0075:var(--t301);--background005:var(--t302);--background0025:var(--t303);--background002:var(--t304);--background001:var(--t305);--outlineColor:var(--t306);}
|
|
507
|
+
}
|
|
508
|
+
.t_dark_gray_SwitchThumb ::selection, .t_dark_gray_Tooltip ::selection, .t_dark_gray_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
509
|
+
:root.t_dark .t_green, :root.t_light .t_dark .t_green, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t311);--background02:var(--t312);--background04:var(--t313);--background06:var(--t314);--background08:var(--t315);--color1:var(--t316);--color2:var(--t317);--color3:var(--t318);--color4:var(--t319);--color5:var(--t320);--color6:var(--t321);--color7:var(--t322);--color8:var(--t323);--color9:var(--t324);--color10:var(--t325);--color11:var(--t326);--color12:var(--t327);--color0:var(--t328);--color02:var(--t329);--color04:var(--t330);--color06:var(--t331);--color08:var(--t332);--color:var(--t327);--colorHover:var(--t332);--colorPress:var(--t327);--colorFocus:var(--t326);--background:var(--t317);--backgroundHover:var(--t318);--backgroundPress:var(--t316);--backgroundFocus:var(--t318);--backgroundActive:var(--t317);--borderColor:var(--t319);--borderColorHover:var(--t320);--borderColorFocus:var(--t319);--borderColorPress:var(--t318);--placeholderColor:var(--t324);--colorTransparent:var(--t328);--color01:var(--t333);--color0075:var(--t334);--color005:var(--t335);--color0025:var(--t336);--color002:var(--t337);--color001:var(--t338);--background01:var(--t339);--background0075:var(--t340);--background005:var(--t341);--background0025:var(--t342);--background002:var(--t343);--background001:var(--t344);--outlineColor:var(--t345);}
|
|
510
|
+
@media(prefers-color-scheme:dark){
|
|
511
|
+
.t_green {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t311);--background02:var(--t312);--background04:var(--t313);--background06:var(--t314);--background08:var(--t315);--color1:var(--t316);--color2:var(--t317);--color3:var(--t318);--color4:var(--t319);--color5:var(--t320);--color6:var(--t321);--color7:var(--t322);--color8:var(--t323);--color9:var(--t324);--color10:var(--t325);--color11:var(--t326);--color12:var(--t327);--color0:var(--t328);--color02:var(--t329);--color04:var(--t330);--color06:var(--t331);--color08:var(--t332);--color:var(--t327);--colorHover:var(--t332);--colorPress:var(--t327);--colorFocus:var(--t326);--background:var(--t317);--backgroundHover:var(--t318);--backgroundPress:var(--t316);--backgroundFocus:var(--t318);--backgroundActive:var(--t317);--borderColor:var(--t319);--borderColorHover:var(--t320);--borderColorFocus:var(--t319);--borderColorPress:var(--t318);--placeholderColor:var(--t324);--colorTransparent:var(--t328);--color01:var(--t333);--color0075:var(--t334);--color005:var(--t335);--color0025:var(--t336);--color002:var(--t337);--color001:var(--t338);--background01:var(--t339);--background0075:var(--t340);--background005:var(--t341);--background0025:var(--t342);--background002:var(--t343);--background001:var(--t344);--outlineColor:var(--t345);}
|
|
512
|
+
}
|
|
513
|
+
.t_dark_green ::selection{background:var(--color5);color:var(--color11)}
|
|
514
|
+
: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(--t326);--colorHover:var(--t327);--colorPress:var(--t326);--colorFocus:var(--t325);--background:var(--t319);--backgroundHover:var(--t320);--backgroundPress:var(--t318);--backgroundFocus:var(--t322);--backgroundActive:var(--t319);--borderColor:var(--t321);--borderColorHover:var(--t322);--borderColorFocus:var(--t321);--borderColorPress:var(--t320);--color01:var(--t333);--color0075:var(--t334);--color005:var(--t335);--color0025:var(--t336);--color002:var(--t337);--color001:var(--t338);--background01:var(--t339);--background0075:var(--t340);--background005:var(--t341);--background0025:var(--t342);--background002:var(--t343);--background001:var(--t344);--background02:var(--t312);--background04:var(--t313);--background06:var(--t314);--background08:var(--t315);--outlineColor:var(--t345);}
|
|
515
|
+
@media(prefers-color-scheme:dark){
|
|
516
|
+
.t_green_Button, .t_green_SliderThumb, .t_green_Switch, .t_green_surface2 {--color:var(--t326);--colorHover:var(--t327);--colorPress:var(--t326);--colorFocus:var(--t325);--background:var(--t319);--backgroundHover:var(--t320);--backgroundPress:var(--t318);--backgroundFocus:var(--t322);--backgroundActive:var(--t319);--borderColor:var(--t321);--borderColorHover:var(--t322);--borderColorFocus:var(--t321);--borderColorPress:var(--t320);--color01:var(--t333);--color0075:var(--t334);--color005:var(--t335);--color0025:var(--t336);--color002:var(--t337);--color001:var(--t338);--background01:var(--t339);--background0075:var(--t340);--background005:var(--t341);--background0025:var(--t342);--background002:var(--t343);--background001:var(--t344);--background02:var(--t312);--background04:var(--t313);--background06:var(--t314);--background08:var(--t315);--outlineColor:var(--t345);}
|
|
517
|
+
}
|
|
518
|
+
: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(--t326);--colorHover:var(--t327);--colorPress:var(--t326);--colorFocus:var(--t325);--background:var(--t318);--backgroundHover:var(--t319);--backgroundPress:var(--t317);--backgroundFocus:var(--t320);--backgroundActive:var(--t318);--borderColor:var(--t320);--borderColorHover:var(--t321);--borderColorFocus:var(--t320);--borderColorPress:var(--t319);--color01:var(--t333);--color0075:var(--t334);--color005:var(--t335);--color0025:var(--t336);--color002:var(--t337);--color001:var(--t338);--background01:var(--t339);--background0075:var(--t340);--background005:var(--t341);--background0025:var(--t342);--background002:var(--t343);--background001:var(--t344);--background02:var(--t312);--background04:var(--t313);--background06:var(--t314);--background08:var(--t315);--outlineColor:var(--t345);}
|
|
519
|
+
@media(prefers-color-scheme:dark){
|
|
520
|
+
.t_green_Input, .t_green_Progress, .t_green_Slider, .t_green_TextArea, .t_green_surface1 {--color:var(--t326);--colorHover:var(--t327);--colorPress:var(--t326);--colorFocus:var(--t325);--background:var(--t318);--backgroundHover:var(--t319);--backgroundPress:var(--t317);--backgroundFocus:var(--t320);--backgroundActive:var(--t318);--borderColor:var(--t320);--borderColorHover:var(--t321);--borderColorFocus:var(--t320);--borderColorPress:var(--t319);--color01:var(--t333);--color0075:var(--t334);--color005:var(--t335);--color0025:var(--t336);--color002:var(--t337);--color001:var(--t338);--background01:var(--t339);--background0075:var(--t340);--background005:var(--t341);--background0025:var(--t342);--background002:var(--t343);--background001:var(--t344);--background02:var(--t312);--background04:var(--t313);--background06:var(--t314);--background08:var(--t315);--outlineColor:var(--t345);}
|
|
521
|
+
}
|
|
522
|
+
: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(--t326);--colorHover:var(--t327);--colorPress:var(--t326);--colorFocus:var(--t325);--background:var(--t321);--backgroundHover:var(--t322);--backgroundPress:var(--t320);--backgroundFocus:var(--t326);--backgroundActive:var(--t321);--borderColor:var(--t323);--borderColorHover:var(--t324);--borderColorFocus:var(--t323);--borderColorPress:var(--t322);--color01:var(--t333);--color0075:var(--t334);--color005:var(--t335);--color0025:var(--t336);--color002:var(--t337);--color001:var(--t338);--background01:var(--t339);--background0075:var(--t340);--background005:var(--t341);--background0025:var(--t342);--background002:var(--t343);--background001:var(--t344);--background02:var(--t312);--background04:var(--t313);--background06:var(--t314);--background08:var(--t315);--outlineColor:var(--t345);}
|
|
523
|
+
@media(prefers-color-scheme:dark){
|
|
524
|
+
.t_green_ProgressIndicator, .t_green_SliderActive {--color:var(--t326);--colorHover:var(--t327);--colorPress:var(--t326);--colorFocus:var(--t325);--background:var(--t321);--backgroundHover:var(--t322);--backgroundPress:var(--t320);--backgroundFocus:var(--t326);--backgroundActive:var(--t321);--borderColor:var(--t323);--borderColorHover:var(--t324);--borderColorFocus:var(--t323);--borderColorPress:var(--t322);--color01:var(--t333);--color0075:var(--t334);--color005:var(--t335);--color0025:var(--t336);--color002:var(--t337);--color001:var(--t338);--background01:var(--t339);--background0075:var(--t340);--background005:var(--t341);--background0025:var(--t342);--background002:var(--t343);--background001:var(--t344);--background02:var(--t312);--background04:var(--t313);--background06:var(--t314);--background08:var(--t315);--outlineColor:var(--t345);}
|
|
525
|
+
}
|
|
526
|
+
: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(--t328);--background02:var(--t312);--background04:var(--t313);--background06:var(--t314);--background08:var(--t315);--color1:var(--t327);--color2:var(--t326);--color3:var(--t325);--color4:var(--t324);--color5:var(--t323);--color6:var(--t322);--color7:var(--t321);--color8:var(--t320);--color9:var(--t319);--color10:var(--t318);--color11:var(--t317);--color12:var(--t316);--color0:var(--t311);--color02:var(--t346);--color04:var(--t347);--color06:var(--t348);--color08:var(--t349);--color:var(--t316);--colorHover:var(--t349);--colorPress:var(--t316);--colorFocus:var(--t317);--background:var(--t326);--backgroundHover:var(--t325);--backgroundPress:var(--t327);--backgroundFocus:var(--t325);--backgroundActive:var(--t326);--borderColor:var(--t324);--borderColorHover:var(--t323);--borderColorFocus:var(--t324);--borderColorPress:var(--t325);--placeholderColor:var(--t319);--colorTransparent:var(--t311);--color01:var(--t333);--color0075:var(--t334);--color005:var(--t335);--color0025:var(--t336);--color002:var(--t337);--color001:var(--t338);--background01:var(--t339);--background0075:var(--t340);--background005:var(--t341);--background0025:var(--t342);--background002:var(--t343);--background001:var(--t344);--outlineColor:var(--t345);}
|
|
527
|
+
@media(prefers-color-scheme:dark){
|
|
528
|
+
.t_green_SwitchThumb, .t_green_Tooltip, .t_green_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t328);--background02:var(--t312);--background04:var(--t313);--background06:var(--t314);--background08:var(--t315);--color1:var(--t327);--color2:var(--t326);--color3:var(--t325);--color4:var(--t324);--color5:var(--t323);--color6:var(--t322);--color7:var(--t321);--color8:var(--t320);--color9:var(--t319);--color10:var(--t318);--color11:var(--t317);--color12:var(--t316);--color0:var(--t311);--color02:var(--t346);--color04:var(--t347);--color06:var(--t348);--color08:var(--t349);--color:var(--t316);--colorHover:var(--t349);--colorPress:var(--t316);--colorFocus:var(--t317);--background:var(--t326);--backgroundHover:var(--t325);--backgroundPress:var(--t327);--backgroundFocus:var(--t325);--backgroundActive:var(--t326);--borderColor:var(--t324);--borderColorHover:var(--t323);--borderColorFocus:var(--t324);--borderColorPress:var(--t325);--placeholderColor:var(--t319);--colorTransparent:var(--t311);--color01:var(--t333);--color0075:var(--t334);--color005:var(--t335);--color0025:var(--t336);--color002:var(--t337);--color001:var(--t338);--background01:var(--t339);--background0075:var(--t340);--background005:var(--t341);--background0025:var(--t342);--background002:var(--t343);--background001:var(--t344);--outlineColor:var(--t345);}
|
|
529
|
+
}
|
|
530
|
+
.t_dark_green_SwitchThumb ::selection, .t_dark_green_Tooltip ::selection, .t_dark_green_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
531
|
+
:root.t_dark .t_neutral, :root.t_light .t_dark .t_neutral, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t350);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--color1:var(--t355);--color2:var(--t356);--color3:var(--t357);--color4:var(--t192);--color5:var(--t358);--color6:var(--t359);--color7:var(--t360);--color8:var(--t13);--color9:var(--t361);--color10:var(--t362);--color11:var(--t285);--color12:var(--t363);--color0:var(--t364);--color02:var(--t365);--color04:var(--t366);--color06:var(--t367);--color08:var(--t368);--color:var(--t363);--colorHover:var(--t368);--colorPress:var(--t363);--colorFocus:var(--t285);--background:var(--t356);--backgroundHover:var(--t357);--backgroundPress:var(--t355);--backgroundFocus:var(--t357);--backgroundActive:var(--t356);--borderColor:var(--t192);--borderColorHover:var(--t358);--borderColorFocus:var(--t192);--borderColorPress:var(--t357);--placeholderColor:var(--t361);--colorTransparent:var(--t364);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--outlineColor:var(--t381);}
|
|
532
|
+
@media(prefers-color-scheme:dark){
|
|
533
|
+
.t_neutral {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t350);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--color1:var(--t355);--color2:var(--t356);--color3:var(--t357);--color4:var(--t192);--color5:var(--t358);--color6:var(--t359);--color7:var(--t360);--color8:var(--t13);--color9:var(--t361);--color10:var(--t362);--color11:var(--t285);--color12:var(--t363);--color0:var(--t364);--color02:var(--t365);--color04:var(--t366);--color06:var(--t367);--color08:var(--t368);--color:var(--t363);--colorHover:var(--t368);--colorPress:var(--t363);--colorFocus:var(--t285);--background:var(--t356);--backgroundHover:var(--t357);--backgroundPress:var(--t355);--backgroundFocus:var(--t357);--backgroundActive:var(--t356);--borderColor:var(--t192);--borderColorHover:var(--t358);--borderColorFocus:var(--t192);--borderColorPress:var(--t357);--placeholderColor:var(--t361);--colorTransparent:var(--t364);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--outlineColor:var(--t381);}
|
|
534
|
+
}
|
|
535
|
+
.t_dark_neutral ::selection{background:var(--color5);color:var(--color11)}
|
|
536
|
+
: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(--t285);--colorHover:var(--t363);--colorPress:var(--t285);--colorFocus:var(--t362);--background:var(--t192);--backgroundHover:var(--t358);--backgroundPress:var(--t357);--backgroundFocus:var(--t360);--backgroundActive:var(--t192);--borderColor:var(--t359);--borderColorHover:var(--t360);--borderColorFocus:var(--t359);--borderColorPress:var(--t358);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--outlineColor:var(--t381);}
|
|
537
|
+
@media(prefers-color-scheme:dark){
|
|
538
|
+
.t_neutral_Button, .t_neutral_SliderThumb, .t_neutral_Switch, .t_neutral_surface2 {--color:var(--t285);--colorHover:var(--t363);--colorPress:var(--t285);--colorFocus:var(--t362);--background:var(--t192);--backgroundHover:var(--t358);--backgroundPress:var(--t357);--backgroundFocus:var(--t360);--backgroundActive:var(--t192);--borderColor:var(--t359);--borderColorHover:var(--t360);--borderColorFocus:var(--t359);--borderColorPress:var(--t358);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--outlineColor:var(--t381);}
|
|
539
|
+
}
|
|
540
|
+
: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(--t285);--colorHover:var(--t363);--colorPress:var(--t285);--colorFocus:var(--t362);--background:var(--t357);--backgroundHover:var(--t192);--backgroundPress:var(--t356);--backgroundFocus:var(--t358);--backgroundActive:var(--t357);--borderColor:var(--t358);--borderColorHover:var(--t359);--borderColorFocus:var(--t358);--borderColorPress:var(--t192);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--outlineColor:var(--t381);}
|
|
541
|
+
@media(prefers-color-scheme:dark){
|
|
542
|
+
.t_neutral_Input, .t_neutral_Progress, .t_neutral_Slider, .t_neutral_TextArea, .t_neutral_surface1 {--color:var(--t285);--colorHover:var(--t363);--colorPress:var(--t285);--colorFocus:var(--t362);--background:var(--t357);--backgroundHover:var(--t192);--backgroundPress:var(--t356);--backgroundFocus:var(--t358);--backgroundActive:var(--t357);--borderColor:var(--t358);--borderColorHover:var(--t359);--borderColorFocus:var(--t358);--borderColorPress:var(--t192);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--outlineColor:var(--t381);}
|
|
543
|
+
}
|
|
544
|
+
: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(--t285);--colorHover:var(--t363);--colorPress:var(--t285);--colorFocus:var(--t362);--background:var(--t359);--backgroundHover:var(--t360);--backgroundPress:var(--t358);--backgroundFocus:var(--t285);--backgroundActive:var(--t359);--borderColor:var(--t13);--borderColorHover:var(--t361);--borderColorFocus:var(--t13);--borderColorPress:var(--t360);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--outlineColor:var(--t381);}
|
|
545
|
+
@media(prefers-color-scheme:dark){
|
|
546
|
+
.t_neutral_ProgressIndicator, .t_neutral_SliderActive {--color:var(--t285);--colorHover:var(--t363);--colorPress:var(--t285);--colorFocus:var(--t362);--background:var(--t359);--backgroundHover:var(--t360);--backgroundPress:var(--t358);--backgroundFocus:var(--t285);--backgroundActive:var(--t359);--borderColor:var(--t13);--borderColorHover:var(--t361);--borderColorFocus:var(--t13);--borderColorPress:var(--t360);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--outlineColor:var(--t381);}
|
|
547
|
+
}
|
|
548
|
+
: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(--t364);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--color1:var(--t363);--color2:var(--t285);--color3:var(--t362);--color4:var(--t361);--color5:var(--t13);--color6:var(--t360);--color7:var(--t359);--color8:var(--t358);--color9:var(--t192);--color10:var(--t357);--color11:var(--t356);--color12:var(--t355);--color0:var(--t350);--color02:var(--t382);--color04:var(--t383);--color06:var(--t384);--color08:var(--t385);--color:var(--t355);--colorHover:var(--t385);--colorPress:var(--t355);--colorFocus:var(--t356);--background:var(--t285);--backgroundHover:var(--t362);--backgroundPress:var(--t363);--backgroundFocus:var(--t362);--backgroundActive:var(--t285);--borderColor:var(--t361);--borderColorHover:var(--t13);--borderColorFocus:var(--t361);--borderColorPress:var(--t362);--placeholderColor:var(--t192);--colorTransparent:var(--t350);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--outlineColor:var(--t381);}
|
|
549
|
+
@media(prefers-color-scheme:dark){
|
|
550
|
+
.t_neutral_SwitchThumb, .t_neutral_Tooltip, .t_neutral_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t364);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--color1:var(--t363);--color2:var(--t285);--color3:var(--t362);--color4:var(--t361);--color5:var(--t13);--color6:var(--t360);--color7:var(--t359);--color8:var(--t358);--color9:var(--t192);--color10:var(--t357);--color11:var(--t356);--color12:var(--t355);--color0:var(--t350);--color02:var(--t382);--color04:var(--t383);--color06:var(--t384);--color08:var(--t385);--color:var(--t355);--colorHover:var(--t385);--colorPress:var(--t355);--colorFocus:var(--t356);--background:var(--t285);--backgroundHover:var(--t362);--backgroundPress:var(--t363);--backgroundFocus:var(--t362);--backgroundActive:var(--t285);--borderColor:var(--t361);--borderColorHover:var(--t13);--borderColorFocus:var(--t361);--borderColorPress:var(--t362);--placeholderColor:var(--t192);--colorTransparent:var(--t350);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--outlineColor:var(--t381);}
|
|
551
|
+
}
|
|
552
|
+
.t_dark_neutral_SwitchThumb ::selection, .t_dark_neutral_Tooltip ::selection, .t_dark_neutral_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
553
|
+
:root.t_dark .t_orange, :root.t_light .t_dark .t_orange, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t386);--background02:var(--t387);--background04:var(--t388);--background06:var(--t389);--background08:var(--t390);--color1:var(--t391);--color2:var(--t392);--color3:var(--t393);--color4:var(--t394);--color5:var(--t395);--color6:var(--t396);--color7:var(--t397);--color8:var(--t398);--color9:var(--t399);--color10:var(--t400);--color11:var(--t401);--color12:var(--t402);--color0:var(--t403);--color02:var(--t404);--color04:var(--t405);--color06:var(--t406);--color08:var(--t407);--color:var(--t402);--colorHover:var(--t407);--colorPress:var(--t402);--colorFocus:var(--t401);--background:var(--t392);--backgroundHover:var(--t393);--backgroundPress:var(--t391);--backgroundFocus:var(--t393);--backgroundActive:var(--t392);--borderColor:var(--t394);--borderColorHover:var(--t395);--borderColorFocus:var(--t394);--borderColorPress:var(--t393);--placeholderColor:var(--t399);--colorTransparent:var(--t403);--color01:var(--t408);--color0075:var(--t409);--color005:var(--t410);--color0025:var(--t411);--color002:var(--t412);--color001:var(--t413);--background01:var(--t414);--background0075:var(--t415);--background005:var(--t416);--background0025:var(--t417);--background002:var(--t418);--background001:var(--t419);--outlineColor:var(--t420);}
|
|
554
|
+
@media(prefers-color-scheme:dark){
|
|
555
|
+
.t_orange {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t386);--background02:var(--t387);--background04:var(--t388);--background06:var(--t389);--background08:var(--t390);--color1:var(--t391);--color2:var(--t392);--color3:var(--t393);--color4:var(--t394);--color5:var(--t395);--color6:var(--t396);--color7:var(--t397);--color8:var(--t398);--color9:var(--t399);--color10:var(--t400);--color11:var(--t401);--color12:var(--t402);--color0:var(--t403);--color02:var(--t404);--color04:var(--t405);--color06:var(--t406);--color08:var(--t407);--color:var(--t402);--colorHover:var(--t407);--colorPress:var(--t402);--colorFocus:var(--t401);--background:var(--t392);--backgroundHover:var(--t393);--backgroundPress:var(--t391);--backgroundFocus:var(--t393);--backgroundActive:var(--t392);--borderColor:var(--t394);--borderColorHover:var(--t395);--borderColorFocus:var(--t394);--borderColorPress:var(--t393);--placeholderColor:var(--t399);--colorTransparent:var(--t403);--color01:var(--t408);--color0075:var(--t409);--color005:var(--t410);--color0025:var(--t411);--color002:var(--t412);--color001:var(--t413);--background01:var(--t414);--background0075:var(--t415);--background005:var(--t416);--background0025:var(--t417);--background002:var(--t418);--background001:var(--t419);--outlineColor:var(--t420);}
|
|
556
|
+
}
|
|
557
|
+
.t_dark_orange ::selection{background:var(--color5);color:var(--color11)}
|
|
558
|
+
: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(--t401);--colorHover:var(--t402);--colorPress:var(--t401);--colorFocus:var(--t400);--background:var(--t394);--backgroundHover:var(--t395);--backgroundPress:var(--t393);--backgroundFocus:var(--t397);--backgroundActive:var(--t394);--borderColor:var(--t396);--borderColorHover:var(--t397);--borderColorFocus:var(--t396);--borderColorPress:var(--t395);--color01:var(--t408);--color0075:var(--t409);--color005:var(--t410);--color0025:var(--t411);--color002:var(--t412);--color001:var(--t413);--background01:var(--t414);--background0075:var(--t415);--background005:var(--t416);--background0025:var(--t417);--background002:var(--t418);--background001:var(--t419);--background02:var(--t387);--background04:var(--t388);--background06:var(--t389);--background08:var(--t390);--outlineColor:var(--t420);}
|
|
559
|
+
@media(prefers-color-scheme:dark){
|
|
560
|
+
.t_orange_Button, .t_orange_SliderThumb, .t_orange_Switch, .t_orange_surface2 {--color:var(--t401);--colorHover:var(--t402);--colorPress:var(--t401);--colorFocus:var(--t400);--background:var(--t394);--backgroundHover:var(--t395);--backgroundPress:var(--t393);--backgroundFocus:var(--t397);--backgroundActive:var(--t394);--borderColor:var(--t396);--borderColorHover:var(--t397);--borderColorFocus:var(--t396);--borderColorPress:var(--t395);--color01:var(--t408);--color0075:var(--t409);--color005:var(--t410);--color0025:var(--t411);--color002:var(--t412);--color001:var(--t413);--background01:var(--t414);--background0075:var(--t415);--background005:var(--t416);--background0025:var(--t417);--background002:var(--t418);--background001:var(--t419);--background02:var(--t387);--background04:var(--t388);--background06:var(--t389);--background08:var(--t390);--outlineColor:var(--t420);}
|
|
561
|
+
}
|
|
562
|
+
: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(--t401);--colorHover:var(--t402);--colorPress:var(--t401);--colorFocus:var(--t400);--background:var(--t393);--backgroundHover:var(--t394);--backgroundPress:var(--t392);--backgroundFocus:var(--t395);--backgroundActive:var(--t393);--borderColor:var(--t395);--borderColorHover:var(--t396);--borderColorFocus:var(--t395);--borderColorPress:var(--t394);--color01:var(--t408);--color0075:var(--t409);--color005:var(--t410);--color0025:var(--t411);--color002:var(--t412);--color001:var(--t413);--background01:var(--t414);--background0075:var(--t415);--background005:var(--t416);--background0025:var(--t417);--background002:var(--t418);--background001:var(--t419);--background02:var(--t387);--background04:var(--t388);--background06:var(--t389);--background08:var(--t390);--outlineColor:var(--t420);}
|
|
563
|
+
@media(prefers-color-scheme:dark){
|
|
564
|
+
.t_orange_Input, .t_orange_Progress, .t_orange_Slider, .t_orange_TextArea, .t_orange_surface1 {--color:var(--t401);--colorHover:var(--t402);--colorPress:var(--t401);--colorFocus:var(--t400);--background:var(--t393);--backgroundHover:var(--t394);--backgroundPress:var(--t392);--backgroundFocus:var(--t395);--backgroundActive:var(--t393);--borderColor:var(--t395);--borderColorHover:var(--t396);--borderColorFocus:var(--t395);--borderColorPress:var(--t394);--color01:var(--t408);--color0075:var(--t409);--color005:var(--t410);--color0025:var(--t411);--color002:var(--t412);--color001:var(--t413);--background01:var(--t414);--background0075:var(--t415);--background005:var(--t416);--background0025:var(--t417);--background002:var(--t418);--background001:var(--t419);--background02:var(--t387);--background04:var(--t388);--background06:var(--t389);--background08:var(--t390);--outlineColor:var(--t420);}
|
|
565
|
+
}
|
|
566
|
+
: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(--t401);--colorHover:var(--t402);--colorPress:var(--t401);--colorFocus:var(--t400);--background:var(--t396);--backgroundHover:var(--t397);--backgroundPress:var(--t395);--backgroundFocus:var(--t401);--backgroundActive:var(--t396);--borderColor:var(--t398);--borderColorHover:var(--t399);--borderColorFocus:var(--t398);--borderColorPress:var(--t397);--color01:var(--t408);--color0075:var(--t409);--color005:var(--t410);--color0025:var(--t411);--color002:var(--t412);--color001:var(--t413);--background01:var(--t414);--background0075:var(--t415);--background005:var(--t416);--background0025:var(--t417);--background002:var(--t418);--background001:var(--t419);--background02:var(--t387);--background04:var(--t388);--background06:var(--t389);--background08:var(--t390);--outlineColor:var(--t420);}
|
|
567
|
+
@media(prefers-color-scheme:dark){
|
|
568
|
+
.t_orange_ProgressIndicator, .t_orange_SliderActive {--color:var(--t401);--colorHover:var(--t402);--colorPress:var(--t401);--colorFocus:var(--t400);--background:var(--t396);--backgroundHover:var(--t397);--backgroundPress:var(--t395);--backgroundFocus:var(--t401);--backgroundActive:var(--t396);--borderColor:var(--t398);--borderColorHover:var(--t399);--borderColorFocus:var(--t398);--borderColorPress:var(--t397);--color01:var(--t408);--color0075:var(--t409);--color005:var(--t410);--color0025:var(--t411);--color002:var(--t412);--color001:var(--t413);--background01:var(--t414);--background0075:var(--t415);--background005:var(--t416);--background0025:var(--t417);--background002:var(--t418);--background001:var(--t419);--background02:var(--t387);--background04:var(--t388);--background06:var(--t389);--background08:var(--t390);--outlineColor:var(--t420);}
|
|
569
|
+
}
|
|
570
|
+
: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(--t403);--background02:var(--t387);--background04:var(--t388);--background06:var(--t389);--background08:var(--t390);--color1:var(--t402);--color2:var(--t401);--color3:var(--t400);--color4:var(--t399);--color5:var(--t398);--color6:var(--t397);--color7:var(--t396);--color8:var(--t395);--color9:var(--t394);--color10:var(--t393);--color11:var(--t392);--color12:var(--t391);--color0:var(--t386);--color02:var(--t421);--color04:var(--t422);--color06:var(--t423);--color08:var(--t424);--color:var(--t391);--colorHover:var(--t424);--colorPress:var(--t391);--colorFocus:var(--t392);--background:var(--t401);--backgroundHover:var(--t400);--backgroundPress:var(--t402);--backgroundFocus:var(--t400);--backgroundActive:var(--t401);--borderColor:var(--t399);--borderColorHover:var(--t398);--borderColorFocus:var(--t399);--borderColorPress:var(--t400);--placeholderColor:var(--t394);--colorTransparent:var(--t386);--color01:var(--t408);--color0075:var(--t409);--color005:var(--t410);--color0025:var(--t411);--color002:var(--t412);--color001:var(--t413);--background01:var(--t414);--background0075:var(--t415);--background005:var(--t416);--background0025:var(--t417);--background002:var(--t418);--background001:var(--t419);--outlineColor:var(--t420);}
|
|
571
|
+
@media(prefers-color-scheme:dark){
|
|
572
|
+
.t_orange_SwitchThumb, .t_orange_Tooltip, .t_orange_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t403);--background02:var(--t387);--background04:var(--t388);--background06:var(--t389);--background08:var(--t390);--color1:var(--t402);--color2:var(--t401);--color3:var(--t400);--color4:var(--t399);--color5:var(--t398);--color6:var(--t397);--color7:var(--t396);--color8:var(--t395);--color9:var(--t394);--color10:var(--t393);--color11:var(--t392);--color12:var(--t391);--color0:var(--t386);--color02:var(--t421);--color04:var(--t422);--color06:var(--t423);--color08:var(--t424);--color:var(--t391);--colorHover:var(--t424);--colorPress:var(--t391);--colorFocus:var(--t392);--background:var(--t401);--backgroundHover:var(--t400);--backgroundPress:var(--t402);--backgroundFocus:var(--t400);--backgroundActive:var(--t401);--borderColor:var(--t399);--borderColorHover:var(--t398);--borderColorFocus:var(--t399);--borderColorPress:var(--t400);--placeholderColor:var(--t394);--colorTransparent:var(--t386);--color01:var(--t408);--color0075:var(--t409);--color005:var(--t410);--color0025:var(--t411);--color002:var(--t412);--color001:var(--t413);--background01:var(--t414);--background0075:var(--t415);--background005:var(--t416);--background0025:var(--t417);--background002:var(--t418);--background001:var(--t419);--outlineColor:var(--t420);}
|
|
573
|
+
}
|
|
574
|
+
.t_dark_orange_SwitchThumb ::selection, .t_dark_orange_Tooltip ::selection, .t_dark_orange_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
575
|
+
:root.t_dark .t_pink, :root.t_light .t_dark .t_pink, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t425);--background02:var(--t426);--background04:var(--t427);--background06:var(--t428);--background08:var(--t429);--color1:var(--t430);--color2:var(--t431);--color3:var(--t432);--color4:var(--t433);--color5:var(--t434);--color6:var(--t435);--color7:var(--t436);--color8:var(--t437);--color9:var(--t438);--color10:var(--t439);--color11:var(--t440);--color12:var(--t441);--color0:var(--t442);--color02:var(--t443);--color04:var(--t444);--color06:var(--t445);--color08:var(--t446);--color:var(--t441);--colorHover:var(--t446);--colorPress:var(--t441);--colorFocus:var(--t440);--background:var(--t431);--backgroundHover:var(--t432);--backgroundPress:var(--t430);--backgroundFocus:var(--t432);--backgroundActive:var(--t431);--borderColor:var(--t433);--borderColorHover:var(--t434);--borderColorFocus:var(--t433);--borderColorPress:var(--t432);--placeholderColor:var(--t438);--colorTransparent:var(--t442);--color01:var(--t447);--color0075:var(--t448);--color005:var(--t449);--color0025:var(--t450);--color002:var(--t451);--color001:var(--t452);--background01:var(--t453);--background0075:var(--t454);--background005:var(--t455);--background0025:var(--t456);--background002:var(--t457);--background001:var(--t458);--outlineColor:var(--t459);}
|
|
576
|
+
@media(prefers-color-scheme:dark){
|
|
577
|
+
.t_pink {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t425);--background02:var(--t426);--background04:var(--t427);--background06:var(--t428);--background08:var(--t429);--color1:var(--t430);--color2:var(--t431);--color3:var(--t432);--color4:var(--t433);--color5:var(--t434);--color6:var(--t435);--color7:var(--t436);--color8:var(--t437);--color9:var(--t438);--color10:var(--t439);--color11:var(--t440);--color12:var(--t441);--color0:var(--t442);--color02:var(--t443);--color04:var(--t444);--color06:var(--t445);--color08:var(--t446);--color:var(--t441);--colorHover:var(--t446);--colorPress:var(--t441);--colorFocus:var(--t440);--background:var(--t431);--backgroundHover:var(--t432);--backgroundPress:var(--t430);--backgroundFocus:var(--t432);--backgroundActive:var(--t431);--borderColor:var(--t433);--borderColorHover:var(--t434);--borderColorFocus:var(--t433);--borderColorPress:var(--t432);--placeholderColor:var(--t438);--colorTransparent:var(--t442);--color01:var(--t447);--color0075:var(--t448);--color005:var(--t449);--color0025:var(--t450);--color002:var(--t451);--color001:var(--t452);--background01:var(--t453);--background0075:var(--t454);--background005:var(--t455);--background0025:var(--t456);--background002:var(--t457);--background001:var(--t458);--outlineColor:var(--t459);}
|
|
578
|
+
}
|
|
579
|
+
.t_dark_pink ::selection{background:var(--color5);color:var(--color11)}
|
|
580
|
+
: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(--t440);--colorHover:var(--t441);--colorPress:var(--t440);--colorFocus:var(--t439);--background:var(--t433);--backgroundHover:var(--t434);--backgroundPress:var(--t432);--backgroundFocus:var(--t436);--backgroundActive:var(--t433);--borderColor:var(--t435);--borderColorHover:var(--t436);--borderColorFocus:var(--t435);--borderColorPress:var(--t434);--color01:var(--t447);--color0075:var(--t448);--color005:var(--t449);--color0025:var(--t450);--color002:var(--t451);--color001:var(--t452);--background01:var(--t453);--background0075:var(--t454);--background005:var(--t455);--background0025:var(--t456);--background002:var(--t457);--background001:var(--t458);--background02:var(--t426);--background04:var(--t427);--background06:var(--t428);--background08:var(--t429);--outlineColor:var(--t459);}
|
|
581
|
+
@media(prefers-color-scheme:dark){
|
|
582
|
+
.t_pink_Button, .t_pink_SliderThumb, .t_pink_Switch, .t_pink_surface2 {--color:var(--t440);--colorHover:var(--t441);--colorPress:var(--t440);--colorFocus:var(--t439);--background:var(--t433);--backgroundHover:var(--t434);--backgroundPress:var(--t432);--backgroundFocus:var(--t436);--backgroundActive:var(--t433);--borderColor:var(--t435);--borderColorHover:var(--t436);--borderColorFocus:var(--t435);--borderColorPress:var(--t434);--color01:var(--t447);--color0075:var(--t448);--color005:var(--t449);--color0025:var(--t450);--color002:var(--t451);--color001:var(--t452);--background01:var(--t453);--background0075:var(--t454);--background005:var(--t455);--background0025:var(--t456);--background002:var(--t457);--background001:var(--t458);--background02:var(--t426);--background04:var(--t427);--background06:var(--t428);--background08:var(--t429);--outlineColor:var(--t459);}
|
|
583
|
+
}
|
|
584
|
+
: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(--t440);--colorHover:var(--t441);--colorPress:var(--t440);--colorFocus:var(--t439);--background:var(--t432);--backgroundHover:var(--t433);--backgroundPress:var(--t431);--backgroundFocus:var(--t434);--backgroundActive:var(--t432);--borderColor:var(--t434);--borderColorHover:var(--t435);--borderColorFocus:var(--t434);--borderColorPress:var(--t433);--color01:var(--t447);--color0075:var(--t448);--color005:var(--t449);--color0025:var(--t450);--color002:var(--t451);--color001:var(--t452);--background01:var(--t453);--background0075:var(--t454);--background005:var(--t455);--background0025:var(--t456);--background002:var(--t457);--background001:var(--t458);--background02:var(--t426);--background04:var(--t427);--background06:var(--t428);--background08:var(--t429);--outlineColor:var(--t459);}
|
|
585
|
+
@media(prefers-color-scheme:dark){
|
|
586
|
+
.t_pink_Input, .t_pink_Progress, .t_pink_Slider, .t_pink_TextArea, .t_pink_surface1 {--color:var(--t440);--colorHover:var(--t441);--colorPress:var(--t440);--colorFocus:var(--t439);--background:var(--t432);--backgroundHover:var(--t433);--backgroundPress:var(--t431);--backgroundFocus:var(--t434);--backgroundActive:var(--t432);--borderColor:var(--t434);--borderColorHover:var(--t435);--borderColorFocus:var(--t434);--borderColorPress:var(--t433);--color01:var(--t447);--color0075:var(--t448);--color005:var(--t449);--color0025:var(--t450);--color002:var(--t451);--color001:var(--t452);--background01:var(--t453);--background0075:var(--t454);--background005:var(--t455);--background0025:var(--t456);--background002:var(--t457);--background001:var(--t458);--background02:var(--t426);--background04:var(--t427);--background06:var(--t428);--background08:var(--t429);--outlineColor:var(--t459);}
|
|
587
|
+
}
|
|
588
|
+
: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(--t440);--colorHover:var(--t441);--colorPress:var(--t440);--colorFocus:var(--t439);--background:var(--t435);--backgroundHover:var(--t436);--backgroundPress:var(--t434);--backgroundFocus:var(--t440);--backgroundActive:var(--t435);--borderColor:var(--t437);--borderColorHover:var(--t438);--borderColorFocus:var(--t437);--borderColorPress:var(--t436);--color01:var(--t447);--color0075:var(--t448);--color005:var(--t449);--color0025:var(--t450);--color002:var(--t451);--color001:var(--t452);--background01:var(--t453);--background0075:var(--t454);--background005:var(--t455);--background0025:var(--t456);--background002:var(--t457);--background001:var(--t458);--background02:var(--t426);--background04:var(--t427);--background06:var(--t428);--background08:var(--t429);--outlineColor:var(--t459);}
|
|
589
|
+
@media(prefers-color-scheme:dark){
|
|
590
|
+
.t_pink_ProgressIndicator, .t_pink_SliderActive {--color:var(--t440);--colorHover:var(--t441);--colorPress:var(--t440);--colorFocus:var(--t439);--background:var(--t435);--backgroundHover:var(--t436);--backgroundPress:var(--t434);--backgroundFocus:var(--t440);--backgroundActive:var(--t435);--borderColor:var(--t437);--borderColorHover:var(--t438);--borderColorFocus:var(--t437);--borderColorPress:var(--t436);--color01:var(--t447);--color0075:var(--t448);--color005:var(--t449);--color0025:var(--t450);--color002:var(--t451);--color001:var(--t452);--background01:var(--t453);--background0075:var(--t454);--background005:var(--t455);--background0025:var(--t456);--background002:var(--t457);--background001:var(--t458);--background02:var(--t426);--background04:var(--t427);--background06:var(--t428);--background08:var(--t429);--outlineColor:var(--t459);}
|
|
591
|
+
}
|
|
592
|
+
: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(--t442);--background02:var(--t426);--background04:var(--t427);--background06:var(--t428);--background08:var(--t429);--color1:var(--t441);--color2:var(--t440);--color3:var(--t439);--color4:var(--t438);--color5:var(--t437);--color6:var(--t436);--color7:var(--t435);--color8:var(--t434);--color9:var(--t433);--color10:var(--t432);--color11:var(--t431);--color12:var(--t430);--color0:var(--t425);--color02:var(--t460);--color04:var(--t461);--color06:var(--t462);--color08:var(--t463);--color:var(--t430);--colorHover:var(--t463);--colorPress:var(--t430);--colorFocus:var(--t431);--background:var(--t440);--backgroundHover:var(--t439);--backgroundPress:var(--t441);--backgroundFocus:var(--t439);--backgroundActive:var(--t440);--borderColor:var(--t438);--borderColorHover:var(--t437);--borderColorFocus:var(--t438);--borderColorPress:var(--t439);--placeholderColor:var(--t433);--colorTransparent:var(--t425);--color01:var(--t447);--color0075:var(--t448);--color005:var(--t449);--color0025:var(--t450);--color002:var(--t451);--color001:var(--t452);--background01:var(--t453);--background0075:var(--t454);--background005:var(--t455);--background0025:var(--t456);--background002:var(--t457);--background001:var(--t458);--outlineColor:var(--t459);}
|
|
593
|
+
@media(prefers-color-scheme:dark){
|
|
594
|
+
.t_pink_SwitchThumb, .t_pink_Tooltip, .t_pink_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t442);--background02:var(--t426);--background04:var(--t427);--background06:var(--t428);--background08:var(--t429);--color1:var(--t441);--color2:var(--t440);--color3:var(--t439);--color4:var(--t438);--color5:var(--t437);--color6:var(--t436);--color7:var(--t435);--color8:var(--t434);--color9:var(--t433);--color10:var(--t432);--color11:var(--t431);--color12:var(--t430);--color0:var(--t425);--color02:var(--t460);--color04:var(--t461);--color06:var(--t462);--color08:var(--t463);--color:var(--t430);--colorHover:var(--t463);--colorPress:var(--t430);--colorFocus:var(--t431);--background:var(--t440);--backgroundHover:var(--t439);--backgroundPress:var(--t441);--backgroundFocus:var(--t439);--backgroundActive:var(--t440);--borderColor:var(--t438);--borderColorHover:var(--t437);--borderColorFocus:var(--t438);--borderColorPress:var(--t439);--placeholderColor:var(--t433);--colorTransparent:var(--t425);--color01:var(--t447);--color0075:var(--t448);--color005:var(--t449);--color0025:var(--t450);--color002:var(--t451);--color001:var(--t452);--background01:var(--t453);--background0075:var(--t454);--background005:var(--t455);--background0025:var(--t456);--background002:var(--t457);--background001:var(--t458);--outlineColor:var(--t459);}
|
|
595
|
+
}
|
|
596
|
+
.t_dark_pink_SwitchThumb ::selection, .t_dark_pink_Tooltip ::selection, .t_dark_pink_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
597
|
+
:root.t_dark .t_purple, :root.t_light .t_dark .t_purple, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t464);--background02:var(--t465);--background04:var(--t466);--background06:var(--t467);--background08:var(--t468);--color1:var(--t469);--color2:var(--t470);--color3:var(--t471);--color4:var(--t472);--color5:var(--t473);--color6:var(--t474);--color7:var(--t475);--color8:var(--t476);--color9:var(--t477);--color10:var(--t478);--color11:var(--t479);--color12:var(--t480);--color0:var(--t481);--color02:var(--t482);--color04:var(--t483);--color06:var(--t484);--color08:var(--t485);--color:var(--t480);--colorHover:var(--t485);--colorPress:var(--t480);--colorFocus:var(--t479);--background:var(--t470);--backgroundHover:var(--t471);--backgroundPress:var(--t469);--backgroundFocus:var(--t471);--backgroundActive:var(--t470);--borderColor:var(--t472);--borderColorHover:var(--t473);--borderColorFocus:var(--t472);--borderColorPress:var(--t471);--placeholderColor:var(--t477);--colorTransparent:var(--t481);--color01:var(--t486);--color0075:var(--t487);--color005:var(--t488);--color0025:var(--t489);--color002:var(--t490);--color001:var(--t491);--background01:var(--t492);--background0075:var(--t493);--background005:var(--t494);--background0025:var(--t495);--background002:var(--t496);--background001:var(--t497);--outlineColor:var(--t498);}
|
|
598
|
+
@media(prefers-color-scheme:dark){
|
|
599
|
+
.t_purple {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t464);--background02:var(--t465);--background04:var(--t466);--background06:var(--t467);--background08:var(--t468);--color1:var(--t469);--color2:var(--t470);--color3:var(--t471);--color4:var(--t472);--color5:var(--t473);--color6:var(--t474);--color7:var(--t475);--color8:var(--t476);--color9:var(--t477);--color10:var(--t478);--color11:var(--t479);--color12:var(--t480);--color0:var(--t481);--color02:var(--t482);--color04:var(--t483);--color06:var(--t484);--color08:var(--t485);--color:var(--t480);--colorHover:var(--t485);--colorPress:var(--t480);--colorFocus:var(--t479);--background:var(--t470);--backgroundHover:var(--t471);--backgroundPress:var(--t469);--backgroundFocus:var(--t471);--backgroundActive:var(--t470);--borderColor:var(--t472);--borderColorHover:var(--t473);--borderColorFocus:var(--t472);--borderColorPress:var(--t471);--placeholderColor:var(--t477);--colorTransparent:var(--t481);--color01:var(--t486);--color0075:var(--t487);--color005:var(--t488);--color0025:var(--t489);--color002:var(--t490);--color001:var(--t491);--background01:var(--t492);--background0075:var(--t493);--background005:var(--t494);--background0025:var(--t495);--background002:var(--t496);--background001:var(--t497);--outlineColor:var(--t498);}
|
|
600
|
+
}
|
|
601
|
+
.t_dark_purple ::selection{background:var(--color5);color:var(--color11)}
|
|
602
|
+
: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(--t479);--colorHover:var(--t480);--colorPress:var(--t479);--colorFocus:var(--t478);--background:var(--t472);--backgroundHover:var(--t473);--backgroundPress:var(--t471);--backgroundFocus:var(--t475);--backgroundActive:var(--t472);--borderColor:var(--t474);--borderColorHover:var(--t475);--borderColorFocus:var(--t474);--borderColorPress:var(--t473);--color01:var(--t486);--color0075:var(--t487);--color005:var(--t488);--color0025:var(--t489);--color002:var(--t490);--color001:var(--t491);--background01:var(--t492);--background0075:var(--t493);--background005:var(--t494);--background0025:var(--t495);--background002:var(--t496);--background001:var(--t497);--background02:var(--t465);--background04:var(--t466);--background06:var(--t467);--background08:var(--t468);--outlineColor:var(--t498);}
|
|
603
|
+
@media(prefers-color-scheme:dark){
|
|
604
|
+
.t_purple_Button, .t_purple_SliderThumb, .t_purple_Switch, .t_purple_surface2 {--color:var(--t479);--colorHover:var(--t480);--colorPress:var(--t479);--colorFocus:var(--t478);--background:var(--t472);--backgroundHover:var(--t473);--backgroundPress:var(--t471);--backgroundFocus:var(--t475);--backgroundActive:var(--t472);--borderColor:var(--t474);--borderColorHover:var(--t475);--borderColorFocus:var(--t474);--borderColorPress:var(--t473);--color01:var(--t486);--color0075:var(--t487);--color005:var(--t488);--color0025:var(--t489);--color002:var(--t490);--color001:var(--t491);--background01:var(--t492);--background0075:var(--t493);--background005:var(--t494);--background0025:var(--t495);--background002:var(--t496);--background001:var(--t497);--background02:var(--t465);--background04:var(--t466);--background06:var(--t467);--background08:var(--t468);--outlineColor:var(--t498);}
|
|
605
|
+
}
|
|
606
|
+
: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(--t479);--colorHover:var(--t480);--colorPress:var(--t479);--colorFocus:var(--t478);--background:var(--t471);--backgroundHover:var(--t472);--backgroundPress:var(--t470);--backgroundFocus:var(--t473);--backgroundActive:var(--t471);--borderColor:var(--t473);--borderColorHover:var(--t474);--borderColorFocus:var(--t473);--borderColorPress:var(--t472);--color01:var(--t486);--color0075:var(--t487);--color005:var(--t488);--color0025:var(--t489);--color002:var(--t490);--color001:var(--t491);--background01:var(--t492);--background0075:var(--t493);--background005:var(--t494);--background0025:var(--t495);--background002:var(--t496);--background001:var(--t497);--background02:var(--t465);--background04:var(--t466);--background06:var(--t467);--background08:var(--t468);--outlineColor:var(--t498);}
|
|
607
|
+
@media(prefers-color-scheme:dark){
|
|
608
|
+
.t_purple_Input, .t_purple_Progress, .t_purple_Slider, .t_purple_TextArea, .t_purple_surface1 {--color:var(--t479);--colorHover:var(--t480);--colorPress:var(--t479);--colorFocus:var(--t478);--background:var(--t471);--backgroundHover:var(--t472);--backgroundPress:var(--t470);--backgroundFocus:var(--t473);--backgroundActive:var(--t471);--borderColor:var(--t473);--borderColorHover:var(--t474);--borderColorFocus:var(--t473);--borderColorPress:var(--t472);--color01:var(--t486);--color0075:var(--t487);--color005:var(--t488);--color0025:var(--t489);--color002:var(--t490);--color001:var(--t491);--background01:var(--t492);--background0075:var(--t493);--background005:var(--t494);--background0025:var(--t495);--background002:var(--t496);--background001:var(--t497);--background02:var(--t465);--background04:var(--t466);--background06:var(--t467);--background08:var(--t468);--outlineColor:var(--t498);}
|
|
609
|
+
}
|
|
610
|
+
: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(--t479);--colorHover:var(--t480);--colorPress:var(--t479);--colorFocus:var(--t478);--background:var(--t474);--backgroundHover:var(--t475);--backgroundPress:var(--t473);--backgroundFocus:var(--t479);--backgroundActive:var(--t474);--borderColor:var(--t476);--borderColorHover:var(--t477);--borderColorFocus:var(--t476);--borderColorPress:var(--t475);--color01:var(--t486);--color0075:var(--t487);--color005:var(--t488);--color0025:var(--t489);--color002:var(--t490);--color001:var(--t491);--background01:var(--t492);--background0075:var(--t493);--background005:var(--t494);--background0025:var(--t495);--background002:var(--t496);--background001:var(--t497);--background02:var(--t465);--background04:var(--t466);--background06:var(--t467);--background08:var(--t468);--outlineColor:var(--t498);}
|
|
611
|
+
@media(prefers-color-scheme:dark){
|
|
612
|
+
.t_purple_ProgressIndicator, .t_purple_SliderActive {--color:var(--t479);--colorHover:var(--t480);--colorPress:var(--t479);--colorFocus:var(--t478);--background:var(--t474);--backgroundHover:var(--t475);--backgroundPress:var(--t473);--backgroundFocus:var(--t479);--backgroundActive:var(--t474);--borderColor:var(--t476);--borderColorHover:var(--t477);--borderColorFocus:var(--t476);--borderColorPress:var(--t475);--color01:var(--t486);--color0075:var(--t487);--color005:var(--t488);--color0025:var(--t489);--color002:var(--t490);--color001:var(--t491);--background01:var(--t492);--background0075:var(--t493);--background005:var(--t494);--background0025:var(--t495);--background002:var(--t496);--background001:var(--t497);--background02:var(--t465);--background04:var(--t466);--background06:var(--t467);--background08:var(--t468);--outlineColor:var(--t498);}
|
|
613
|
+
}
|
|
614
|
+
: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(--t481);--background02:var(--t465);--background04:var(--t466);--background06:var(--t467);--background08:var(--t468);--color1:var(--t480);--color2:var(--t479);--color3:var(--t478);--color4:var(--t477);--color5:var(--t476);--color6:var(--t475);--color7:var(--t474);--color8:var(--t473);--color9:var(--t472);--color10:var(--t471);--color11:var(--t470);--color12:var(--t469);--color0:var(--t464);--color02:var(--t499);--color04:var(--t500);--color06:var(--t501);--color08:var(--t502);--color:var(--t469);--colorHover:var(--t502);--colorPress:var(--t469);--colorFocus:var(--t470);--background:var(--t479);--backgroundHover:var(--t478);--backgroundPress:var(--t480);--backgroundFocus:var(--t478);--backgroundActive:var(--t479);--borderColor:var(--t477);--borderColorHover:var(--t476);--borderColorFocus:var(--t477);--borderColorPress:var(--t478);--placeholderColor:var(--t472);--colorTransparent:var(--t464);--color01:var(--t486);--color0075:var(--t487);--color005:var(--t488);--color0025:var(--t489);--color002:var(--t490);--color001:var(--t491);--background01:var(--t492);--background0075:var(--t493);--background005:var(--t494);--background0025:var(--t495);--background002:var(--t496);--background001:var(--t497);--outlineColor:var(--t498);}
|
|
615
|
+
@media(prefers-color-scheme:dark){
|
|
616
|
+
.t_purple_SwitchThumb, .t_purple_Tooltip, .t_purple_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t481);--background02:var(--t465);--background04:var(--t466);--background06:var(--t467);--background08:var(--t468);--color1:var(--t480);--color2:var(--t479);--color3:var(--t478);--color4:var(--t477);--color5:var(--t476);--color6:var(--t475);--color7:var(--t474);--color8:var(--t473);--color9:var(--t472);--color10:var(--t471);--color11:var(--t470);--color12:var(--t469);--color0:var(--t464);--color02:var(--t499);--color04:var(--t500);--color06:var(--t501);--color08:var(--t502);--color:var(--t469);--colorHover:var(--t502);--colorPress:var(--t469);--colorFocus:var(--t470);--background:var(--t479);--backgroundHover:var(--t478);--backgroundPress:var(--t480);--backgroundFocus:var(--t478);--backgroundActive:var(--t479);--borderColor:var(--t477);--borderColorHover:var(--t476);--borderColorFocus:var(--t477);--borderColorPress:var(--t478);--placeholderColor:var(--t472);--colorTransparent:var(--t464);--color01:var(--t486);--color0075:var(--t487);--color005:var(--t488);--color0025:var(--t489);--color002:var(--t490);--color001:var(--t491);--background01:var(--t492);--background0075:var(--t493);--background005:var(--t494);--background0025:var(--t495);--background002:var(--t496);--background001:var(--t497);--outlineColor:var(--t498);}
|
|
617
|
+
}
|
|
618
|
+
.t_dark_purple_SwitchThumb ::selection, .t_dark_purple_Tooltip ::selection, .t_dark_purple_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
619
|
+
:root.t_dark .t_red, :root.t_light .t_dark .t_red, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t503);--background02:var(--t504);--background04:var(--t505);--background06:var(--t506);--background08:var(--t507);--color1:var(--t508);--color2:var(--t509);--color3:var(--t510);--color4:var(--t511);--color5:var(--t512);--color6:var(--t513);--color7:var(--t514);--color8:var(--t515);--color9:var(--t516);--color10:var(--t517);--color11:var(--t518);--color12:var(--t519);--color0:var(--t520);--color02:var(--t521);--color04:var(--t522);--color06:var(--t523);--color08:var(--t524);--color:var(--t519);--colorHover:var(--t524);--colorPress:var(--t519);--colorFocus:var(--t518);--background:var(--t509);--backgroundHover:var(--t510);--backgroundPress:var(--t508);--backgroundFocus:var(--t510);--backgroundActive:var(--t509);--borderColor:var(--t511);--borderColorHover:var(--t512);--borderColorFocus:var(--t511);--borderColorPress:var(--t510);--placeholderColor:var(--t516);--colorTransparent:var(--t520);--color01:var(--t525);--color0075:var(--t526);--color005:var(--t527);--color0025:var(--t528);--color002:var(--t529);--color001:var(--t530);--background01:var(--t531);--background0075:var(--t532);--background005:var(--t533);--background0025:var(--t534);--background002:var(--t535);--background001:var(--t536);--outlineColor:var(--t537);}
|
|
620
|
+
@media(prefers-color-scheme:dark){
|
|
621
|
+
.t_red {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t503);--background02:var(--t504);--background04:var(--t505);--background06:var(--t506);--background08:var(--t507);--color1:var(--t508);--color2:var(--t509);--color3:var(--t510);--color4:var(--t511);--color5:var(--t512);--color6:var(--t513);--color7:var(--t514);--color8:var(--t515);--color9:var(--t516);--color10:var(--t517);--color11:var(--t518);--color12:var(--t519);--color0:var(--t520);--color02:var(--t521);--color04:var(--t522);--color06:var(--t523);--color08:var(--t524);--color:var(--t519);--colorHover:var(--t524);--colorPress:var(--t519);--colorFocus:var(--t518);--background:var(--t509);--backgroundHover:var(--t510);--backgroundPress:var(--t508);--backgroundFocus:var(--t510);--backgroundActive:var(--t509);--borderColor:var(--t511);--borderColorHover:var(--t512);--borderColorFocus:var(--t511);--borderColorPress:var(--t510);--placeholderColor:var(--t516);--colorTransparent:var(--t520);--color01:var(--t525);--color0075:var(--t526);--color005:var(--t527);--color0025:var(--t528);--color002:var(--t529);--color001:var(--t530);--background01:var(--t531);--background0075:var(--t532);--background005:var(--t533);--background0025:var(--t534);--background002:var(--t535);--background001:var(--t536);--outlineColor:var(--t537);}
|
|
622
|
+
}
|
|
623
|
+
.t_dark_red ::selection{background:var(--color5);color:var(--color11)}
|
|
624
|
+
: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(--t518);--colorHover:var(--t519);--colorPress:var(--t518);--colorFocus:var(--t517);--background:var(--t511);--backgroundHover:var(--t512);--backgroundPress:var(--t510);--backgroundFocus:var(--t514);--backgroundActive:var(--t511);--borderColor:var(--t513);--borderColorHover:var(--t514);--borderColorFocus:var(--t513);--borderColorPress:var(--t512);--color01:var(--t525);--color0075:var(--t526);--color005:var(--t527);--color0025:var(--t528);--color002:var(--t529);--color001:var(--t530);--background01:var(--t531);--background0075:var(--t532);--background005:var(--t533);--background0025:var(--t534);--background002:var(--t535);--background001:var(--t536);--background02:var(--t504);--background04:var(--t505);--background06:var(--t506);--background08:var(--t507);--outlineColor:var(--t537);}
|
|
625
|
+
@media(prefers-color-scheme:dark){
|
|
626
|
+
.t_red_Button, .t_red_SliderThumb, .t_red_Switch, .t_red_surface2 {--color:var(--t518);--colorHover:var(--t519);--colorPress:var(--t518);--colorFocus:var(--t517);--background:var(--t511);--backgroundHover:var(--t512);--backgroundPress:var(--t510);--backgroundFocus:var(--t514);--backgroundActive:var(--t511);--borderColor:var(--t513);--borderColorHover:var(--t514);--borderColorFocus:var(--t513);--borderColorPress:var(--t512);--color01:var(--t525);--color0075:var(--t526);--color005:var(--t527);--color0025:var(--t528);--color002:var(--t529);--color001:var(--t530);--background01:var(--t531);--background0075:var(--t532);--background005:var(--t533);--background0025:var(--t534);--background002:var(--t535);--background001:var(--t536);--background02:var(--t504);--background04:var(--t505);--background06:var(--t506);--background08:var(--t507);--outlineColor:var(--t537);}
|
|
627
|
+
}
|
|
628
|
+
: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(--t518);--colorHover:var(--t519);--colorPress:var(--t518);--colorFocus:var(--t517);--background:var(--t510);--backgroundHover:var(--t511);--backgroundPress:var(--t509);--backgroundFocus:var(--t512);--backgroundActive:var(--t510);--borderColor:var(--t512);--borderColorHover:var(--t513);--borderColorFocus:var(--t512);--borderColorPress:var(--t511);--color01:var(--t525);--color0075:var(--t526);--color005:var(--t527);--color0025:var(--t528);--color002:var(--t529);--color001:var(--t530);--background01:var(--t531);--background0075:var(--t532);--background005:var(--t533);--background0025:var(--t534);--background002:var(--t535);--background001:var(--t536);--background02:var(--t504);--background04:var(--t505);--background06:var(--t506);--background08:var(--t507);--outlineColor:var(--t537);}
|
|
629
|
+
@media(prefers-color-scheme:dark){
|
|
630
|
+
.t_red_Input, .t_red_Progress, .t_red_Slider, .t_red_TextArea, .t_red_surface1 {--color:var(--t518);--colorHover:var(--t519);--colorPress:var(--t518);--colorFocus:var(--t517);--background:var(--t510);--backgroundHover:var(--t511);--backgroundPress:var(--t509);--backgroundFocus:var(--t512);--backgroundActive:var(--t510);--borderColor:var(--t512);--borderColorHover:var(--t513);--borderColorFocus:var(--t512);--borderColorPress:var(--t511);--color01:var(--t525);--color0075:var(--t526);--color005:var(--t527);--color0025:var(--t528);--color002:var(--t529);--color001:var(--t530);--background01:var(--t531);--background0075:var(--t532);--background005:var(--t533);--background0025:var(--t534);--background002:var(--t535);--background001:var(--t536);--background02:var(--t504);--background04:var(--t505);--background06:var(--t506);--background08:var(--t507);--outlineColor:var(--t537);}
|
|
631
|
+
}
|
|
632
|
+
: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(--t518);--colorHover:var(--t519);--colorPress:var(--t518);--colorFocus:var(--t517);--background:var(--t513);--backgroundHover:var(--t514);--backgroundPress:var(--t512);--backgroundFocus:var(--t518);--backgroundActive:var(--t513);--borderColor:var(--t515);--borderColorHover:var(--t516);--borderColorFocus:var(--t515);--borderColorPress:var(--t514);--color01:var(--t525);--color0075:var(--t526);--color005:var(--t527);--color0025:var(--t528);--color002:var(--t529);--color001:var(--t530);--background01:var(--t531);--background0075:var(--t532);--background005:var(--t533);--background0025:var(--t534);--background002:var(--t535);--background001:var(--t536);--background02:var(--t504);--background04:var(--t505);--background06:var(--t506);--background08:var(--t507);--outlineColor:var(--t537);}
|
|
633
|
+
@media(prefers-color-scheme:dark){
|
|
634
|
+
.t_red_ProgressIndicator, .t_red_SliderActive {--color:var(--t518);--colorHover:var(--t519);--colorPress:var(--t518);--colorFocus:var(--t517);--background:var(--t513);--backgroundHover:var(--t514);--backgroundPress:var(--t512);--backgroundFocus:var(--t518);--backgroundActive:var(--t513);--borderColor:var(--t515);--borderColorHover:var(--t516);--borderColorFocus:var(--t515);--borderColorPress:var(--t514);--color01:var(--t525);--color0075:var(--t526);--color005:var(--t527);--color0025:var(--t528);--color002:var(--t529);--color001:var(--t530);--background01:var(--t531);--background0075:var(--t532);--background005:var(--t533);--background0025:var(--t534);--background002:var(--t535);--background001:var(--t536);--background02:var(--t504);--background04:var(--t505);--background06:var(--t506);--background08:var(--t507);--outlineColor:var(--t537);}
|
|
635
|
+
}
|
|
636
|
+
: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(--t520);--background02:var(--t504);--background04:var(--t505);--background06:var(--t506);--background08:var(--t507);--color1:var(--t519);--color2:var(--t518);--color3:var(--t517);--color4:var(--t516);--color5:var(--t515);--color6:var(--t514);--color7:var(--t513);--color8:var(--t512);--color9:var(--t511);--color10:var(--t510);--color11:var(--t509);--color12:var(--t508);--color0:var(--t503);--color02:var(--t538);--color04:var(--t539);--color06:var(--t540);--color08:var(--t541);--color:var(--t508);--colorHover:var(--t541);--colorPress:var(--t508);--colorFocus:var(--t509);--background:var(--t518);--backgroundHover:var(--t517);--backgroundPress:var(--t519);--backgroundFocus:var(--t517);--backgroundActive:var(--t518);--borderColor:var(--t516);--borderColorHover:var(--t515);--borderColorFocus:var(--t516);--borderColorPress:var(--t517);--placeholderColor:var(--t511);--colorTransparent:var(--t503);--color01:var(--t525);--color0075:var(--t526);--color005:var(--t527);--color0025:var(--t528);--color002:var(--t529);--color001:var(--t530);--background01:var(--t531);--background0075:var(--t532);--background005:var(--t533);--background0025:var(--t534);--background002:var(--t535);--background001:var(--t536);--outlineColor:var(--t537);}
|
|
637
|
+
@media(prefers-color-scheme:dark){
|
|
638
|
+
.t_red_SwitchThumb, .t_red_Tooltip, .t_red_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t520);--background02:var(--t504);--background04:var(--t505);--background06:var(--t506);--background08:var(--t507);--color1:var(--t519);--color2:var(--t518);--color3:var(--t517);--color4:var(--t516);--color5:var(--t515);--color6:var(--t514);--color7:var(--t513);--color8:var(--t512);--color9:var(--t511);--color10:var(--t510);--color11:var(--t509);--color12:var(--t508);--color0:var(--t503);--color02:var(--t538);--color04:var(--t539);--color06:var(--t540);--color08:var(--t541);--color:var(--t508);--colorHover:var(--t541);--colorPress:var(--t508);--colorFocus:var(--t509);--background:var(--t518);--backgroundHover:var(--t517);--backgroundPress:var(--t519);--backgroundFocus:var(--t517);--backgroundActive:var(--t518);--borderColor:var(--t516);--borderColorHover:var(--t515);--borderColorFocus:var(--t516);--borderColorPress:var(--t517);--placeholderColor:var(--t511);--colorTransparent:var(--t503);--color01:var(--t525);--color0075:var(--t526);--color005:var(--t527);--color0025:var(--t528);--color002:var(--t529);--color001:var(--t530);--background01:var(--t531);--background0075:var(--t532);--background005:var(--t533);--background0025:var(--t534);--background002:var(--t535);--background001:var(--t536);--outlineColor:var(--t537);}
|
|
639
|
+
}
|
|
640
|
+
.t_dark_red_SwitchThumb ::selection, .t_dark_red_Tooltip ::selection, .t_dark_red_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
641
|
+
:root.t_dark .t_teal, :root.t_light .t_dark .t_teal, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t542);--background02:var(--t543);--background04:var(--t544);--background06:var(--t545);--background08:var(--t546);--color1:var(--t547);--color2:var(--t548);--color3:var(--t549);--color4:var(--t550);--color5:var(--t551);--color6:var(--t552);--color7:var(--t553);--color8:var(--t554);--color9:var(--t555);--color10:var(--t556);--color11:var(--t557);--color12:var(--t558);--color0:var(--t559);--color02:var(--t560);--color04:var(--t561);--color06:var(--t562);--color08:var(--t563);--color:var(--t558);--colorHover:var(--t563);--colorPress:var(--t558);--colorFocus:var(--t557);--background:var(--t548);--backgroundHover:var(--t549);--backgroundPress:var(--t547);--backgroundFocus:var(--t549);--backgroundActive:var(--t548);--borderColor:var(--t550);--borderColorHover:var(--t551);--borderColorFocus:var(--t550);--borderColorPress:var(--t549);--placeholderColor:var(--t555);--colorTransparent:var(--t559);--color01:var(--t564);--color0075:var(--t565);--color005:var(--t566);--color0025:var(--t567);--color002:var(--t568);--color001:var(--t569);--background01:var(--t570);--background0075:var(--t571);--background005:var(--t572);--background0025:var(--t573);--background002:var(--t574);--background001:var(--t575);--outlineColor:var(--t576);}
|
|
642
|
+
@media(prefers-color-scheme:dark){
|
|
643
|
+
.t_teal {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t542);--background02:var(--t543);--background04:var(--t544);--background06:var(--t545);--background08:var(--t546);--color1:var(--t547);--color2:var(--t548);--color3:var(--t549);--color4:var(--t550);--color5:var(--t551);--color6:var(--t552);--color7:var(--t553);--color8:var(--t554);--color9:var(--t555);--color10:var(--t556);--color11:var(--t557);--color12:var(--t558);--color0:var(--t559);--color02:var(--t560);--color04:var(--t561);--color06:var(--t562);--color08:var(--t563);--color:var(--t558);--colorHover:var(--t563);--colorPress:var(--t558);--colorFocus:var(--t557);--background:var(--t548);--backgroundHover:var(--t549);--backgroundPress:var(--t547);--backgroundFocus:var(--t549);--backgroundActive:var(--t548);--borderColor:var(--t550);--borderColorHover:var(--t551);--borderColorFocus:var(--t550);--borderColorPress:var(--t549);--placeholderColor:var(--t555);--colorTransparent:var(--t559);--color01:var(--t564);--color0075:var(--t565);--color005:var(--t566);--color0025:var(--t567);--color002:var(--t568);--color001:var(--t569);--background01:var(--t570);--background0075:var(--t571);--background005:var(--t572);--background0025:var(--t573);--background002:var(--t574);--background001:var(--t575);--outlineColor:var(--t576);}
|
|
644
|
+
}
|
|
645
|
+
.t_dark_teal ::selection{background:var(--color5);color:var(--color11)}
|
|
646
|
+
: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(--t557);--colorHover:var(--t558);--colorPress:var(--t557);--colorFocus:var(--t556);--background:var(--t550);--backgroundHover:var(--t551);--backgroundPress:var(--t549);--backgroundFocus:var(--t553);--backgroundActive:var(--t550);--borderColor:var(--t552);--borderColorHover:var(--t553);--borderColorFocus:var(--t552);--borderColorPress:var(--t551);--color01:var(--t564);--color0075:var(--t565);--color005:var(--t566);--color0025:var(--t567);--color002:var(--t568);--color001:var(--t569);--background01:var(--t570);--background0075:var(--t571);--background005:var(--t572);--background0025:var(--t573);--background002:var(--t574);--background001:var(--t575);--background02:var(--t543);--background04:var(--t544);--background06:var(--t545);--background08:var(--t546);--outlineColor:var(--t576);}
|
|
647
|
+
@media(prefers-color-scheme:dark){
|
|
648
|
+
.t_teal_Button, .t_teal_SliderThumb, .t_teal_Switch, .t_teal_surface2 {--color:var(--t557);--colorHover:var(--t558);--colorPress:var(--t557);--colorFocus:var(--t556);--background:var(--t550);--backgroundHover:var(--t551);--backgroundPress:var(--t549);--backgroundFocus:var(--t553);--backgroundActive:var(--t550);--borderColor:var(--t552);--borderColorHover:var(--t553);--borderColorFocus:var(--t552);--borderColorPress:var(--t551);--color01:var(--t564);--color0075:var(--t565);--color005:var(--t566);--color0025:var(--t567);--color002:var(--t568);--color001:var(--t569);--background01:var(--t570);--background0075:var(--t571);--background005:var(--t572);--background0025:var(--t573);--background002:var(--t574);--background001:var(--t575);--background02:var(--t543);--background04:var(--t544);--background06:var(--t545);--background08:var(--t546);--outlineColor:var(--t576);}
|
|
649
|
+
}
|
|
650
|
+
: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(--t557);--colorHover:var(--t558);--colorPress:var(--t557);--colorFocus:var(--t556);--background:var(--t549);--backgroundHover:var(--t550);--backgroundPress:var(--t548);--backgroundFocus:var(--t551);--backgroundActive:var(--t549);--borderColor:var(--t551);--borderColorHover:var(--t552);--borderColorFocus:var(--t551);--borderColorPress:var(--t550);--color01:var(--t564);--color0075:var(--t565);--color005:var(--t566);--color0025:var(--t567);--color002:var(--t568);--color001:var(--t569);--background01:var(--t570);--background0075:var(--t571);--background005:var(--t572);--background0025:var(--t573);--background002:var(--t574);--background001:var(--t575);--background02:var(--t543);--background04:var(--t544);--background06:var(--t545);--background08:var(--t546);--outlineColor:var(--t576);}
|
|
651
|
+
@media(prefers-color-scheme:dark){
|
|
652
|
+
.t_teal_Input, .t_teal_Progress, .t_teal_Slider, .t_teal_TextArea, .t_teal_surface1 {--color:var(--t557);--colorHover:var(--t558);--colorPress:var(--t557);--colorFocus:var(--t556);--background:var(--t549);--backgroundHover:var(--t550);--backgroundPress:var(--t548);--backgroundFocus:var(--t551);--backgroundActive:var(--t549);--borderColor:var(--t551);--borderColorHover:var(--t552);--borderColorFocus:var(--t551);--borderColorPress:var(--t550);--color01:var(--t564);--color0075:var(--t565);--color005:var(--t566);--color0025:var(--t567);--color002:var(--t568);--color001:var(--t569);--background01:var(--t570);--background0075:var(--t571);--background005:var(--t572);--background0025:var(--t573);--background002:var(--t574);--background001:var(--t575);--background02:var(--t543);--background04:var(--t544);--background06:var(--t545);--background08:var(--t546);--outlineColor:var(--t576);}
|
|
653
|
+
}
|
|
654
|
+
: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(--t557);--colorHover:var(--t558);--colorPress:var(--t557);--colorFocus:var(--t556);--background:var(--t552);--backgroundHover:var(--t553);--backgroundPress:var(--t551);--backgroundFocus:var(--t557);--backgroundActive:var(--t552);--borderColor:var(--t554);--borderColorHover:var(--t555);--borderColorFocus:var(--t554);--borderColorPress:var(--t553);--color01:var(--t564);--color0075:var(--t565);--color005:var(--t566);--color0025:var(--t567);--color002:var(--t568);--color001:var(--t569);--background01:var(--t570);--background0075:var(--t571);--background005:var(--t572);--background0025:var(--t573);--background002:var(--t574);--background001:var(--t575);--background02:var(--t543);--background04:var(--t544);--background06:var(--t545);--background08:var(--t546);--outlineColor:var(--t576);}
|
|
655
|
+
@media(prefers-color-scheme:dark){
|
|
656
|
+
.t_teal_ProgressIndicator, .t_teal_SliderActive {--color:var(--t557);--colorHover:var(--t558);--colorPress:var(--t557);--colorFocus:var(--t556);--background:var(--t552);--backgroundHover:var(--t553);--backgroundPress:var(--t551);--backgroundFocus:var(--t557);--backgroundActive:var(--t552);--borderColor:var(--t554);--borderColorHover:var(--t555);--borderColorFocus:var(--t554);--borderColorPress:var(--t553);--color01:var(--t564);--color0075:var(--t565);--color005:var(--t566);--color0025:var(--t567);--color002:var(--t568);--color001:var(--t569);--background01:var(--t570);--background0075:var(--t571);--background005:var(--t572);--background0025:var(--t573);--background002:var(--t574);--background001:var(--t575);--background02:var(--t543);--background04:var(--t544);--background06:var(--t545);--background08:var(--t546);--outlineColor:var(--t576);}
|
|
657
|
+
}
|
|
658
|
+
: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(--t559);--background02:var(--t543);--background04:var(--t544);--background06:var(--t545);--background08:var(--t546);--color1:var(--t558);--color2:var(--t557);--color3:var(--t556);--color4:var(--t555);--color5:var(--t554);--color6:var(--t553);--color7:var(--t552);--color8:var(--t551);--color9:var(--t550);--color10:var(--t549);--color11:var(--t548);--color12:var(--t547);--color0:var(--t542);--color02:var(--t577);--color04:var(--t578);--color06:var(--t579);--color08:var(--t580);--color:var(--t547);--colorHover:var(--t580);--colorPress:var(--t547);--colorFocus:var(--t548);--background:var(--t557);--backgroundHover:var(--t556);--backgroundPress:var(--t558);--backgroundFocus:var(--t556);--backgroundActive:var(--t557);--borderColor:var(--t555);--borderColorHover:var(--t554);--borderColorFocus:var(--t555);--borderColorPress:var(--t556);--placeholderColor:var(--t550);--colorTransparent:var(--t542);--color01:var(--t564);--color0075:var(--t565);--color005:var(--t566);--color0025:var(--t567);--color002:var(--t568);--color001:var(--t569);--background01:var(--t570);--background0075:var(--t571);--background005:var(--t572);--background0025:var(--t573);--background002:var(--t574);--background001:var(--t575);--outlineColor:var(--t576);}
|
|
659
|
+
@media(prefers-color-scheme:dark){
|
|
660
|
+
.t_teal_SwitchThumb, .t_teal_Tooltip, .t_teal_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t559);--background02:var(--t543);--background04:var(--t544);--background06:var(--t545);--background08:var(--t546);--color1:var(--t558);--color2:var(--t557);--color3:var(--t556);--color4:var(--t555);--color5:var(--t554);--color6:var(--t553);--color7:var(--t552);--color8:var(--t551);--color9:var(--t550);--color10:var(--t549);--color11:var(--t548);--color12:var(--t547);--color0:var(--t542);--color02:var(--t577);--color04:var(--t578);--color06:var(--t579);--color08:var(--t580);--color:var(--t547);--colorHover:var(--t580);--colorPress:var(--t547);--colorFocus:var(--t548);--background:var(--t557);--backgroundHover:var(--t556);--backgroundPress:var(--t558);--backgroundFocus:var(--t556);--backgroundActive:var(--t557);--borderColor:var(--t555);--borderColorHover:var(--t554);--borderColorFocus:var(--t555);--borderColorPress:var(--t556);--placeholderColor:var(--t550);--colorTransparent:var(--t542);--color01:var(--t564);--color0075:var(--t565);--color005:var(--t566);--color0025:var(--t567);--color002:var(--t568);--color001:var(--t569);--background01:var(--t570);--background0075:var(--t571);--background005:var(--t572);--background0025:var(--t573);--background002:var(--t574);--background001:var(--t575);--outlineColor:var(--t576);}
|
|
661
|
+
}
|
|
662
|
+
.t_dark_teal_SwitchThumb ::selection, .t_dark_teal_Tooltip ::selection, .t_dark_teal_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
663
|
+
: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(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--color1:var(--t17);--color2:var(--t189);--color3:var(--t1);--color4:var(--t190);--color5:var(--t16);--color6:var(--t191);--color7:var(--t192);--color8:var(--t193);--color9:var(--t194);--color10:var(--t0);--color11:var(--t10);--color12:var(--t195);--color0:var(--t217);--color02:var(--t218);--color04:var(--t219);--color06:var(--t220);--color08:var(--t221);--color:var(--t195);--colorHover:var(--t221);--colorPress:var(--t195);--colorFocus:var(--t10);--background:var(--t189);--backgroundHover:var(--t1);--backgroundPress:var(--t17);--backgroundFocus:var(--t1);--backgroundActive:var(--t189);--borderColor:var(--t190);--borderColorHover:var(--t16);--borderColorFocus:var(--t190);--borderColorPress:var(--t1);--placeholderColor:var(--t194);--colorTransparent:var(--t217);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--outlineColor:var(--t234);}
|
|
664
|
+
@media(prefers-color-scheme:dark){
|
|
665
|
+
.t_white {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t18);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--color1:var(--t17);--color2:var(--t189);--color3:var(--t1);--color4:var(--t190);--color5:var(--t16);--color6:var(--t191);--color7:var(--t192);--color8:var(--t193);--color9:var(--t194);--color10:var(--t0);--color11:var(--t10);--color12:var(--t195);--color0:var(--t217);--color02:var(--t218);--color04:var(--t219);--color06:var(--t220);--color08:var(--t221);--color:var(--t195);--colorHover:var(--t221);--colorPress:var(--t195);--colorFocus:var(--t10);--background:var(--t189);--backgroundHover:var(--t1);--backgroundPress:var(--t17);--backgroundFocus:var(--t1);--backgroundActive:var(--t189);--borderColor:var(--t190);--borderColorHover:var(--t16);--borderColorFocus:var(--t190);--borderColorPress:var(--t1);--placeholderColor:var(--t194);--colorTransparent:var(--t217);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--outlineColor:var(--t234);}
|
|
666
|
+
}
|
|
667
|
+
.t_dark_white ::selection{background:var(--color5);color:var(--color11)}
|
|
668
|
+
: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(--t10);--colorHover:var(--t195);--colorPress:var(--t10);--colorFocus:var(--t0);--background:var(--t190);--backgroundHover:var(--t16);--backgroundPress:var(--t1);--backgroundFocus:var(--t192);--backgroundActive:var(--t190);--borderColor:var(--t191);--borderColorHover:var(--t192);--borderColorFocus:var(--t191);--borderColorPress:var(--t16);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--outlineColor:var(--t234);}
|
|
669
|
+
@media(prefers-color-scheme:dark){
|
|
670
|
+
.t_white_Button, .t_white_SliderThumb, .t_white_Switch, .t_white_surface2 {--color:var(--t10);--colorHover:var(--t195);--colorPress:var(--t10);--colorFocus:var(--t0);--background:var(--t190);--backgroundHover:var(--t16);--backgroundPress:var(--t1);--backgroundFocus:var(--t192);--backgroundActive:var(--t190);--borderColor:var(--t191);--borderColorHover:var(--t192);--borderColorFocus:var(--t191);--borderColorPress:var(--t16);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--outlineColor:var(--t234);}
|
|
671
|
+
}
|
|
672
|
+
: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(--t10);--colorHover:var(--t195);--colorPress:var(--t10);--colorFocus:var(--t0);--background:var(--t1);--backgroundHover:var(--t190);--backgroundPress:var(--t189);--backgroundFocus:var(--t16);--backgroundActive:var(--t1);--borderColor:var(--t16);--borderColorHover:var(--t191);--borderColorFocus:var(--t16);--borderColorPress:var(--t190);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--outlineColor:var(--t234);}
|
|
673
|
+
@media(prefers-color-scheme:dark){
|
|
674
|
+
.t_white_Input, .t_white_Progress, .t_white_Slider, .t_white_TextArea, .t_white_surface1 {--color:var(--t10);--colorHover:var(--t195);--colorPress:var(--t10);--colorFocus:var(--t0);--background:var(--t1);--backgroundHover:var(--t190);--backgroundPress:var(--t189);--backgroundFocus:var(--t16);--backgroundActive:var(--t1);--borderColor:var(--t16);--borderColorHover:var(--t191);--borderColorFocus:var(--t16);--borderColorPress:var(--t190);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--outlineColor:var(--t234);}
|
|
675
|
+
}
|
|
676
|
+
: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(--t10);--colorHover:var(--t195);--colorPress:var(--t10);--colorFocus:var(--t0);--background:var(--t191);--backgroundHover:var(--t192);--backgroundPress:var(--t16);--backgroundFocus:var(--t10);--backgroundActive:var(--t191);--borderColor:var(--t193);--borderColorHover:var(--t194);--borderColorFocus:var(--t193);--borderColorPress:var(--t192);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--outlineColor:var(--t234);}
|
|
677
|
+
@media(prefers-color-scheme:dark){
|
|
678
|
+
.t_white_ProgressIndicator, .t_white_SliderActive {--color:var(--t10);--colorHover:var(--t195);--colorPress:var(--t10);--colorFocus:var(--t0);--background:var(--t191);--backgroundHover:var(--t192);--backgroundPress:var(--t16);--backgroundFocus:var(--t10);--backgroundActive:var(--t191);--borderColor:var(--t193);--borderColorHover:var(--t194);--borderColorFocus:var(--t193);--borderColorPress:var(--t192);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--outlineColor:var(--t234);}
|
|
679
|
+
}
|
|
680
|
+
: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(--t217);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--color1:var(--t195);--color2:var(--t10);--color3:var(--t0);--color4:var(--t194);--color5:var(--t193);--color6:var(--t192);--color7:var(--t191);--color8:var(--t16);--color9:var(--t190);--color10:var(--t1);--color11:var(--t189);--color12:var(--t17);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t17);--colorHover:var(--t22);--colorPress:var(--t17);--colorFocus:var(--t189);--background:var(--t10);--backgroundHover:var(--t0);--backgroundPress:var(--t195);--backgroundFocus:var(--t0);--backgroundActive:var(--t10);--borderColor:var(--t194);--borderColorHover:var(--t193);--borderColorFocus:var(--t194);--borderColorPress:var(--t0);--placeholderColor:var(--t190);--colorTransparent:var(--t18);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--outlineColor:var(--t234);}
|
|
681
|
+
@media(prefers-color-scheme:dark){
|
|
682
|
+
.t_white_SwitchThumb, .t_white_Tooltip, .t_white_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t217);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--color1:var(--t195);--color2:var(--t10);--color3:var(--t0);--color4:var(--t194);--color5:var(--t193);--color6:var(--t192);--color7:var(--t191);--color8:var(--t16);--color9:var(--t190);--color10:var(--t1);--color11:var(--t189);--color12:var(--t17);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t17);--colorHover:var(--t22);--colorPress:var(--t17);--colorFocus:var(--t189);--background:var(--t10);--backgroundHover:var(--t0);--backgroundPress:var(--t195);--backgroundFocus:var(--t0);--backgroundActive:var(--t10);--borderColor:var(--t194);--borderColorHover:var(--t193);--borderColorFocus:var(--t194);--borderColorPress:var(--t0);--placeholderColor:var(--t190);--colorTransparent:var(--t18);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--outlineColor:var(--t234);}
|
|
683
|
+
}
|
|
684
|
+
.t_dark_white_SwitchThumb ::selection, .t_dark_white_Tooltip ::selection, .t_dark_white_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
685
|
+
:root.t_dark .t_yellow, :root.t_light .t_dark .t_yellow, .tm_xxt {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t581);--background02:var(--t582);--background04:var(--t583);--background06:var(--t584);--background08:var(--t585);--color1:var(--t586);--color2:var(--t587);--color3:var(--t588);--color4:var(--t589);--color5:var(--t590);--color6:var(--t591);--color7:var(--t592);--color8:var(--t593);--color9:var(--t594);--color10:var(--t595);--color11:var(--t596);--color12:var(--t597);--color0:var(--t598);--color02:var(--t599);--color04:var(--t600);--color06:var(--t601);--color08:var(--t602);--color:var(--t597);--colorHover:var(--t602);--colorPress:var(--t597);--colorFocus:var(--t596);--background:var(--t587);--backgroundHover:var(--t588);--backgroundPress:var(--t586);--backgroundFocus:var(--t588);--backgroundActive:var(--t587);--borderColor:var(--t589);--borderColorHover:var(--t590);--borderColorFocus:var(--t589);--borderColorPress:var(--t588);--placeholderColor:var(--t594);--colorTransparent:var(--t598);--color01:var(--t603);--color0075:var(--t604);--color005:var(--t605);--color0025:var(--t606);--color002:var(--t607);--color001:var(--t608);--background01:var(--t609);--background0075:var(--t610);--background005:var(--t611);--background0025:var(--t612);--background002:var(--t613);--background001:var(--t614);--outlineColor:var(--t615);}
|
|
686
|
+
@media(prefers-color-scheme:dark){
|
|
687
|
+
.t_yellow {--accentBackground:var(--t0);--accentColor:var(--t1);--background0:var(--t581);--background02:var(--t582);--background04:var(--t583);--background06:var(--t584);--background08:var(--t585);--color1:var(--t586);--color2:var(--t587);--color3:var(--t588);--color4:var(--t589);--color5:var(--t590);--color6:var(--t591);--color7:var(--t592);--color8:var(--t593);--color9:var(--t594);--color10:var(--t595);--color11:var(--t596);--color12:var(--t597);--color0:var(--t598);--color02:var(--t599);--color04:var(--t600);--color06:var(--t601);--color08:var(--t602);--color:var(--t597);--colorHover:var(--t602);--colorPress:var(--t597);--colorFocus:var(--t596);--background:var(--t587);--backgroundHover:var(--t588);--backgroundPress:var(--t586);--backgroundFocus:var(--t588);--backgroundActive:var(--t587);--borderColor:var(--t589);--borderColorHover:var(--t590);--borderColorFocus:var(--t589);--borderColorPress:var(--t588);--placeholderColor:var(--t594);--colorTransparent:var(--t598);--color01:var(--t603);--color0075:var(--t604);--color005:var(--t605);--color0025:var(--t606);--color002:var(--t607);--color001:var(--t608);--background01:var(--t609);--background0075:var(--t610);--background005:var(--t611);--background0025:var(--t612);--background002:var(--t613);--background001:var(--t614);--outlineColor:var(--t615);}
|
|
688
|
+
}
|
|
689
|
+
.t_dark_yellow ::selection{background:var(--color5);color:var(--color11)}
|
|
690
|
+
: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(--t596);--colorHover:var(--t597);--colorPress:var(--t596);--colorFocus:var(--t595);--background:var(--t589);--backgroundHover:var(--t590);--backgroundPress:var(--t588);--backgroundFocus:var(--t592);--backgroundActive:var(--t589);--borderColor:var(--t591);--borderColorHover:var(--t592);--borderColorFocus:var(--t591);--borderColorPress:var(--t590);--color01:var(--t603);--color0075:var(--t604);--color005:var(--t605);--color0025:var(--t606);--color002:var(--t607);--color001:var(--t608);--background01:var(--t609);--background0075:var(--t610);--background005:var(--t611);--background0025:var(--t612);--background002:var(--t613);--background001:var(--t614);--background02:var(--t582);--background04:var(--t583);--background06:var(--t584);--background08:var(--t585);--outlineColor:var(--t615);}
|
|
691
|
+
@media(prefers-color-scheme:dark){
|
|
692
|
+
.t_yellow_Button, .t_yellow_SliderThumb, .t_yellow_Switch, .t_yellow_surface2 {--color:var(--t596);--colorHover:var(--t597);--colorPress:var(--t596);--colorFocus:var(--t595);--background:var(--t589);--backgroundHover:var(--t590);--backgroundPress:var(--t588);--backgroundFocus:var(--t592);--backgroundActive:var(--t589);--borderColor:var(--t591);--borderColorHover:var(--t592);--borderColorFocus:var(--t591);--borderColorPress:var(--t590);--color01:var(--t603);--color0075:var(--t604);--color005:var(--t605);--color0025:var(--t606);--color002:var(--t607);--color001:var(--t608);--background01:var(--t609);--background0075:var(--t610);--background005:var(--t611);--background0025:var(--t612);--background002:var(--t613);--background001:var(--t614);--background02:var(--t582);--background04:var(--t583);--background06:var(--t584);--background08:var(--t585);--outlineColor:var(--t615);}
|
|
693
|
+
}
|
|
694
|
+
: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(--t596);--colorHover:var(--t597);--colorPress:var(--t596);--colorFocus:var(--t595);--background:var(--t588);--backgroundHover:var(--t589);--backgroundPress:var(--t587);--backgroundFocus:var(--t590);--backgroundActive:var(--t588);--borderColor:var(--t590);--borderColorHover:var(--t591);--borderColorFocus:var(--t590);--borderColorPress:var(--t589);--color01:var(--t603);--color0075:var(--t604);--color005:var(--t605);--color0025:var(--t606);--color002:var(--t607);--color001:var(--t608);--background01:var(--t609);--background0075:var(--t610);--background005:var(--t611);--background0025:var(--t612);--background002:var(--t613);--background001:var(--t614);--background02:var(--t582);--background04:var(--t583);--background06:var(--t584);--background08:var(--t585);--outlineColor:var(--t615);}
|
|
695
|
+
@media(prefers-color-scheme:dark){
|
|
696
|
+
.t_yellow_Input, .t_yellow_Progress, .t_yellow_Slider, .t_yellow_TextArea, .t_yellow_surface1 {--color:var(--t596);--colorHover:var(--t597);--colorPress:var(--t596);--colorFocus:var(--t595);--background:var(--t588);--backgroundHover:var(--t589);--backgroundPress:var(--t587);--backgroundFocus:var(--t590);--backgroundActive:var(--t588);--borderColor:var(--t590);--borderColorHover:var(--t591);--borderColorFocus:var(--t590);--borderColorPress:var(--t589);--color01:var(--t603);--color0075:var(--t604);--color005:var(--t605);--color0025:var(--t606);--color002:var(--t607);--color001:var(--t608);--background01:var(--t609);--background0075:var(--t610);--background005:var(--t611);--background0025:var(--t612);--background002:var(--t613);--background001:var(--t614);--background02:var(--t582);--background04:var(--t583);--background06:var(--t584);--background08:var(--t585);--outlineColor:var(--t615);}
|
|
697
|
+
}
|
|
698
|
+
: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(--t596);--colorHover:var(--t597);--colorPress:var(--t596);--colorFocus:var(--t595);--background:var(--t591);--backgroundHover:var(--t592);--backgroundPress:var(--t590);--backgroundFocus:var(--t596);--backgroundActive:var(--t591);--borderColor:var(--t593);--borderColorHover:var(--t594);--borderColorFocus:var(--t593);--borderColorPress:var(--t592);--color01:var(--t603);--color0075:var(--t604);--color005:var(--t605);--color0025:var(--t606);--color002:var(--t607);--color001:var(--t608);--background01:var(--t609);--background0075:var(--t610);--background005:var(--t611);--background0025:var(--t612);--background002:var(--t613);--background001:var(--t614);--background02:var(--t582);--background04:var(--t583);--background06:var(--t584);--background08:var(--t585);--outlineColor:var(--t615);}
|
|
699
|
+
@media(prefers-color-scheme:dark){
|
|
700
|
+
.t_yellow_ProgressIndicator, .t_yellow_SliderActive {--color:var(--t596);--colorHover:var(--t597);--colorPress:var(--t596);--colorFocus:var(--t595);--background:var(--t591);--backgroundHover:var(--t592);--backgroundPress:var(--t590);--backgroundFocus:var(--t596);--backgroundActive:var(--t591);--borderColor:var(--t593);--borderColorHover:var(--t594);--borderColorFocus:var(--t593);--borderColorPress:var(--t592);--color01:var(--t603);--color0075:var(--t604);--color005:var(--t605);--color0025:var(--t606);--color002:var(--t607);--color001:var(--t608);--background01:var(--t609);--background0075:var(--t610);--background005:var(--t611);--background0025:var(--t612);--background002:var(--t613);--background001:var(--t614);--background02:var(--t582);--background04:var(--t583);--background06:var(--t584);--background08:var(--t585);--outlineColor:var(--t615);}
|
|
701
|
+
}
|
|
702
|
+
: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(--t598);--background02:var(--t582);--background04:var(--t583);--background06:var(--t584);--background08:var(--t585);--color1:var(--t597);--color2:var(--t596);--color3:var(--t595);--color4:var(--t594);--color5:var(--t593);--color6:var(--t592);--color7:var(--t591);--color8:var(--t590);--color9:var(--t589);--color10:var(--t588);--color11:var(--t587);--color12:var(--t586);--color0:var(--t581);--color02:var(--t616);--color04:var(--t617);--color06:var(--t618);--color08:var(--t619);--color:var(--t586);--colorHover:var(--t619);--colorPress:var(--t586);--colorFocus:var(--t587);--background:var(--t596);--backgroundHover:var(--t595);--backgroundPress:var(--t597);--backgroundFocus:var(--t595);--backgroundActive:var(--t596);--borderColor:var(--t594);--borderColorHover:var(--t593);--borderColorFocus:var(--t594);--borderColorPress:var(--t595);--placeholderColor:var(--t589);--colorTransparent:var(--t581);--color01:var(--t603);--color0075:var(--t604);--color005:var(--t605);--color0025:var(--t606);--color002:var(--t607);--color001:var(--t608);--background01:var(--t609);--background0075:var(--t610);--background005:var(--t611);--background0025:var(--t612);--background002:var(--t613);--background001:var(--t614);--outlineColor:var(--t615);}
|
|
703
|
+
@media(prefers-color-scheme:dark){
|
|
704
|
+
.t_yellow_SwitchThumb, .t_yellow_Tooltip, .t_yellow_accent {--accentBackground:var(--t1);--accentColor:var(--t0);--background0:var(--t598);--background02:var(--t582);--background04:var(--t583);--background06:var(--t584);--background08:var(--t585);--color1:var(--t597);--color2:var(--t596);--color3:var(--t595);--color4:var(--t594);--color5:var(--t593);--color6:var(--t592);--color7:var(--t591);--color8:var(--t590);--color9:var(--t589);--color10:var(--t588);--color11:var(--t587);--color12:var(--t586);--color0:var(--t581);--color02:var(--t616);--color04:var(--t617);--color06:var(--t618);--color08:var(--t619);--color:var(--t586);--colorHover:var(--t619);--colorPress:var(--t586);--colorFocus:var(--t587);--background:var(--t596);--backgroundHover:var(--t595);--backgroundPress:var(--t597);--backgroundFocus:var(--t595);--backgroundActive:var(--t596);--borderColor:var(--t594);--borderColorHover:var(--t593);--borderColorFocus:var(--t594);--borderColorPress:var(--t595);--placeholderColor:var(--t589);--colorTransparent:var(--t581);--color01:var(--t603);--color0075:var(--t604);--color005:var(--t605);--color0025:var(--t606);--color002:var(--t607);--color001:var(--t608);--background01:var(--t609);--background0075:var(--t610);--background005:var(--t611);--background0025:var(--t612);--background002:var(--t613);--background001:var(--t614);--outlineColor:var(--t615);}
|
|
705
|
+
}
|
|
706
|
+
.t_dark_yellow_SwitchThumb ::selection, .t_dark_yellow_Tooltip ::selection, .t_dark_yellow_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
707
|
+
:root.t_dark .t_light , :root.t_light, :root.t_light , .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t18);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--color1:var(--t17);--color2:var(--t189);--color3:var(--t1);--color4:var(--t190);--color5:var(--t16);--color6:var(--t191);--color7:var(--t192);--color8:var(--t193);--color9:var(--t194);--color10:var(--t0);--color11:var(--t10);--color12:var(--t195);--color0:var(--t217);--color02:var(--t218);--color04:var(--t219);--color06:var(--t220);--color08:var(--t221);--color:var(--t195);--colorHover:var(--t195);--colorPress:var(--t195);--colorFocus:var(--t221);--background:var(--t189);--backgroundHover:var(--t17);--backgroundPress:var(--t1);--backgroundFocus:var(--t1);--backgroundActive:var(--t189);--borderColor:var(--t190);--borderColorHover:var(--t1);--borderColorFocus:var(--t190);--borderColorPress:var(--t16);--placeholderColor:var(--t194);--colorTransparent:var(--t217);--black1:var(--t23);--black2:var(--t24);--black3:var(--t25);--black4:var(--t26);--black5:var(--t27);--black6:var(--t28);--black7:var(--t29);--black8:var(--t30);--black9:var(--t31);--black10:var(--t32);--black11:var(--t33);--black12:var(--t34);--white1:var(--t35);--white2:var(--t36);--white3:var(--t37);--white4:var(--t38);--white5:var(--t39);--white6:var(--t40);--white7:var(--t41);--white8:var(--t42);--white9:var(--t43);--white10:var(--t44);--white11:var(--t45);--white12:var(--t46);--white:var(--t47);--white0:var(--t48);--white02:var(--t49);--white04:var(--t50);--white06:var(--t51);--white08:var(--t52);--black:var(--t53);--black0:var(--t54);--black02:var(--t55);--black04:var(--t56);--black06:var(--t57);--black08:var(--t58);--shadow1:var(--t620);--shadow2:var(--t621);--shadow3:var(--t622);--shadow4:var(--t623);--shadow5:var(--t61);--shadow6:var(--t624);--shadow7:var(--t57);--shadow8:var(--t625);--highlight1:var(--t626);--highlight2:var(--t65);--highlight3:var(--t627);--highlight4:var(--t66);--highlight5:var(--t50);--highlight6:var(--t628);--highlight7:var(--t629);--highlight8:var(--t69);--shadowColor:var(--t622);--gray1:var(--t630);--gray2:var(--t631);--gray3:var(--t632);--gray4:var(--t633);--gray5:var(--t634);--gray6:var(--t635);--gray7:var(--t636);--gray8:var(--t637);--gray9:var(--t638);--gray10:var(--t639);--gray11:var(--t640);--gray12:var(--t641);--blue1:var(--t642);--blue2:var(--t643);--blue3:var(--t644);--blue4:var(--t645);--blue5:var(--t646);--blue6:var(--t647);--blue7:var(--t648);--blue8:var(--t649);--blue9:var(--t90);--blue10:var(--t650);--blue11:var(--t651);--blue12:var(--t652);--red1:var(--t653);--red2:var(--t654);--red3:var(--t655);--red4:var(--t656);--red5:var(--t657);--red6:var(--t658);--red7:var(--t659);--red8:var(--t660);--red9:var(--t102);--red10:var(--t661);--red11:var(--t662);--red12:var(--t663);--yellow1:var(--t664);--yellow2:var(--t665);--yellow3:var(--t666);--yellow4:var(--t667);--yellow5:var(--t668);--yellow6:var(--t669);--yellow7:var(--t670);--yellow8:var(--t671);--yellow9:var(--t114);--yellow10:var(--t672);--yellow11:var(--t673);--yellow12:var(--t674);--green1:var(--t675);--green2:var(--t676);--green3:var(--t677);--green4:var(--t678);--green5:var(--t679);--green6:var(--t680);--green7:var(--t681);--green8:var(--t682);--green9:var(--t126);--green10:var(--t683);--green11:var(--t684);--green12:var(--t685);--orange1:var(--t686);--orange2:var(--t687);--orange3:var(--t688);--orange4:var(--t689);--orange5:var(--t690);--orange6:var(--t691);--orange7:var(--t692);--orange8:var(--t693);--orange9:var(--t138);--orange10:var(--t694);--orange11:var(--t695);--orange12:var(--t696);--pink1:var(--t697);--pink2:var(--t698);--pink3:var(--t699);--pink4:var(--t700);--pink5:var(--t701);--pink6:var(--t702);--pink7:var(--t703);--pink8:var(--t704);--pink9:var(--t150);--pink10:var(--t705);--pink11:var(--t706);--pink12:var(--t707);--purple1:var(--t708);--purple2:var(--t709);--purple3:var(--t710);--purple4:var(--t711);--purple5:var(--t712);--purple6:var(--t713);--purple7:var(--t714);--purple8:var(--t715);--purple9:var(--t162);--purple10:var(--t716);--purple11:var(--t717);--purple12:var(--t718);--teal1:var(--t719);--teal2:var(--t720);--teal3:var(--t721);--teal4:var(--t722);--teal5:var(--t723);--teal6:var(--t724);--teal7:var(--t725);--teal8:var(--t726);--teal9:var(--t174);--teal10:var(--t727);--teal11:var(--t728);--teal12:var(--t729);--neutral1:var(--t178);--neutral2:var(--t179);--neutral3:var(--t180);--neutral4:var(--t41);--neutral5:var(--t181);--neutral6:var(--t182);--neutral7:var(--t183);--neutral8:var(--t184);--neutral9:var(--t185);--neutral10:var(--t186);--neutral11:var(--t187);--neutral12:var(--t188);--accent1:var(--t7);--accent2:var(--t8);--accent3:var(--t9);--accent4:var(--t10);--accent5:var(--t0);--accent6:var(--t11);--accent7:var(--t12);--accent8:var(--t13);--accent9:var(--t14);--accent10:var(--t15);--accent11:var(--t16);--accent12:var(--t17);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--outlineColor:var(--t234);}
|
|
708
|
+
@media(prefers-color-scheme:light){
|
|
709
|
+
body{background:var(--background);color:var(--color)}
|
|
710
|
+
:root {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t18);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--color1:var(--t17);--color2:var(--t189);--color3:var(--t1);--color4:var(--t190);--color5:var(--t16);--color6:var(--t191);--color7:var(--t192);--color8:var(--t193);--color9:var(--t194);--color10:var(--t0);--color11:var(--t10);--color12:var(--t195);--color0:var(--t217);--color02:var(--t218);--color04:var(--t219);--color06:var(--t220);--color08:var(--t221);--color:var(--t195);--colorHover:var(--t195);--colorPress:var(--t195);--colorFocus:var(--t221);--background:var(--t189);--backgroundHover:var(--t17);--backgroundPress:var(--t1);--backgroundFocus:var(--t1);--backgroundActive:var(--t189);--borderColor:var(--t190);--borderColorHover:var(--t1);--borderColorFocus:var(--t190);--borderColorPress:var(--t16);--placeholderColor:var(--t194);--colorTransparent:var(--t217);--black1:var(--t23);--black2:var(--t24);--black3:var(--t25);--black4:var(--t26);--black5:var(--t27);--black6:var(--t28);--black7:var(--t29);--black8:var(--t30);--black9:var(--t31);--black10:var(--t32);--black11:var(--t33);--black12:var(--t34);--white1:var(--t35);--white2:var(--t36);--white3:var(--t37);--white4:var(--t38);--white5:var(--t39);--white6:var(--t40);--white7:var(--t41);--white8:var(--t42);--white9:var(--t43);--white10:var(--t44);--white11:var(--t45);--white12:var(--t46);--white:var(--t47);--white0:var(--t48);--white02:var(--t49);--white04:var(--t50);--white06:var(--t51);--white08:var(--t52);--black:var(--t53);--black0:var(--t54);--black02:var(--t55);--black04:var(--t56);--black06:var(--t57);--black08:var(--t58);--shadow1:var(--t620);--shadow2:var(--t621);--shadow3:var(--t622);--shadow4:var(--t623);--shadow5:var(--t61);--shadow6:var(--t624);--shadow7:var(--t57);--shadow8:var(--t625);--highlight1:var(--t626);--highlight2:var(--t65);--highlight3:var(--t627);--highlight4:var(--t66);--highlight5:var(--t50);--highlight6:var(--t628);--highlight7:var(--t629);--highlight8:var(--t69);--shadowColor:var(--t622);--gray1:var(--t630);--gray2:var(--t631);--gray3:var(--t632);--gray4:var(--t633);--gray5:var(--t634);--gray6:var(--t635);--gray7:var(--t636);--gray8:var(--t637);--gray9:var(--t638);--gray10:var(--t639);--gray11:var(--t640);--gray12:var(--t641);--blue1:var(--t642);--blue2:var(--t643);--blue3:var(--t644);--blue4:var(--t645);--blue5:var(--t646);--blue6:var(--t647);--blue7:var(--t648);--blue8:var(--t649);--blue9:var(--t90);--blue10:var(--t650);--blue11:var(--t651);--blue12:var(--t652);--red1:var(--t653);--red2:var(--t654);--red3:var(--t655);--red4:var(--t656);--red5:var(--t657);--red6:var(--t658);--red7:var(--t659);--red8:var(--t660);--red9:var(--t102);--red10:var(--t661);--red11:var(--t662);--red12:var(--t663);--yellow1:var(--t664);--yellow2:var(--t665);--yellow3:var(--t666);--yellow4:var(--t667);--yellow5:var(--t668);--yellow6:var(--t669);--yellow7:var(--t670);--yellow8:var(--t671);--yellow9:var(--t114);--yellow10:var(--t672);--yellow11:var(--t673);--yellow12:var(--t674);--green1:var(--t675);--green2:var(--t676);--green3:var(--t677);--green4:var(--t678);--green5:var(--t679);--green6:var(--t680);--green7:var(--t681);--green8:var(--t682);--green9:var(--t126);--green10:var(--t683);--green11:var(--t684);--green12:var(--t685);--orange1:var(--t686);--orange2:var(--t687);--orange3:var(--t688);--orange4:var(--t689);--orange5:var(--t690);--orange6:var(--t691);--orange7:var(--t692);--orange8:var(--t693);--orange9:var(--t138);--orange10:var(--t694);--orange11:var(--t695);--orange12:var(--t696);--pink1:var(--t697);--pink2:var(--t698);--pink3:var(--t699);--pink4:var(--t700);--pink5:var(--t701);--pink6:var(--t702);--pink7:var(--t703);--pink8:var(--t704);--pink9:var(--t150);--pink10:var(--t705);--pink11:var(--t706);--pink12:var(--t707);--purple1:var(--t708);--purple2:var(--t709);--purple3:var(--t710);--purple4:var(--t711);--purple5:var(--t712);--purple6:var(--t713);--purple7:var(--t714);--purple8:var(--t715);--purple9:var(--t162);--purple10:var(--t716);--purple11:var(--t717);--purple12:var(--t718);--teal1:var(--t719);--teal2:var(--t720);--teal3:var(--t721);--teal4:var(--t722);--teal5:var(--t723);--teal6:var(--t724);--teal7:var(--t725);--teal8:var(--t726);--teal9:var(--t174);--teal10:var(--t727);--teal11:var(--t728);--teal12:var(--t729);--neutral1:var(--t178);--neutral2:var(--t179);--neutral3:var(--t180);--neutral4:var(--t41);--neutral5:var(--t181);--neutral6:var(--t182);--neutral7:var(--t183);--neutral8:var(--t184);--neutral9:var(--t185);--neutral10:var(--t186);--neutral11:var(--t187);--neutral12:var(--t188);--accent1:var(--t7);--accent2:var(--t8);--accent3:var(--t9);--accent4:var(--t10);--accent5:var(--t0);--accent6:var(--t11);--accent7:var(--t12);--accent8:var(--t13);--accent9:var(--t14);--accent10:var(--t15);--accent11:var(--t16);--accent12:var(--t17);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--outlineColor:var(--t234);}
|
|
711
|
+
}
|
|
712
|
+
.t_light ::selection{background:var(--color5);color:var(--color11)}
|
|
713
|
+
: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(--t10);--colorHover:var(--t10);--colorPress:var(--t10);--colorFocus:var(--t195);--background:var(--t190);--backgroundHover:var(--t1);--backgroundPress:var(--t16);--backgroundFocus:var(--t192);--backgroundActive:var(--t190);--borderColor:var(--t191);--borderColorHover:var(--t16);--borderColorFocus:var(--t191);--borderColorPress:var(--t192);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--outlineColor:var(--t234);}
|
|
714
|
+
@media(prefers-color-scheme:light){
|
|
715
|
+
.t_Button, .t_SliderThumb, .t_Switch, .t_surface2, .t_white_Button, .t_white_SliderThumb, .t_white_Switch, .t_white_surface2 {--color:var(--t10);--colorHover:var(--t10);--colorPress:var(--t10);--colorFocus:var(--t195);--background:var(--t190);--backgroundHover:var(--t1);--backgroundPress:var(--t16);--backgroundFocus:var(--t192);--backgroundActive:var(--t190);--borderColor:var(--t191);--borderColorHover:var(--t16);--borderColorFocus:var(--t191);--borderColorPress:var(--t192);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--outlineColor:var(--t234);}
|
|
716
|
+
}
|
|
717
|
+
: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(--t10);--colorHover:var(--t10);--colorPress:var(--t10);--colorFocus:var(--t195);--background:var(--t1);--backgroundHover:var(--t189);--backgroundPress:var(--t190);--backgroundFocus:var(--t16);--backgroundActive:var(--t1);--borderColor:var(--t16);--borderColorHover:var(--t190);--borderColorFocus:var(--t16);--borderColorPress:var(--t191);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--outlineColor:var(--t234);}
|
|
718
|
+
@media(prefers-color-scheme:light){
|
|
719
|
+
.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(--t10);--colorHover:var(--t10);--colorPress:var(--t10);--colorFocus:var(--t195);--background:var(--t1);--backgroundHover:var(--t189);--backgroundPress:var(--t190);--backgroundFocus:var(--t16);--backgroundActive:var(--t1);--borderColor:var(--t16);--borderColorHover:var(--t190);--borderColorFocus:var(--t16);--borderColorPress:var(--t191);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--outlineColor:var(--t234);}
|
|
720
|
+
}
|
|
721
|
+
: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(--t10);--colorHover:var(--t10);--colorPress:var(--t10);--colorFocus:var(--t195);--background:var(--t191);--backgroundHover:var(--t16);--backgroundPress:var(--t192);--backgroundFocus:var(--t10);--backgroundActive:var(--t191);--borderColor:var(--t193);--borderColorHover:var(--t192);--borderColorFocus:var(--t193);--borderColorPress:var(--t194);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--outlineColor:var(--t234);}
|
|
722
|
+
@media(prefers-color-scheme:light){
|
|
723
|
+
.t_ProgressIndicator, .t_SliderActive, .t_white_ProgressIndicator, .t_white_SliderActive {--color:var(--t10);--colorHover:var(--t10);--colorPress:var(--t10);--colorFocus:var(--t195);--background:var(--t191);--backgroundHover:var(--t16);--backgroundPress:var(--t192);--backgroundFocus:var(--t10);--backgroundActive:var(--t191);--borderColor:var(--t193);--borderColorHover:var(--t192);--borderColorFocus:var(--t193);--borderColorPress:var(--t194);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--outlineColor:var(--t234);}
|
|
724
|
+
}
|
|
725
|
+
: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(--t217);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--color1:var(--t195);--color2:var(--t10);--color3:var(--t0);--color4:var(--t194);--color5:var(--t193);--color6:var(--t192);--color7:var(--t191);--color8:var(--t16);--color9:var(--t190);--color10:var(--t1);--color11:var(--t189);--color12:var(--t17);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t17);--colorHover:var(--t17);--colorPress:var(--t17);--colorFocus:var(--t22);--background:var(--t10);--backgroundHover:var(--t195);--backgroundPress:var(--t0);--backgroundFocus:var(--t0);--backgroundActive:var(--t10);--borderColor:var(--t194);--borderColorHover:var(--t0);--borderColorFocus:var(--t194);--borderColorPress:var(--t193);--placeholderColor:var(--t190);--colorTransparent:var(--t18);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--outlineColor:var(--t234);}
|
|
726
|
+
@media(prefers-color-scheme:light){
|
|
727
|
+
.t_SwitchThumb, .t_Tooltip, .t_white_SwitchThumb, .t_white_Tooltip, .t_white_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t217);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--color1:var(--t195);--color2:var(--t10);--color3:var(--t0);--color4:var(--t194);--color5:var(--t193);--color6:var(--t192);--color7:var(--t191);--color8:var(--t16);--color9:var(--t190);--color10:var(--t1);--color11:var(--t189);--color12:var(--t17);--color0:var(--t18);--color02:var(--t19);--color04:var(--t20);--color06:var(--t21);--color08:var(--t22);--color:var(--t17);--colorHover:var(--t17);--colorPress:var(--t17);--colorFocus:var(--t22);--background:var(--t10);--backgroundHover:var(--t195);--backgroundPress:var(--t0);--backgroundFocus:var(--t0);--backgroundActive:var(--t10);--borderColor:var(--t194);--borderColorHover:var(--t0);--borderColorFocus:var(--t194);--borderColorPress:var(--t193);--placeholderColor:var(--t190);--colorTransparent:var(--t18);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--outlineColor:var(--t234);}
|
|
728
|
+
}
|
|
729
|
+
.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)}
|
|
730
|
+
: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(--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(--t17);--colorHover:var(--t17);--colorPress:var(--t17);--colorFocus:var(--t22);--background:var(--t8);--backgroundHover:var(--t7);--backgroundPress:var(--t9);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t10);--borderColorHover:var(--t9);--borderColorFocus:var(--t10);--borderColorPress:var(--t0);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--outlineColor:var(--t208);}
|
|
731
|
+
@media(prefers-color-scheme:light){
|
|
732
|
+
.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(--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(--t17);--colorHover:var(--t17);--colorPress:var(--t17);--colorFocus:var(--t22);--background:var(--t8);--backgroundHover:var(--t7);--backgroundPress:var(--t9);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t10);--borderColorHover:var(--t9);--borderColorFocus:var(--t10);--borderColorPress:var(--t0);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--outlineColor:var(--t208);}
|
|
733
|
+
}
|
|
734
|
+
.t_light_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
735
|
+
: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(--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(--t17);--colorHover:var(--t17);--colorPress:var(--t17);--colorFocus:var(--t22);--background:var(--t8);--backgroundHover:var(--t7);--backgroundPress:var(--t9);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t10);--borderColorHover:var(--t9);--borderColorFocus:var(--t10);--borderColorPress:var(--t0);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--outlineColor:var(--t208);}
|
|
736
|
+
@media(prefers-color-scheme:light){
|
|
737
|
+
.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(--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(--t17);--colorHover:var(--t17);--colorPress:var(--t17);--colorFocus:var(--t22);--background:var(--t8);--backgroundHover:var(--t7);--backgroundPress:var(--t9);--backgroundFocus:var(--t9);--backgroundActive:var(--t8);--borderColor:var(--t10);--borderColorHover:var(--t9);--borderColorFocus:var(--t10);--borderColorPress:var(--t0);--placeholderColor:var(--t14);--colorTransparent:var(--t18);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--outlineColor:var(--t208);}
|
|
738
|
+
}
|
|
739
|
+
.t_light_black ::selection{background:var(--color5);color:var(--color11)}
|
|
740
|
+
: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(--t17);--background:var(--t10);--backgroundHover:var(--t9);--backgroundPress:var(--t0);--backgroundFocus:var(--t12);--backgroundActive:var(--t10);--borderColor:var(--t11);--borderColorHover:var(--t0);--borderColorFocus:var(--t11);--borderColorPress:var(--t12);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t208);}
|
|
741
|
+
@media(prefers-color-scheme:light){
|
|
742
|
+
.t_black_Button, .t_black_SliderThumb, .t_black_Switch, .t_black_surface2 {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--t17);--background:var(--t10);--backgroundHover:var(--t9);--backgroundPress:var(--t0);--backgroundFocus:var(--t12);--backgroundActive:var(--t10);--borderColor:var(--t11);--borderColorHover:var(--t0);--borderColorFocus:var(--t11);--borderColorPress:var(--t12);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t208);}
|
|
743
|
+
}
|
|
744
|
+
: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(--t17);--background:var(--t9);--backgroundHover:var(--t8);--backgroundPress:var(--t10);--backgroundFocus:var(--t0);--backgroundActive:var(--t9);--borderColor:var(--t0);--borderColorHover:var(--t10);--borderColorFocus:var(--t0);--borderColorPress:var(--t11);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t208);}
|
|
745
|
+
@media(prefers-color-scheme:light){
|
|
746
|
+
.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(--t17);--background:var(--t9);--backgroundHover:var(--t8);--backgroundPress:var(--t10);--backgroundFocus:var(--t0);--backgroundActive:var(--t9);--borderColor:var(--t0);--borderColorHover:var(--t10);--borderColorFocus:var(--t0);--borderColorPress:var(--t11);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t208);}
|
|
747
|
+
}
|
|
748
|
+
: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(--t17);--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(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t208);}
|
|
749
|
+
@media(prefers-color-scheme:light){
|
|
750
|
+
.t_black_ProgressIndicator, .t_black_SliderActive {--color:var(--t16);--colorHover:var(--t16);--colorPress:var(--t16);--colorFocus:var(--t17);--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(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--background02:var(--t3);--background04:var(--t4);--background06:var(--t5);--background08:var(--t6);--outlineColor:var(--t208);}
|
|
751
|
+
}
|
|
752
|
+
: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(--t17);--color2:var(--t16);--color3:var(--t15);--color4:var(--t14);--color5:var(--t13);--color6:var(--t12);--color7:var(--t11);--color8:var(--t0);--color9:var(--t10);--color10:var(--t9);--color11:var(--t8);--color12:var(--t7);--color0:var(--t2);--color02:var(--t209);--color04:var(--t210);--color06:var(--t211);--color08:var(--t212);--color:var(--t7);--colorHover:var(--t7);--colorPress:var(--t7);--colorFocus:var(--t212);--background:var(--t16);--backgroundHover:var(--t17);--backgroundPress:var(--t15);--backgroundFocus:var(--t15);--backgroundActive:var(--t16);--borderColor:var(--t14);--borderColorHover:var(--t15);--borderColorFocus:var(--t14);--borderColorPress:var(--t13);--placeholderColor:var(--t10);--colorTransparent:var(--t2);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--outlineColor:var(--t208);}
|
|
753
|
+
@media(prefers-color-scheme:light){
|
|
754
|
+
.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(--t17);--color2:var(--t16);--color3:var(--t15);--color4:var(--t14);--color5:var(--t13);--color6:var(--t12);--color7:var(--t11);--color8:var(--t0);--color9:var(--t10);--color10:var(--t9);--color11:var(--t8);--color12:var(--t7);--color0:var(--t2);--color02:var(--t209);--color04:var(--t210);--color06:var(--t211);--color08:var(--t212);--color:var(--t7);--colorHover:var(--t7);--colorPress:var(--t7);--colorFocus:var(--t212);--background:var(--t16);--backgroundHover:var(--t17);--backgroundPress:var(--t15);--backgroundFocus:var(--t15);--backgroundActive:var(--t16);--borderColor:var(--t14);--borderColorHover:var(--t15);--borderColorFocus:var(--t14);--borderColorPress:var(--t13);--placeholderColor:var(--t10);--colorTransparent:var(--t2);--color01:var(--t196);--color0075:var(--t197);--color005:var(--t198);--color0025:var(--t199);--color002:var(--t200);--color001:var(--t201);--background01:var(--t202);--background0075:var(--t203);--background005:var(--t204);--background0025:var(--t205);--background002:var(--t206);--background001:var(--t207);--outlineColor:var(--t208);}
|
|
755
|
+
}
|
|
756
|
+
.t_light_black_SwitchThumb ::selection, .t_light_black_Tooltip ::selection, .t_light_black_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
757
|
+
:root.t_dark .t_light .t_blue, :root.t_light .t_blue, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t730);--background02:var(--t731);--background04:var(--t732);--background06:var(--t733);--background08:var(--t734);--color1:var(--t735);--color2:var(--t736);--color3:var(--t737);--color4:var(--t738);--color5:var(--t739);--color6:var(--t740);--color7:var(--t741);--color8:var(--t742);--color9:var(--t248);--color10:var(--t743);--color11:var(--t744);--color12:var(--t745);--color0:var(--t746);--color02:var(--t747);--color04:var(--t748);--color06:var(--t749);--color08:var(--t750);--color:var(--t745);--colorHover:var(--t745);--colorPress:var(--t745);--colorFocus:var(--t750);--background:var(--t736);--backgroundHover:var(--t735);--backgroundPress:var(--t737);--backgroundFocus:var(--t737);--backgroundActive:var(--t736);--borderColor:var(--t738);--borderColorHover:var(--t737);--borderColorFocus:var(--t738);--borderColorPress:var(--t739);--placeholderColor:var(--t248);--colorTransparent:var(--t746);--color01:var(--t751);--color0075:var(--t752);--color005:var(--t753);--color0025:var(--t754);--color002:var(--t755);--color001:var(--t756);--background01:var(--t757);--background0075:var(--t758);--background005:var(--t759);--background0025:var(--t760);--background002:var(--t761);--background001:var(--t762);--outlineColor:var(--t763);}
|
|
758
|
+
@media(prefers-color-scheme:light){
|
|
759
|
+
.t_blue {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t730);--background02:var(--t731);--background04:var(--t732);--background06:var(--t733);--background08:var(--t734);--color1:var(--t735);--color2:var(--t736);--color3:var(--t737);--color4:var(--t738);--color5:var(--t739);--color6:var(--t740);--color7:var(--t741);--color8:var(--t742);--color9:var(--t248);--color10:var(--t743);--color11:var(--t744);--color12:var(--t745);--color0:var(--t746);--color02:var(--t747);--color04:var(--t748);--color06:var(--t749);--color08:var(--t750);--color:var(--t745);--colorHover:var(--t745);--colorPress:var(--t745);--colorFocus:var(--t750);--background:var(--t736);--backgroundHover:var(--t735);--backgroundPress:var(--t737);--backgroundFocus:var(--t737);--backgroundActive:var(--t736);--borderColor:var(--t738);--borderColorHover:var(--t737);--borderColorFocus:var(--t738);--borderColorPress:var(--t739);--placeholderColor:var(--t248);--colorTransparent:var(--t746);--color01:var(--t751);--color0075:var(--t752);--color005:var(--t753);--color0025:var(--t754);--color002:var(--t755);--color001:var(--t756);--background01:var(--t757);--background0075:var(--t758);--background005:var(--t759);--background0025:var(--t760);--background002:var(--t761);--background001:var(--t762);--outlineColor:var(--t763);}
|
|
760
|
+
}
|
|
761
|
+
.t_light_blue ::selection{background:var(--color5);color:var(--color11)}
|
|
762
|
+
: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(--t744);--colorHover:var(--t744);--colorPress:var(--t744);--colorFocus:var(--t745);--background:var(--t738);--backgroundHover:var(--t737);--backgroundPress:var(--t739);--backgroundFocus:var(--t741);--backgroundActive:var(--t738);--borderColor:var(--t740);--borderColorHover:var(--t739);--borderColorFocus:var(--t740);--borderColorPress:var(--t741);--color01:var(--t751);--color0075:var(--t752);--color005:var(--t753);--color0025:var(--t754);--color002:var(--t755);--color001:var(--t756);--background01:var(--t757);--background0075:var(--t758);--background005:var(--t759);--background0025:var(--t760);--background002:var(--t761);--background001:var(--t762);--background02:var(--t731);--background04:var(--t732);--background06:var(--t733);--background08:var(--t734);--outlineColor:var(--t763);}
|
|
763
|
+
@media(prefers-color-scheme:light){
|
|
764
|
+
.t_blue_Button, .t_blue_SliderThumb, .t_blue_Switch, .t_blue_surface2 {--color:var(--t744);--colorHover:var(--t744);--colorPress:var(--t744);--colorFocus:var(--t745);--background:var(--t738);--backgroundHover:var(--t737);--backgroundPress:var(--t739);--backgroundFocus:var(--t741);--backgroundActive:var(--t738);--borderColor:var(--t740);--borderColorHover:var(--t739);--borderColorFocus:var(--t740);--borderColorPress:var(--t741);--color01:var(--t751);--color0075:var(--t752);--color005:var(--t753);--color0025:var(--t754);--color002:var(--t755);--color001:var(--t756);--background01:var(--t757);--background0075:var(--t758);--background005:var(--t759);--background0025:var(--t760);--background002:var(--t761);--background001:var(--t762);--background02:var(--t731);--background04:var(--t732);--background06:var(--t733);--background08:var(--t734);--outlineColor:var(--t763);}
|
|
765
|
+
}
|
|
766
|
+
: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(--t744);--colorHover:var(--t744);--colorPress:var(--t744);--colorFocus:var(--t745);--background:var(--t737);--backgroundHover:var(--t736);--backgroundPress:var(--t738);--backgroundFocus:var(--t739);--backgroundActive:var(--t737);--borderColor:var(--t739);--borderColorHover:var(--t738);--borderColorFocus:var(--t739);--borderColorPress:var(--t740);--color01:var(--t751);--color0075:var(--t752);--color005:var(--t753);--color0025:var(--t754);--color002:var(--t755);--color001:var(--t756);--background01:var(--t757);--background0075:var(--t758);--background005:var(--t759);--background0025:var(--t760);--background002:var(--t761);--background001:var(--t762);--background02:var(--t731);--background04:var(--t732);--background06:var(--t733);--background08:var(--t734);--outlineColor:var(--t763);}
|
|
767
|
+
@media(prefers-color-scheme:light){
|
|
768
|
+
.t_blue_Input, .t_blue_Progress, .t_blue_Slider, .t_blue_TextArea, .t_blue_surface1 {--color:var(--t744);--colorHover:var(--t744);--colorPress:var(--t744);--colorFocus:var(--t745);--background:var(--t737);--backgroundHover:var(--t736);--backgroundPress:var(--t738);--backgroundFocus:var(--t739);--backgroundActive:var(--t737);--borderColor:var(--t739);--borderColorHover:var(--t738);--borderColorFocus:var(--t739);--borderColorPress:var(--t740);--color01:var(--t751);--color0075:var(--t752);--color005:var(--t753);--color0025:var(--t754);--color002:var(--t755);--color001:var(--t756);--background01:var(--t757);--background0075:var(--t758);--background005:var(--t759);--background0025:var(--t760);--background002:var(--t761);--background001:var(--t762);--background02:var(--t731);--background04:var(--t732);--background06:var(--t733);--background08:var(--t734);--outlineColor:var(--t763);}
|
|
769
|
+
}
|
|
770
|
+
: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(--t744);--colorHover:var(--t744);--colorPress:var(--t744);--colorFocus:var(--t745);--background:var(--t740);--backgroundHover:var(--t739);--backgroundPress:var(--t741);--backgroundFocus:var(--t744);--backgroundActive:var(--t740);--borderColor:var(--t742);--borderColorHover:var(--t741);--borderColorFocus:var(--t742);--borderColorPress:var(--t248);--color01:var(--t751);--color0075:var(--t752);--color005:var(--t753);--color0025:var(--t754);--color002:var(--t755);--color001:var(--t756);--background01:var(--t757);--background0075:var(--t758);--background005:var(--t759);--background0025:var(--t760);--background002:var(--t761);--background001:var(--t762);--background02:var(--t731);--background04:var(--t732);--background06:var(--t733);--background08:var(--t734);--outlineColor:var(--t763);}
|
|
771
|
+
@media(prefers-color-scheme:light){
|
|
772
|
+
.t_blue_ProgressIndicator, .t_blue_SliderActive {--color:var(--t744);--colorHover:var(--t744);--colorPress:var(--t744);--colorFocus:var(--t745);--background:var(--t740);--backgroundHover:var(--t739);--backgroundPress:var(--t741);--backgroundFocus:var(--t744);--backgroundActive:var(--t740);--borderColor:var(--t742);--borderColorHover:var(--t741);--borderColorFocus:var(--t742);--borderColorPress:var(--t248);--color01:var(--t751);--color0075:var(--t752);--color005:var(--t753);--color0025:var(--t754);--color002:var(--t755);--color001:var(--t756);--background01:var(--t757);--background0075:var(--t758);--background005:var(--t759);--background0025:var(--t760);--background002:var(--t761);--background001:var(--t762);--background02:var(--t731);--background04:var(--t732);--background06:var(--t733);--background08:var(--t734);--outlineColor:var(--t763);}
|
|
773
|
+
}
|
|
774
|
+
: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(--t746);--background02:var(--t731);--background04:var(--t732);--background06:var(--t733);--background08:var(--t734);--color1:var(--t745);--color2:var(--t744);--color3:var(--t743);--color4:var(--t248);--color5:var(--t742);--color6:var(--t741);--color7:var(--t740);--color8:var(--t739);--color9:var(--t738);--color10:var(--t737);--color11:var(--t736);--color12:var(--t735);--color0:var(--t730);--color02:var(--t764);--color04:var(--t765);--color06:var(--t766);--color08:var(--t767);--color:var(--t735);--colorHover:var(--t735);--colorPress:var(--t735);--colorFocus:var(--t767);--background:var(--t744);--backgroundHover:var(--t745);--backgroundPress:var(--t743);--backgroundFocus:var(--t743);--backgroundActive:var(--t744);--borderColor:var(--t248);--borderColorHover:var(--t743);--borderColorFocus:var(--t248);--borderColorPress:var(--t742);--placeholderColor:var(--t738);--colorTransparent:var(--t730);--color01:var(--t751);--color0075:var(--t752);--color005:var(--t753);--color0025:var(--t754);--color002:var(--t755);--color001:var(--t756);--background01:var(--t757);--background0075:var(--t758);--background005:var(--t759);--background0025:var(--t760);--background002:var(--t761);--background001:var(--t762);--outlineColor:var(--t763);}
|
|
775
|
+
@media(prefers-color-scheme:light){
|
|
776
|
+
.t_blue_SwitchThumb, .t_blue_Tooltip, .t_blue_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t746);--background02:var(--t731);--background04:var(--t732);--background06:var(--t733);--background08:var(--t734);--color1:var(--t745);--color2:var(--t744);--color3:var(--t743);--color4:var(--t248);--color5:var(--t742);--color6:var(--t741);--color7:var(--t740);--color8:var(--t739);--color9:var(--t738);--color10:var(--t737);--color11:var(--t736);--color12:var(--t735);--color0:var(--t730);--color02:var(--t764);--color04:var(--t765);--color06:var(--t766);--color08:var(--t767);--color:var(--t735);--colorHover:var(--t735);--colorPress:var(--t735);--colorFocus:var(--t767);--background:var(--t744);--backgroundHover:var(--t745);--backgroundPress:var(--t743);--backgroundFocus:var(--t743);--backgroundActive:var(--t744);--borderColor:var(--t248);--borderColorHover:var(--t743);--borderColorFocus:var(--t248);--borderColorPress:var(--t742);--placeholderColor:var(--t738);--colorTransparent:var(--t730);--color01:var(--t751);--color0075:var(--t752);--color005:var(--t753);--color0025:var(--t754);--color002:var(--t755);--color001:var(--t756);--background01:var(--t757);--background0075:var(--t758);--background005:var(--t759);--background0025:var(--t760);--background002:var(--t761);--background001:var(--t762);--outlineColor:var(--t763);}
|
|
777
|
+
}
|
|
778
|
+
.t_light_blue_SwitchThumb ::selection, .t_light_blue_Tooltip ::selection, .t_light_blue_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
779
|
+
:root.t_dark .t_light .t_gray, :root.t_light .t_gray, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t768);--background02:var(--t769);--background04:var(--t770);--background06:var(--t771);--background08:var(--t772);--color1:var(--t773);--color2:var(--t774);--color3:var(--t775);--color4:var(--t776);--color5:var(--t777);--color6:var(--t190);--color7:var(--t778);--color8:var(--t779);--color9:var(--t780);--color10:var(--t781);--color11:var(--t782);--color12:var(--t280);--color0:var(--t783);--color02:var(--t784);--color04:var(--t785);--color06:var(--t786);--color08:var(--t787);--color:var(--t280);--colorHover:var(--t280);--colorPress:var(--t280);--colorFocus:var(--t787);--background:var(--t774);--backgroundHover:var(--t773);--backgroundPress:var(--t775);--backgroundFocus:var(--t775);--backgroundActive:var(--t774);--borderColor:var(--t776);--borderColorHover:var(--t775);--borderColorFocus:var(--t776);--borderColorPress:var(--t777);--placeholderColor:var(--t780);--colorTransparent:var(--t783);--color01:var(--t788);--color0075:var(--t789);--color005:var(--t790);--color0025:var(--t791);--color002:var(--t792);--color001:var(--t793);--background01:var(--t794);--background0075:var(--t795);--background005:var(--t796);--background0025:var(--t797);--background002:var(--t798);--background001:var(--t799);--outlineColor:var(--t800);}
|
|
780
|
+
@media(prefers-color-scheme:light){
|
|
781
|
+
.t_gray {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t768);--background02:var(--t769);--background04:var(--t770);--background06:var(--t771);--background08:var(--t772);--color1:var(--t773);--color2:var(--t774);--color3:var(--t775);--color4:var(--t776);--color5:var(--t777);--color6:var(--t190);--color7:var(--t778);--color8:var(--t779);--color9:var(--t780);--color10:var(--t781);--color11:var(--t782);--color12:var(--t280);--color0:var(--t783);--color02:var(--t784);--color04:var(--t785);--color06:var(--t786);--color08:var(--t787);--color:var(--t280);--colorHover:var(--t280);--colorPress:var(--t280);--colorFocus:var(--t787);--background:var(--t774);--backgroundHover:var(--t773);--backgroundPress:var(--t775);--backgroundFocus:var(--t775);--backgroundActive:var(--t774);--borderColor:var(--t776);--borderColorHover:var(--t775);--borderColorFocus:var(--t776);--borderColorPress:var(--t777);--placeholderColor:var(--t780);--colorTransparent:var(--t783);--color01:var(--t788);--color0075:var(--t789);--color005:var(--t790);--color0025:var(--t791);--color002:var(--t792);--color001:var(--t793);--background01:var(--t794);--background0075:var(--t795);--background005:var(--t796);--background0025:var(--t797);--background002:var(--t798);--background001:var(--t799);--outlineColor:var(--t800);}
|
|
782
|
+
}
|
|
783
|
+
.t_light_gray ::selection{background:var(--color5);color:var(--color11)}
|
|
784
|
+
: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(--t782);--colorHover:var(--t782);--colorPress:var(--t782);--colorFocus:var(--t280);--background:var(--t776);--backgroundHover:var(--t775);--backgroundPress:var(--t777);--backgroundFocus:var(--t778);--backgroundActive:var(--t776);--borderColor:var(--t190);--borderColorHover:var(--t777);--borderColorFocus:var(--t190);--borderColorPress:var(--t778);--color01:var(--t788);--color0075:var(--t789);--color005:var(--t790);--color0025:var(--t791);--color002:var(--t792);--color001:var(--t793);--background01:var(--t794);--background0075:var(--t795);--background005:var(--t796);--background0025:var(--t797);--background002:var(--t798);--background001:var(--t799);--background02:var(--t769);--background04:var(--t770);--background06:var(--t771);--background08:var(--t772);--outlineColor:var(--t800);}
|
|
785
|
+
@media(prefers-color-scheme:light){
|
|
786
|
+
.t_gray_Button, .t_gray_SliderThumb, .t_gray_Switch, .t_gray_surface2 {--color:var(--t782);--colorHover:var(--t782);--colorPress:var(--t782);--colorFocus:var(--t280);--background:var(--t776);--backgroundHover:var(--t775);--backgroundPress:var(--t777);--backgroundFocus:var(--t778);--backgroundActive:var(--t776);--borderColor:var(--t190);--borderColorHover:var(--t777);--borderColorFocus:var(--t190);--borderColorPress:var(--t778);--color01:var(--t788);--color0075:var(--t789);--color005:var(--t790);--color0025:var(--t791);--color002:var(--t792);--color001:var(--t793);--background01:var(--t794);--background0075:var(--t795);--background005:var(--t796);--background0025:var(--t797);--background002:var(--t798);--background001:var(--t799);--background02:var(--t769);--background04:var(--t770);--background06:var(--t771);--background08:var(--t772);--outlineColor:var(--t800);}
|
|
787
|
+
}
|
|
788
|
+
: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(--t782);--colorHover:var(--t782);--colorPress:var(--t782);--colorFocus:var(--t280);--background:var(--t775);--backgroundHover:var(--t774);--backgroundPress:var(--t776);--backgroundFocus:var(--t777);--backgroundActive:var(--t775);--borderColor:var(--t777);--borderColorHover:var(--t776);--borderColorFocus:var(--t777);--borderColorPress:var(--t190);--color01:var(--t788);--color0075:var(--t789);--color005:var(--t790);--color0025:var(--t791);--color002:var(--t792);--color001:var(--t793);--background01:var(--t794);--background0075:var(--t795);--background005:var(--t796);--background0025:var(--t797);--background002:var(--t798);--background001:var(--t799);--background02:var(--t769);--background04:var(--t770);--background06:var(--t771);--background08:var(--t772);--outlineColor:var(--t800);}
|
|
789
|
+
@media(prefers-color-scheme:light){
|
|
790
|
+
.t_gray_Input, .t_gray_Progress, .t_gray_Slider, .t_gray_TextArea, .t_gray_surface1 {--color:var(--t782);--colorHover:var(--t782);--colorPress:var(--t782);--colorFocus:var(--t280);--background:var(--t775);--backgroundHover:var(--t774);--backgroundPress:var(--t776);--backgroundFocus:var(--t777);--backgroundActive:var(--t775);--borderColor:var(--t777);--borderColorHover:var(--t776);--borderColorFocus:var(--t777);--borderColorPress:var(--t190);--color01:var(--t788);--color0075:var(--t789);--color005:var(--t790);--color0025:var(--t791);--color002:var(--t792);--color001:var(--t793);--background01:var(--t794);--background0075:var(--t795);--background005:var(--t796);--background0025:var(--t797);--background002:var(--t798);--background001:var(--t799);--background02:var(--t769);--background04:var(--t770);--background06:var(--t771);--background08:var(--t772);--outlineColor:var(--t800);}
|
|
791
|
+
}
|
|
792
|
+
: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(--t782);--colorHover:var(--t782);--colorPress:var(--t782);--colorFocus:var(--t280);--background:var(--t190);--backgroundHover:var(--t777);--backgroundPress:var(--t778);--backgroundFocus:var(--t782);--backgroundActive:var(--t190);--borderColor:var(--t779);--borderColorHover:var(--t778);--borderColorFocus:var(--t779);--borderColorPress:var(--t780);--color01:var(--t788);--color0075:var(--t789);--color005:var(--t790);--color0025:var(--t791);--color002:var(--t792);--color001:var(--t793);--background01:var(--t794);--background0075:var(--t795);--background005:var(--t796);--background0025:var(--t797);--background002:var(--t798);--background001:var(--t799);--background02:var(--t769);--background04:var(--t770);--background06:var(--t771);--background08:var(--t772);--outlineColor:var(--t800);}
|
|
793
|
+
@media(prefers-color-scheme:light){
|
|
794
|
+
.t_gray_ProgressIndicator, .t_gray_SliderActive {--color:var(--t782);--colorHover:var(--t782);--colorPress:var(--t782);--colorFocus:var(--t280);--background:var(--t190);--backgroundHover:var(--t777);--backgroundPress:var(--t778);--backgroundFocus:var(--t782);--backgroundActive:var(--t190);--borderColor:var(--t779);--borderColorHover:var(--t778);--borderColorFocus:var(--t779);--borderColorPress:var(--t780);--color01:var(--t788);--color0075:var(--t789);--color005:var(--t790);--color0025:var(--t791);--color002:var(--t792);--color001:var(--t793);--background01:var(--t794);--background0075:var(--t795);--background005:var(--t796);--background0025:var(--t797);--background002:var(--t798);--background001:var(--t799);--background02:var(--t769);--background04:var(--t770);--background06:var(--t771);--background08:var(--t772);--outlineColor:var(--t800);}
|
|
795
|
+
}
|
|
796
|
+
: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(--t783);--background02:var(--t769);--background04:var(--t770);--background06:var(--t771);--background08:var(--t772);--color1:var(--t280);--color2:var(--t782);--color3:var(--t781);--color4:var(--t780);--color5:var(--t779);--color6:var(--t778);--color7:var(--t190);--color8:var(--t777);--color9:var(--t776);--color10:var(--t775);--color11:var(--t774);--color12:var(--t773);--color0:var(--t768);--color02:var(--t801);--color04:var(--t802);--color06:var(--t803);--color08:var(--t804);--color:var(--t773);--colorHover:var(--t773);--colorPress:var(--t773);--colorFocus:var(--t804);--background:var(--t782);--backgroundHover:var(--t280);--backgroundPress:var(--t781);--backgroundFocus:var(--t781);--backgroundActive:var(--t782);--borderColor:var(--t780);--borderColorHover:var(--t781);--borderColorFocus:var(--t780);--borderColorPress:var(--t779);--placeholderColor:var(--t776);--colorTransparent:var(--t768);--color01:var(--t788);--color0075:var(--t789);--color005:var(--t790);--color0025:var(--t791);--color002:var(--t792);--color001:var(--t793);--background01:var(--t794);--background0075:var(--t795);--background005:var(--t796);--background0025:var(--t797);--background002:var(--t798);--background001:var(--t799);--outlineColor:var(--t800);}
|
|
797
|
+
@media(prefers-color-scheme:light){
|
|
798
|
+
.t_gray_SwitchThumb, .t_gray_Tooltip, .t_gray_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t783);--background02:var(--t769);--background04:var(--t770);--background06:var(--t771);--background08:var(--t772);--color1:var(--t280);--color2:var(--t782);--color3:var(--t781);--color4:var(--t780);--color5:var(--t779);--color6:var(--t778);--color7:var(--t190);--color8:var(--t777);--color9:var(--t776);--color10:var(--t775);--color11:var(--t774);--color12:var(--t773);--color0:var(--t768);--color02:var(--t801);--color04:var(--t802);--color06:var(--t803);--color08:var(--t804);--color:var(--t773);--colorHover:var(--t773);--colorPress:var(--t773);--colorFocus:var(--t804);--background:var(--t782);--backgroundHover:var(--t280);--backgroundPress:var(--t781);--backgroundFocus:var(--t781);--backgroundActive:var(--t782);--borderColor:var(--t780);--borderColorHover:var(--t781);--borderColorFocus:var(--t780);--borderColorPress:var(--t779);--placeholderColor:var(--t776);--colorTransparent:var(--t768);--color01:var(--t788);--color0075:var(--t789);--color005:var(--t790);--color0025:var(--t791);--color002:var(--t792);--color001:var(--t793);--background01:var(--t794);--background0075:var(--t795);--background005:var(--t796);--background0025:var(--t797);--background002:var(--t798);--background001:var(--t799);--outlineColor:var(--t800);}
|
|
799
|
+
}
|
|
800
|
+
.t_light_gray_SwitchThumb ::selection, .t_light_gray_Tooltip ::selection, .t_light_gray_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
801
|
+
:root.t_dark .t_light .t_green, :root.t_light .t_green, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t805);--background02:var(--t806);--background04:var(--t807);--background06:var(--t808);--background08:var(--t809);--color1:var(--t810);--color2:var(--t811);--color3:var(--t812);--color4:var(--t813);--color5:var(--t814);--color6:var(--t815);--color7:var(--t816);--color8:var(--t817);--color9:var(--t324);--color10:var(--t818);--color11:var(--t819);--color12:var(--t820);--color0:var(--t821);--color02:var(--t822);--color04:var(--t823);--color06:var(--t824);--color08:var(--t825);--color:var(--t820);--colorHover:var(--t820);--colorPress:var(--t820);--colorFocus:var(--t825);--background:var(--t811);--backgroundHover:var(--t810);--backgroundPress:var(--t812);--backgroundFocus:var(--t812);--backgroundActive:var(--t811);--borderColor:var(--t813);--borderColorHover:var(--t812);--borderColorFocus:var(--t813);--borderColorPress:var(--t814);--placeholderColor:var(--t324);--colorTransparent:var(--t821);--color01:var(--t826);--color0075:var(--t827);--color005:var(--t828);--color0025:var(--t829);--color002:var(--t830);--color001:var(--t831);--background01:var(--t832);--background0075:var(--t833);--background005:var(--t834);--background0025:var(--t835);--background002:var(--t836);--background001:var(--t837);--outlineColor:var(--t838);}
|
|
802
|
+
@media(prefers-color-scheme:light){
|
|
803
|
+
.t_green {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t805);--background02:var(--t806);--background04:var(--t807);--background06:var(--t808);--background08:var(--t809);--color1:var(--t810);--color2:var(--t811);--color3:var(--t812);--color4:var(--t813);--color5:var(--t814);--color6:var(--t815);--color7:var(--t816);--color8:var(--t817);--color9:var(--t324);--color10:var(--t818);--color11:var(--t819);--color12:var(--t820);--color0:var(--t821);--color02:var(--t822);--color04:var(--t823);--color06:var(--t824);--color08:var(--t825);--color:var(--t820);--colorHover:var(--t820);--colorPress:var(--t820);--colorFocus:var(--t825);--background:var(--t811);--backgroundHover:var(--t810);--backgroundPress:var(--t812);--backgroundFocus:var(--t812);--backgroundActive:var(--t811);--borderColor:var(--t813);--borderColorHover:var(--t812);--borderColorFocus:var(--t813);--borderColorPress:var(--t814);--placeholderColor:var(--t324);--colorTransparent:var(--t821);--color01:var(--t826);--color0075:var(--t827);--color005:var(--t828);--color0025:var(--t829);--color002:var(--t830);--color001:var(--t831);--background01:var(--t832);--background0075:var(--t833);--background005:var(--t834);--background0025:var(--t835);--background002:var(--t836);--background001:var(--t837);--outlineColor:var(--t838);}
|
|
804
|
+
}
|
|
805
|
+
.t_light_green ::selection{background:var(--color5);color:var(--color11)}
|
|
806
|
+
: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(--t819);--colorHover:var(--t819);--colorPress:var(--t819);--colorFocus:var(--t820);--background:var(--t813);--backgroundHover:var(--t812);--backgroundPress:var(--t814);--backgroundFocus:var(--t816);--backgroundActive:var(--t813);--borderColor:var(--t815);--borderColorHover:var(--t814);--borderColorFocus:var(--t815);--borderColorPress:var(--t816);--color01:var(--t826);--color0075:var(--t827);--color005:var(--t828);--color0025:var(--t829);--color002:var(--t830);--color001:var(--t831);--background01:var(--t832);--background0075:var(--t833);--background005:var(--t834);--background0025:var(--t835);--background002:var(--t836);--background001:var(--t837);--background02:var(--t806);--background04:var(--t807);--background06:var(--t808);--background08:var(--t809);--outlineColor:var(--t838);}
|
|
807
|
+
@media(prefers-color-scheme:light){
|
|
808
|
+
.t_green_Button, .t_green_SliderThumb, .t_green_Switch, .t_green_surface2 {--color:var(--t819);--colorHover:var(--t819);--colorPress:var(--t819);--colorFocus:var(--t820);--background:var(--t813);--backgroundHover:var(--t812);--backgroundPress:var(--t814);--backgroundFocus:var(--t816);--backgroundActive:var(--t813);--borderColor:var(--t815);--borderColorHover:var(--t814);--borderColorFocus:var(--t815);--borderColorPress:var(--t816);--color01:var(--t826);--color0075:var(--t827);--color005:var(--t828);--color0025:var(--t829);--color002:var(--t830);--color001:var(--t831);--background01:var(--t832);--background0075:var(--t833);--background005:var(--t834);--background0025:var(--t835);--background002:var(--t836);--background001:var(--t837);--background02:var(--t806);--background04:var(--t807);--background06:var(--t808);--background08:var(--t809);--outlineColor:var(--t838);}
|
|
809
|
+
}
|
|
810
|
+
: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(--t819);--colorHover:var(--t819);--colorPress:var(--t819);--colorFocus:var(--t820);--background:var(--t812);--backgroundHover:var(--t811);--backgroundPress:var(--t813);--backgroundFocus:var(--t814);--backgroundActive:var(--t812);--borderColor:var(--t814);--borderColorHover:var(--t813);--borderColorFocus:var(--t814);--borderColorPress:var(--t815);--color01:var(--t826);--color0075:var(--t827);--color005:var(--t828);--color0025:var(--t829);--color002:var(--t830);--color001:var(--t831);--background01:var(--t832);--background0075:var(--t833);--background005:var(--t834);--background0025:var(--t835);--background002:var(--t836);--background001:var(--t837);--background02:var(--t806);--background04:var(--t807);--background06:var(--t808);--background08:var(--t809);--outlineColor:var(--t838);}
|
|
811
|
+
@media(prefers-color-scheme:light){
|
|
812
|
+
.t_green_Input, .t_green_Progress, .t_green_Slider, .t_green_TextArea, .t_green_surface1 {--color:var(--t819);--colorHover:var(--t819);--colorPress:var(--t819);--colorFocus:var(--t820);--background:var(--t812);--backgroundHover:var(--t811);--backgroundPress:var(--t813);--backgroundFocus:var(--t814);--backgroundActive:var(--t812);--borderColor:var(--t814);--borderColorHover:var(--t813);--borderColorFocus:var(--t814);--borderColorPress:var(--t815);--color01:var(--t826);--color0075:var(--t827);--color005:var(--t828);--color0025:var(--t829);--color002:var(--t830);--color001:var(--t831);--background01:var(--t832);--background0075:var(--t833);--background005:var(--t834);--background0025:var(--t835);--background002:var(--t836);--background001:var(--t837);--background02:var(--t806);--background04:var(--t807);--background06:var(--t808);--background08:var(--t809);--outlineColor:var(--t838);}
|
|
813
|
+
}
|
|
814
|
+
: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(--t819);--colorHover:var(--t819);--colorPress:var(--t819);--colorFocus:var(--t820);--background:var(--t815);--backgroundHover:var(--t814);--backgroundPress:var(--t816);--backgroundFocus:var(--t819);--backgroundActive:var(--t815);--borderColor:var(--t817);--borderColorHover:var(--t816);--borderColorFocus:var(--t817);--borderColorPress:var(--t324);--color01:var(--t826);--color0075:var(--t827);--color005:var(--t828);--color0025:var(--t829);--color002:var(--t830);--color001:var(--t831);--background01:var(--t832);--background0075:var(--t833);--background005:var(--t834);--background0025:var(--t835);--background002:var(--t836);--background001:var(--t837);--background02:var(--t806);--background04:var(--t807);--background06:var(--t808);--background08:var(--t809);--outlineColor:var(--t838);}
|
|
815
|
+
@media(prefers-color-scheme:light){
|
|
816
|
+
.t_green_ProgressIndicator, .t_green_SliderActive {--color:var(--t819);--colorHover:var(--t819);--colorPress:var(--t819);--colorFocus:var(--t820);--background:var(--t815);--backgroundHover:var(--t814);--backgroundPress:var(--t816);--backgroundFocus:var(--t819);--backgroundActive:var(--t815);--borderColor:var(--t817);--borderColorHover:var(--t816);--borderColorFocus:var(--t817);--borderColorPress:var(--t324);--color01:var(--t826);--color0075:var(--t827);--color005:var(--t828);--color0025:var(--t829);--color002:var(--t830);--color001:var(--t831);--background01:var(--t832);--background0075:var(--t833);--background005:var(--t834);--background0025:var(--t835);--background002:var(--t836);--background001:var(--t837);--background02:var(--t806);--background04:var(--t807);--background06:var(--t808);--background08:var(--t809);--outlineColor:var(--t838);}
|
|
817
|
+
}
|
|
818
|
+
: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(--t821);--background02:var(--t806);--background04:var(--t807);--background06:var(--t808);--background08:var(--t809);--color1:var(--t820);--color2:var(--t819);--color3:var(--t818);--color4:var(--t324);--color5:var(--t817);--color6:var(--t816);--color7:var(--t815);--color8:var(--t814);--color9:var(--t813);--color10:var(--t812);--color11:var(--t811);--color12:var(--t810);--color0:var(--t805);--color02:var(--t839);--color04:var(--t840);--color06:var(--t841);--color08:var(--t842);--color:var(--t810);--colorHover:var(--t810);--colorPress:var(--t810);--colorFocus:var(--t842);--background:var(--t819);--backgroundHover:var(--t820);--backgroundPress:var(--t818);--backgroundFocus:var(--t818);--backgroundActive:var(--t819);--borderColor:var(--t324);--borderColorHover:var(--t818);--borderColorFocus:var(--t324);--borderColorPress:var(--t817);--placeholderColor:var(--t813);--colorTransparent:var(--t805);--color01:var(--t826);--color0075:var(--t827);--color005:var(--t828);--color0025:var(--t829);--color002:var(--t830);--color001:var(--t831);--background01:var(--t832);--background0075:var(--t833);--background005:var(--t834);--background0025:var(--t835);--background002:var(--t836);--background001:var(--t837);--outlineColor:var(--t838);}
|
|
819
|
+
@media(prefers-color-scheme:light){
|
|
820
|
+
.t_green_SwitchThumb, .t_green_Tooltip, .t_green_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t821);--background02:var(--t806);--background04:var(--t807);--background06:var(--t808);--background08:var(--t809);--color1:var(--t820);--color2:var(--t819);--color3:var(--t818);--color4:var(--t324);--color5:var(--t817);--color6:var(--t816);--color7:var(--t815);--color8:var(--t814);--color9:var(--t813);--color10:var(--t812);--color11:var(--t811);--color12:var(--t810);--color0:var(--t805);--color02:var(--t839);--color04:var(--t840);--color06:var(--t841);--color08:var(--t842);--color:var(--t810);--colorHover:var(--t810);--colorPress:var(--t810);--colorFocus:var(--t842);--background:var(--t819);--backgroundHover:var(--t820);--backgroundPress:var(--t818);--backgroundFocus:var(--t818);--backgroundActive:var(--t819);--borderColor:var(--t324);--borderColorHover:var(--t818);--borderColorFocus:var(--t324);--borderColorPress:var(--t817);--placeholderColor:var(--t813);--colorTransparent:var(--t805);--color01:var(--t826);--color0075:var(--t827);--color005:var(--t828);--color0025:var(--t829);--color002:var(--t830);--color001:var(--t831);--background01:var(--t832);--background0075:var(--t833);--background005:var(--t834);--background0025:var(--t835);--background002:var(--t836);--background001:var(--t837);--outlineColor:var(--t838);}
|
|
821
|
+
}
|
|
822
|
+
.t_light_green_SwitchThumb ::selection, .t_light_green_Tooltip ::selection, .t_light_green_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
823
|
+
:root.t_dark .t_light .t_neutral, :root.t_light .t_neutral, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t350);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--color1:var(--t355);--color2:var(--t356);--color3:var(--t357);--color4:var(--t192);--color5:var(--t358);--color6:var(--t359);--color7:var(--t360);--color8:var(--t13);--color9:var(--t361);--color10:var(--t362);--color11:var(--t285);--color12:var(--t363);--color0:var(--t364);--color02:var(--t365);--color04:var(--t366);--color06:var(--t367);--color08:var(--t368);--color:var(--t363);--colorHover:var(--t363);--colorPress:var(--t363);--colorFocus:var(--t368);--background:var(--t356);--backgroundHover:var(--t355);--backgroundPress:var(--t357);--backgroundFocus:var(--t357);--backgroundActive:var(--t356);--borderColor:var(--t192);--borderColorHover:var(--t357);--borderColorFocus:var(--t192);--borderColorPress:var(--t358);--placeholderColor:var(--t361);--colorTransparent:var(--t364);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--outlineColor:var(--t381);}
|
|
824
|
+
@media(prefers-color-scheme:light){
|
|
825
|
+
.t_neutral {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t350);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--color1:var(--t355);--color2:var(--t356);--color3:var(--t357);--color4:var(--t192);--color5:var(--t358);--color6:var(--t359);--color7:var(--t360);--color8:var(--t13);--color9:var(--t361);--color10:var(--t362);--color11:var(--t285);--color12:var(--t363);--color0:var(--t364);--color02:var(--t365);--color04:var(--t366);--color06:var(--t367);--color08:var(--t368);--color:var(--t363);--colorHover:var(--t363);--colorPress:var(--t363);--colorFocus:var(--t368);--background:var(--t356);--backgroundHover:var(--t355);--backgroundPress:var(--t357);--backgroundFocus:var(--t357);--backgroundActive:var(--t356);--borderColor:var(--t192);--borderColorHover:var(--t357);--borderColorFocus:var(--t192);--borderColorPress:var(--t358);--placeholderColor:var(--t361);--colorTransparent:var(--t364);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--outlineColor:var(--t381);}
|
|
826
|
+
}
|
|
827
|
+
.t_light_neutral ::selection{background:var(--color5);color:var(--color11)}
|
|
828
|
+
: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(--t285);--colorHover:var(--t285);--colorPress:var(--t285);--colorFocus:var(--t363);--background:var(--t192);--backgroundHover:var(--t357);--backgroundPress:var(--t358);--backgroundFocus:var(--t360);--backgroundActive:var(--t192);--borderColor:var(--t359);--borderColorHover:var(--t358);--borderColorFocus:var(--t359);--borderColorPress:var(--t360);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--outlineColor:var(--t381);}
|
|
829
|
+
@media(prefers-color-scheme:light){
|
|
830
|
+
.t_neutral_Button, .t_neutral_SliderThumb, .t_neutral_Switch, .t_neutral_surface2 {--color:var(--t285);--colorHover:var(--t285);--colorPress:var(--t285);--colorFocus:var(--t363);--background:var(--t192);--backgroundHover:var(--t357);--backgroundPress:var(--t358);--backgroundFocus:var(--t360);--backgroundActive:var(--t192);--borderColor:var(--t359);--borderColorHover:var(--t358);--borderColorFocus:var(--t359);--borderColorPress:var(--t360);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--outlineColor:var(--t381);}
|
|
831
|
+
}
|
|
832
|
+
: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(--t285);--colorHover:var(--t285);--colorPress:var(--t285);--colorFocus:var(--t363);--background:var(--t357);--backgroundHover:var(--t356);--backgroundPress:var(--t192);--backgroundFocus:var(--t358);--backgroundActive:var(--t357);--borderColor:var(--t358);--borderColorHover:var(--t192);--borderColorFocus:var(--t358);--borderColorPress:var(--t359);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--outlineColor:var(--t381);}
|
|
833
|
+
@media(prefers-color-scheme:light){
|
|
834
|
+
.t_neutral_Input, .t_neutral_Progress, .t_neutral_Slider, .t_neutral_TextArea, .t_neutral_surface1 {--color:var(--t285);--colorHover:var(--t285);--colorPress:var(--t285);--colorFocus:var(--t363);--background:var(--t357);--backgroundHover:var(--t356);--backgroundPress:var(--t192);--backgroundFocus:var(--t358);--backgroundActive:var(--t357);--borderColor:var(--t358);--borderColorHover:var(--t192);--borderColorFocus:var(--t358);--borderColorPress:var(--t359);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--outlineColor:var(--t381);}
|
|
835
|
+
}
|
|
836
|
+
: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(--t285);--colorHover:var(--t285);--colorPress:var(--t285);--colorFocus:var(--t363);--background:var(--t359);--backgroundHover:var(--t358);--backgroundPress:var(--t360);--backgroundFocus:var(--t285);--backgroundActive:var(--t359);--borderColor:var(--t13);--borderColorHover:var(--t360);--borderColorFocus:var(--t13);--borderColorPress:var(--t361);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--outlineColor:var(--t381);}
|
|
837
|
+
@media(prefers-color-scheme:light){
|
|
838
|
+
.t_neutral_ProgressIndicator, .t_neutral_SliderActive {--color:var(--t285);--colorHover:var(--t285);--colorPress:var(--t285);--colorFocus:var(--t363);--background:var(--t359);--backgroundHover:var(--t358);--backgroundPress:var(--t360);--backgroundFocus:var(--t285);--backgroundActive:var(--t359);--borderColor:var(--t13);--borderColorHover:var(--t360);--borderColorFocus:var(--t13);--borderColorPress:var(--t361);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--outlineColor:var(--t381);}
|
|
839
|
+
}
|
|
840
|
+
: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(--t364);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--color1:var(--t363);--color2:var(--t285);--color3:var(--t362);--color4:var(--t361);--color5:var(--t13);--color6:var(--t360);--color7:var(--t359);--color8:var(--t358);--color9:var(--t192);--color10:var(--t357);--color11:var(--t356);--color12:var(--t355);--color0:var(--t350);--color02:var(--t382);--color04:var(--t383);--color06:var(--t384);--color08:var(--t385);--color:var(--t355);--colorHover:var(--t355);--colorPress:var(--t355);--colorFocus:var(--t385);--background:var(--t285);--backgroundHover:var(--t363);--backgroundPress:var(--t362);--backgroundFocus:var(--t362);--backgroundActive:var(--t285);--borderColor:var(--t361);--borderColorHover:var(--t362);--borderColorFocus:var(--t361);--borderColorPress:var(--t13);--placeholderColor:var(--t192);--colorTransparent:var(--t350);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--outlineColor:var(--t381);}
|
|
841
|
+
@media(prefers-color-scheme:light){
|
|
842
|
+
.t_neutral_SwitchThumb, .t_neutral_Tooltip, .t_neutral_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t364);--background02:var(--t351);--background04:var(--t352);--background06:var(--t353);--background08:var(--t354);--color1:var(--t363);--color2:var(--t285);--color3:var(--t362);--color4:var(--t361);--color5:var(--t13);--color6:var(--t360);--color7:var(--t359);--color8:var(--t358);--color9:var(--t192);--color10:var(--t357);--color11:var(--t356);--color12:var(--t355);--color0:var(--t350);--color02:var(--t382);--color04:var(--t383);--color06:var(--t384);--color08:var(--t385);--color:var(--t355);--colorHover:var(--t355);--colorPress:var(--t355);--colorFocus:var(--t385);--background:var(--t285);--backgroundHover:var(--t363);--backgroundPress:var(--t362);--backgroundFocus:var(--t362);--backgroundActive:var(--t285);--borderColor:var(--t361);--borderColorHover:var(--t362);--borderColorFocus:var(--t361);--borderColorPress:var(--t13);--placeholderColor:var(--t192);--colorTransparent:var(--t350);--color01:var(--t369);--color0075:var(--t370);--color005:var(--t371);--color0025:var(--t372);--color002:var(--t373);--color001:var(--t374);--background01:var(--t375);--background0075:var(--t376);--background005:var(--t377);--background0025:var(--t378);--background002:var(--t379);--background001:var(--t380);--outlineColor:var(--t381);}
|
|
843
|
+
}
|
|
844
|
+
.t_light_neutral_SwitchThumb ::selection, .t_light_neutral_Tooltip ::selection, .t_light_neutral_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
845
|
+
:root.t_dark .t_light .t_orange, :root.t_light .t_orange, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t843);--background02:var(--t844);--background04:var(--t845);--background06:var(--t846);--background08:var(--t847);--color1:var(--t848);--color2:var(--t849);--color3:var(--t850);--color4:var(--t851);--color5:var(--t852);--color6:var(--t853);--color7:var(--t854);--color8:var(--t855);--color9:var(--t399);--color10:var(--t856);--color11:var(--t857);--color12:var(--t858);--color0:var(--t859);--color02:var(--t860);--color04:var(--t861);--color06:var(--t862);--color08:var(--t863);--color:var(--t858);--colorHover:var(--t858);--colorPress:var(--t858);--colorFocus:var(--t863);--background:var(--t849);--backgroundHover:var(--t848);--backgroundPress:var(--t850);--backgroundFocus:var(--t850);--backgroundActive:var(--t849);--borderColor:var(--t851);--borderColorHover:var(--t850);--borderColorFocus:var(--t851);--borderColorPress:var(--t852);--placeholderColor:var(--t399);--colorTransparent:var(--t859);--color01:var(--t864);--color0075:var(--t865);--color005:var(--t866);--color0025:var(--t867);--color002:var(--t868);--color001:var(--t869);--background01:var(--t870);--background0075:var(--t871);--background005:var(--t872);--background0025:var(--t873);--background002:var(--t874);--background001:var(--t875);--outlineColor:var(--t876);}
|
|
846
|
+
@media(prefers-color-scheme:light){
|
|
847
|
+
.t_orange {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t843);--background02:var(--t844);--background04:var(--t845);--background06:var(--t846);--background08:var(--t847);--color1:var(--t848);--color2:var(--t849);--color3:var(--t850);--color4:var(--t851);--color5:var(--t852);--color6:var(--t853);--color7:var(--t854);--color8:var(--t855);--color9:var(--t399);--color10:var(--t856);--color11:var(--t857);--color12:var(--t858);--color0:var(--t859);--color02:var(--t860);--color04:var(--t861);--color06:var(--t862);--color08:var(--t863);--color:var(--t858);--colorHover:var(--t858);--colorPress:var(--t858);--colorFocus:var(--t863);--background:var(--t849);--backgroundHover:var(--t848);--backgroundPress:var(--t850);--backgroundFocus:var(--t850);--backgroundActive:var(--t849);--borderColor:var(--t851);--borderColorHover:var(--t850);--borderColorFocus:var(--t851);--borderColorPress:var(--t852);--placeholderColor:var(--t399);--colorTransparent:var(--t859);--color01:var(--t864);--color0075:var(--t865);--color005:var(--t866);--color0025:var(--t867);--color002:var(--t868);--color001:var(--t869);--background01:var(--t870);--background0075:var(--t871);--background005:var(--t872);--background0025:var(--t873);--background002:var(--t874);--background001:var(--t875);--outlineColor:var(--t876);}
|
|
848
|
+
}
|
|
849
|
+
.t_light_orange ::selection{background:var(--color5);color:var(--color11)}
|
|
850
|
+
: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(--t857);--colorHover:var(--t857);--colorPress:var(--t857);--colorFocus:var(--t858);--background:var(--t851);--backgroundHover:var(--t850);--backgroundPress:var(--t852);--backgroundFocus:var(--t854);--backgroundActive:var(--t851);--borderColor:var(--t853);--borderColorHover:var(--t852);--borderColorFocus:var(--t853);--borderColorPress:var(--t854);--color01:var(--t864);--color0075:var(--t865);--color005:var(--t866);--color0025:var(--t867);--color002:var(--t868);--color001:var(--t869);--background01:var(--t870);--background0075:var(--t871);--background005:var(--t872);--background0025:var(--t873);--background002:var(--t874);--background001:var(--t875);--background02:var(--t844);--background04:var(--t845);--background06:var(--t846);--background08:var(--t847);--outlineColor:var(--t876);}
|
|
851
|
+
@media(prefers-color-scheme:light){
|
|
852
|
+
.t_orange_Button, .t_orange_SliderThumb, .t_orange_Switch, .t_orange_surface2 {--color:var(--t857);--colorHover:var(--t857);--colorPress:var(--t857);--colorFocus:var(--t858);--background:var(--t851);--backgroundHover:var(--t850);--backgroundPress:var(--t852);--backgroundFocus:var(--t854);--backgroundActive:var(--t851);--borderColor:var(--t853);--borderColorHover:var(--t852);--borderColorFocus:var(--t853);--borderColorPress:var(--t854);--color01:var(--t864);--color0075:var(--t865);--color005:var(--t866);--color0025:var(--t867);--color002:var(--t868);--color001:var(--t869);--background01:var(--t870);--background0075:var(--t871);--background005:var(--t872);--background0025:var(--t873);--background002:var(--t874);--background001:var(--t875);--background02:var(--t844);--background04:var(--t845);--background06:var(--t846);--background08:var(--t847);--outlineColor:var(--t876);}
|
|
853
|
+
}
|
|
854
|
+
: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(--t857);--colorHover:var(--t857);--colorPress:var(--t857);--colorFocus:var(--t858);--background:var(--t850);--backgroundHover:var(--t849);--backgroundPress:var(--t851);--backgroundFocus:var(--t852);--backgroundActive:var(--t850);--borderColor:var(--t852);--borderColorHover:var(--t851);--borderColorFocus:var(--t852);--borderColorPress:var(--t853);--color01:var(--t864);--color0075:var(--t865);--color005:var(--t866);--color0025:var(--t867);--color002:var(--t868);--color001:var(--t869);--background01:var(--t870);--background0075:var(--t871);--background005:var(--t872);--background0025:var(--t873);--background002:var(--t874);--background001:var(--t875);--background02:var(--t844);--background04:var(--t845);--background06:var(--t846);--background08:var(--t847);--outlineColor:var(--t876);}
|
|
855
|
+
@media(prefers-color-scheme:light){
|
|
856
|
+
.t_orange_Input, .t_orange_Progress, .t_orange_Slider, .t_orange_TextArea, .t_orange_surface1 {--color:var(--t857);--colorHover:var(--t857);--colorPress:var(--t857);--colorFocus:var(--t858);--background:var(--t850);--backgroundHover:var(--t849);--backgroundPress:var(--t851);--backgroundFocus:var(--t852);--backgroundActive:var(--t850);--borderColor:var(--t852);--borderColorHover:var(--t851);--borderColorFocus:var(--t852);--borderColorPress:var(--t853);--color01:var(--t864);--color0075:var(--t865);--color005:var(--t866);--color0025:var(--t867);--color002:var(--t868);--color001:var(--t869);--background01:var(--t870);--background0075:var(--t871);--background005:var(--t872);--background0025:var(--t873);--background002:var(--t874);--background001:var(--t875);--background02:var(--t844);--background04:var(--t845);--background06:var(--t846);--background08:var(--t847);--outlineColor:var(--t876);}
|
|
857
|
+
}
|
|
858
|
+
: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(--t857);--colorHover:var(--t857);--colorPress:var(--t857);--colorFocus:var(--t858);--background:var(--t853);--backgroundHover:var(--t852);--backgroundPress:var(--t854);--backgroundFocus:var(--t857);--backgroundActive:var(--t853);--borderColor:var(--t855);--borderColorHover:var(--t854);--borderColorFocus:var(--t855);--borderColorPress:var(--t399);--color01:var(--t864);--color0075:var(--t865);--color005:var(--t866);--color0025:var(--t867);--color002:var(--t868);--color001:var(--t869);--background01:var(--t870);--background0075:var(--t871);--background005:var(--t872);--background0025:var(--t873);--background002:var(--t874);--background001:var(--t875);--background02:var(--t844);--background04:var(--t845);--background06:var(--t846);--background08:var(--t847);--outlineColor:var(--t876);}
|
|
859
|
+
@media(prefers-color-scheme:light){
|
|
860
|
+
.t_orange_ProgressIndicator, .t_orange_SliderActive {--color:var(--t857);--colorHover:var(--t857);--colorPress:var(--t857);--colorFocus:var(--t858);--background:var(--t853);--backgroundHover:var(--t852);--backgroundPress:var(--t854);--backgroundFocus:var(--t857);--backgroundActive:var(--t853);--borderColor:var(--t855);--borderColorHover:var(--t854);--borderColorFocus:var(--t855);--borderColorPress:var(--t399);--color01:var(--t864);--color0075:var(--t865);--color005:var(--t866);--color0025:var(--t867);--color002:var(--t868);--color001:var(--t869);--background01:var(--t870);--background0075:var(--t871);--background005:var(--t872);--background0025:var(--t873);--background002:var(--t874);--background001:var(--t875);--background02:var(--t844);--background04:var(--t845);--background06:var(--t846);--background08:var(--t847);--outlineColor:var(--t876);}
|
|
861
|
+
}
|
|
862
|
+
: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(--t859);--background02:var(--t844);--background04:var(--t845);--background06:var(--t846);--background08:var(--t847);--color1:var(--t858);--color2:var(--t857);--color3:var(--t856);--color4:var(--t399);--color5:var(--t855);--color6:var(--t854);--color7:var(--t853);--color8:var(--t852);--color9:var(--t851);--color10:var(--t850);--color11:var(--t849);--color12:var(--t848);--color0:var(--t843);--color02:var(--t877);--color04:var(--t878);--color06:var(--t879);--color08:var(--t880);--color:var(--t848);--colorHover:var(--t848);--colorPress:var(--t848);--colorFocus:var(--t880);--background:var(--t857);--backgroundHover:var(--t858);--backgroundPress:var(--t856);--backgroundFocus:var(--t856);--backgroundActive:var(--t857);--borderColor:var(--t399);--borderColorHover:var(--t856);--borderColorFocus:var(--t399);--borderColorPress:var(--t855);--placeholderColor:var(--t851);--colorTransparent:var(--t843);--color01:var(--t864);--color0075:var(--t865);--color005:var(--t866);--color0025:var(--t867);--color002:var(--t868);--color001:var(--t869);--background01:var(--t870);--background0075:var(--t871);--background005:var(--t872);--background0025:var(--t873);--background002:var(--t874);--background001:var(--t875);--outlineColor:var(--t876);}
|
|
863
|
+
@media(prefers-color-scheme:light){
|
|
864
|
+
.t_orange_SwitchThumb, .t_orange_Tooltip, .t_orange_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t859);--background02:var(--t844);--background04:var(--t845);--background06:var(--t846);--background08:var(--t847);--color1:var(--t858);--color2:var(--t857);--color3:var(--t856);--color4:var(--t399);--color5:var(--t855);--color6:var(--t854);--color7:var(--t853);--color8:var(--t852);--color9:var(--t851);--color10:var(--t850);--color11:var(--t849);--color12:var(--t848);--color0:var(--t843);--color02:var(--t877);--color04:var(--t878);--color06:var(--t879);--color08:var(--t880);--color:var(--t848);--colorHover:var(--t848);--colorPress:var(--t848);--colorFocus:var(--t880);--background:var(--t857);--backgroundHover:var(--t858);--backgroundPress:var(--t856);--backgroundFocus:var(--t856);--backgroundActive:var(--t857);--borderColor:var(--t399);--borderColorHover:var(--t856);--borderColorFocus:var(--t399);--borderColorPress:var(--t855);--placeholderColor:var(--t851);--colorTransparent:var(--t843);--color01:var(--t864);--color0075:var(--t865);--color005:var(--t866);--color0025:var(--t867);--color002:var(--t868);--color001:var(--t869);--background01:var(--t870);--background0075:var(--t871);--background005:var(--t872);--background0025:var(--t873);--background002:var(--t874);--background001:var(--t875);--outlineColor:var(--t876);}
|
|
865
|
+
}
|
|
866
|
+
.t_light_orange_SwitchThumb ::selection, .t_light_orange_Tooltip ::selection, .t_light_orange_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
867
|
+
:root.t_dark .t_light .t_pink, :root.t_light .t_pink, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t881);--background02:var(--t882);--background04:var(--t883);--background06:var(--t884);--background08:var(--t885);--color1:var(--t886);--color2:var(--t887);--color3:var(--t888);--color4:var(--t889);--color5:var(--t890);--color6:var(--t891);--color7:var(--t892);--color8:var(--t893);--color9:var(--t438);--color10:var(--t894);--color11:var(--t895);--color12:var(--t896);--color0:var(--t897);--color02:var(--t898);--color04:var(--t899);--color06:var(--t900);--color08:var(--t901);--color:var(--t896);--colorHover:var(--t896);--colorPress:var(--t896);--colorFocus:var(--t901);--background:var(--t887);--backgroundHover:var(--t886);--backgroundPress:var(--t888);--backgroundFocus:var(--t888);--backgroundActive:var(--t887);--borderColor:var(--t889);--borderColorHover:var(--t888);--borderColorFocus:var(--t889);--borderColorPress:var(--t890);--placeholderColor:var(--t438);--colorTransparent:var(--t897);--color01:var(--t902);--color0075:var(--t903);--color005:var(--t904);--color0025:var(--t905);--color002:var(--t906);--color001:var(--t907);--background01:var(--t908);--background0075:var(--t909);--background005:var(--t910);--background0025:var(--t911);--background002:var(--t912);--background001:var(--t913);--outlineColor:var(--t914);}
|
|
868
|
+
@media(prefers-color-scheme:light){
|
|
869
|
+
.t_pink {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t881);--background02:var(--t882);--background04:var(--t883);--background06:var(--t884);--background08:var(--t885);--color1:var(--t886);--color2:var(--t887);--color3:var(--t888);--color4:var(--t889);--color5:var(--t890);--color6:var(--t891);--color7:var(--t892);--color8:var(--t893);--color9:var(--t438);--color10:var(--t894);--color11:var(--t895);--color12:var(--t896);--color0:var(--t897);--color02:var(--t898);--color04:var(--t899);--color06:var(--t900);--color08:var(--t901);--color:var(--t896);--colorHover:var(--t896);--colorPress:var(--t896);--colorFocus:var(--t901);--background:var(--t887);--backgroundHover:var(--t886);--backgroundPress:var(--t888);--backgroundFocus:var(--t888);--backgroundActive:var(--t887);--borderColor:var(--t889);--borderColorHover:var(--t888);--borderColorFocus:var(--t889);--borderColorPress:var(--t890);--placeholderColor:var(--t438);--colorTransparent:var(--t897);--color01:var(--t902);--color0075:var(--t903);--color005:var(--t904);--color0025:var(--t905);--color002:var(--t906);--color001:var(--t907);--background01:var(--t908);--background0075:var(--t909);--background005:var(--t910);--background0025:var(--t911);--background002:var(--t912);--background001:var(--t913);--outlineColor:var(--t914);}
|
|
870
|
+
}
|
|
871
|
+
.t_light_pink ::selection{background:var(--color5);color:var(--color11)}
|
|
872
|
+
: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(--t895);--colorHover:var(--t895);--colorPress:var(--t895);--colorFocus:var(--t896);--background:var(--t889);--backgroundHover:var(--t888);--backgroundPress:var(--t890);--backgroundFocus:var(--t892);--backgroundActive:var(--t889);--borderColor:var(--t891);--borderColorHover:var(--t890);--borderColorFocus:var(--t891);--borderColorPress:var(--t892);--color01:var(--t902);--color0075:var(--t903);--color005:var(--t904);--color0025:var(--t905);--color002:var(--t906);--color001:var(--t907);--background01:var(--t908);--background0075:var(--t909);--background005:var(--t910);--background0025:var(--t911);--background002:var(--t912);--background001:var(--t913);--background02:var(--t882);--background04:var(--t883);--background06:var(--t884);--background08:var(--t885);--outlineColor:var(--t914);}
|
|
873
|
+
@media(prefers-color-scheme:light){
|
|
874
|
+
.t_pink_Button, .t_pink_SliderThumb, .t_pink_Switch, .t_pink_surface2 {--color:var(--t895);--colorHover:var(--t895);--colorPress:var(--t895);--colorFocus:var(--t896);--background:var(--t889);--backgroundHover:var(--t888);--backgroundPress:var(--t890);--backgroundFocus:var(--t892);--backgroundActive:var(--t889);--borderColor:var(--t891);--borderColorHover:var(--t890);--borderColorFocus:var(--t891);--borderColorPress:var(--t892);--color01:var(--t902);--color0075:var(--t903);--color005:var(--t904);--color0025:var(--t905);--color002:var(--t906);--color001:var(--t907);--background01:var(--t908);--background0075:var(--t909);--background005:var(--t910);--background0025:var(--t911);--background002:var(--t912);--background001:var(--t913);--background02:var(--t882);--background04:var(--t883);--background06:var(--t884);--background08:var(--t885);--outlineColor:var(--t914);}
|
|
875
|
+
}
|
|
876
|
+
: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(--t895);--colorHover:var(--t895);--colorPress:var(--t895);--colorFocus:var(--t896);--background:var(--t888);--backgroundHover:var(--t887);--backgroundPress:var(--t889);--backgroundFocus:var(--t890);--backgroundActive:var(--t888);--borderColor:var(--t890);--borderColorHover:var(--t889);--borderColorFocus:var(--t890);--borderColorPress:var(--t891);--color01:var(--t902);--color0075:var(--t903);--color005:var(--t904);--color0025:var(--t905);--color002:var(--t906);--color001:var(--t907);--background01:var(--t908);--background0075:var(--t909);--background005:var(--t910);--background0025:var(--t911);--background002:var(--t912);--background001:var(--t913);--background02:var(--t882);--background04:var(--t883);--background06:var(--t884);--background08:var(--t885);--outlineColor:var(--t914);}
|
|
877
|
+
@media(prefers-color-scheme:light){
|
|
878
|
+
.t_pink_Input, .t_pink_Progress, .t_pink_Slider, .t_pink_TextArea, .t_pink_surface1 {--color:var(--t895);--colorHover:var(--t895);--colorPress:var(--t895);--colorFocus:var(--t896);--background:var(--t888);--backgroundHover:var(--t887);--backgroundPress:var(--t889);--backgroundFocus:var(--t890);--backgroundActive:var(--t888);--borderColor:var(--t890);--borderColorHover:var(--t889);--borderColorFocus:var(--t890);--borderColorPress:var(--t891);--color01:var(--t902);--color0075:var(--t903);--color005:var(--t904);--color0025:var(--t905);--color002:var(--t906);--color001:var(--t907);--background01:var(--t908);--background0075:var(--t909);--background005:var(--t910);--background0025:var(--t911);--background002:var(--t912);--background001:var(--t913);--background02:var(--t882);--background04:var(--t883);--background06:var(--t884);--background08:var(--t885);--outlineColor:var(--t914);}
|
|
879
|
+
}
|
|
880
|
+
: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(--t895);--colorHover:var(--t895);--colorPress:var(--t895);--colorFocus:var(--t896);--background:var(--t891);--backgroundHover:var(--t890);--backgroundPress:var(--t892);--backgroundFocus:var(--t895);--backgroundActive:var(--t891);--borderColor:var(--t893);--borderColorHover:var(--t892);--borderColorFocus:var(--t893);--borderColorPress:var(--t438);--color01:var(--t902);--color0075:var(--t903);--color005:var(--t904);--color0025:var(--t905);--color002:var(--t906);--color001:var(--t907);--background01:var(--t908);--background0075:var(--t909);--background005:var(--t910);--background0025:var(--t911);--background002:var(--t912);--background001:var(--t913);--background02:var(--t882);--background04:var(--t883);--background06:var(--t884);--background08:var(--t885);--outlineColor:var(--t914);}
|
|
881
|
+
@media(prefers-color-scheme:light){
|
|
882
|
+
.t_pink_ProgressIndicator, .t_pink_SliderActive {--color:var(--t895);--colorHover:var(--t895);--colorPress:var(--t895);--colorFocus:var(--t896);--background:var(--t891);--backgroundHover:var(--t890);--backgroundPress:var(--t892);--backgroundFocus:var(--t895);--backgroundActive:var(--t891);--borderColor:var(--t893);--borderColorHover:var(--t892);--borderColorFocus:var(--t893);--borderColorPress:var(--t438);--color01:var(--t902);--color0075:var(--t903);--color005:var(--t904);--color0025:var(--t905);--color002:var(--t906);--color001:var(--t907);--background01:var(--t908);--background0075:var(--t909);--background005:var(--t910);--background0025:var(--t911);--background002:var(--t912);--background001:var(--t913);--background02:var(--t882);--background04:var(--t883);--background06:var(--t884);--background08:var(--t885);--outlineColor:var(--t914);}
|
|
883
|
+
}
|
|
884
|
+
: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(--t897);--background02:var(--t882);--background04:var(--t883);--background06:var(--t884);--background08:var(--t885);--color1:var(--t896);--color2:var(--t895);--color3:var(--t894);--color4:var(--t438);--color5:var(--t893);--color6:var(--t892);--color7:var(--t891);--color8:var(--t890);--color9:var(--t889);--color10:var(--t888);--color11:var(--t887);--color12:var(--t886);--color0:var(--t881);--color02:var(--t915);--color04:var(--t916);--color06:var(--t917);--color08:var(--t918);--color:var(--t886);--colorHover:var(--t886);--colorPress:var(--t886);--colorFocus:var(--t918);--background:var(--t895);--backgroundHover:var(--t896);--backgroundPress:var(--t894);--backgroundFocus:var(--t894);--backgroundActive:var(--t895);--borderColor:var(--t438);--borderColorHover:var(--t894);--borderColorFocus:var(--t438);--borderColorPress:var(--t893);--placeholderColor:var(--t889);--colorTransparent:var(--t881);--color01:var(--t902);--color0075:var(--t903);--color005:var(--t904);--color0025:var(--t905);--color002:var(--t906);--color001:var(--t907);--background01:var(--t908);--background0075:var(--t909);--background005:var(--t910);--background0025:var(--t911);--background002:var(--t912);--background001:var(--t913);--outlineColor:var(--t914);}
|
|
885
|
+
@media(prefers-color-scheme:light){
|
|
886
|
+
.t_pink_SwitchThumb, .t_pink_Tooltip, .t_pink_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t897);--background02:var(--t882);--background04:var(--t883);--background06:var(--t884);--background08:var(--t885);--color1:var(--t896);--color2:var(--t895);--color3:var(--t894);--color4:var(--t438);--color5:var(--t893);--color6:var(--t892);--color7:var(--t891);--color8:var(--t890);--color9:var(--t889);--color10:var(--t888);--color11:var(--t887);--color12:var(--t886);--color0:var(--t881);--color02:var(--t915);--color04:var(--t916);--color06:var(--t917);--color08:var(--t918);--color:var(--t886);--colorHover:var(--t886);--colorPress:var(--t886);--colorFocus:var(--t918);--background:var(--t895);--backgroundHover:var(--t896);--backgroundPress:var(--t894);--backgroundFocus:var(--t894);--backgroundActive:var(--t895);--borderColor:var(--t438);--borderColorHover:var(--t894);--borderColorFocus:var(--t438);--borderColorPress:var(--t893);--placeholderColor:var(--t889);--colorTransparent:var(--t881);--color01:var(--t902);--color0075:var(--t903);--color005:var(--t904);--color0025:var(--t905);--color002:var(--t906);--color001:var(--t907);--background01:var(--t908);--background0075:var(--t909);--background005:var(--t910);--background0025:var(--t911);--background002:var(--t912);--background001:var(--t913);--outlineColor:var(--t914);}
|
|
887
|
+
}
|
|
888
|
+
.t_light_pink_SwitchThumb ::selection, .t_light_pink_Tooltip ::selection, .t_light_pink_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
889
|
+
:root.t_dark .t_light .t_purple, :root.t_light .t_purple, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t919);--background02:var(--t920);--background04:var(--t921);--background06:var(--t922);--background08:var(--t923);--color1:var(--t924);--color2:var(--t925);--color3:var(--t926);--color4:var(--t927);--color5:var(--t928);--color6:var(--t929);--color7:var(--t930);--color8:var(--t931);--color9:var(--t477);--color10:var(--t932);--color11:var(--t933);--color12:var(--t934);--color0:var(--t935);--color02:var(--t936);--color04:var(--t937);--color06:var(--t938);--color08:var(--t939);--color:var(--t934);--colorHover:var(--t934);--colorPress:var(--t934);--colorFocus:var(--t939);--background:var(--t925);--backgroundHover:var(--t924);--backgroundPress:var(--t926);--backgroundFocus:var(--t926);--backgroundActive:var(--t925);--borderColor:var(--t927);--borderColorHover:var(--t926);--borderColorFocus:var(--t927);--borderColorPress:var(--t928);--placeholderColor:var(--t477);--colorTransparent:var(--t935);--color01:var(--t940);--color0075:var(--t941);--color005:var(--t942);--color0025:var(--t943);--color002:var(--t944);--color001:var(--t945);--background01:var(--t946);--background0075:var(--t947);--background005:var(--t948);--background0025:var(--t949);--background002:var(--t950);--background001:var(--t951);--outlineColor:var(--t952);}
|
|
890
|
+
@media(prefers-color-scheme:light){
|
|
891
|
+
.t_purple {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t919);--background02:var(--t920);--background04:var(--t921);--background06:var(--t922);--background08:var(--t923);--color1:var(--t924);--color2:var(--t925);--color3:var(--t926);--color4:var(--t927);--color5:var(--t928);--color6:var(--t929);--color7:var(--t930);--color8:var(--t931);--color9:var(--t477);--color10:var(--t932);--color11:var(--t933);--color12:var(--t934);--color0:var(--t935);--color02:var(--t936);--color04:var(--t937);--color06:var(--t938);--color08:var(--t939);--color:var(--t934);--colorHover:var(--t934);--colorPress:var(--t934);--colorFocus:var(--t939);--background:var(--t925);--backgroundHover:var(--t924);--backgroundPress:var(--t926);--backgroundFocus:var(--t926);--backgroundActive:var(--t925);--borderColor:var(--t927);--borderColorHover:var(--t926);--borderColorFocus:var(--t927);--borderColorPress:var(--t928);--placeholderColor:var(--t477);--colorTransparent:var(--t935);--color01:var(--t940);--color0075:var(--t941);--color005:var(--t942);--color0025:var(--t943);--color002:var(--t944);--color001:var(--t945);--background01:var(--t946);--background0075:var(--t947);--background005:var(--t948);--background0025:var(--t949);--background002:var(--t950);--background001:var(--t951);--outlineColor:var(--t952);}
|
|
892
|
+
}
|
|
893
|
+
.t_light_purple ::selection{background:var(--color5);color:var(--color11)}
|
|
894
|
+
: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(--t933);--colorHover:var(--t933);--colorPress:var(--t933);--colorFocus:var(--t934);--background:var(--t927);--backgroundHover:var(--t926);--backgroundPress:var(--t928);--backgroundFocus:var(--t930);--backgroundActive:var(--t927);--borderColor:var(--t929);--borderColorHover:var(--t928);--borderColorFocus:var(--t929);--borderColorPress:var(--t930);--color01:var(--t940);--color0075:var(--t941);--color005:var(--t942);--color0025:var(--t943);--color002:var(--t944);--color001:var(--t945);--background01:var(--t946);--background0075:var(--t947);--background005:var(--t948);--background0025:var(--t949);--background002:var(--t950);--background001:var(--t951);--background02:var(--t920);--background04:var(--t921);--background06:var(--t922);--background08:var(--t923);--outlineColor:var(--t952);}
|
|
895
|
+
@media(prefers-color-scheme:light){
|
|
896
|
+
.t_purple_Button, .t_purple_SliderThumb, .t_purple_Switch, .t_purple_surface2 {--color:var(--t933);--colorHover:var(--t933);--colorPress:var(--t933);--colorFocus:var(--t934);--background:var(--t927);--backgroundHover:var(--t926);--backgroundPress:var(--t928);--backgroundFocus:var(--t930);--backgroundActive:var(--t927);--borderColor:var(--t929);--borderColorHover:var(--t928);--borderColorFocus:var(--t929);--borderColorPress:var(--t930);--color01:var(--t940);--color0075:var(--t941);--color005:var(--t942);--color0025:var(--t943);--color002:var(--t944);--color001:var(--t945);--background01:var(--t946);--background0075:var(--t947);--background005:var(--t948);--background0025:var(--t949);--background002:var(--t950);--background001:var(--t951);--background02:var(--t920);--background04:var(--t921);--background06:var(--t922);--background08:var(--t923);--outlineColor:var(--t952);}
|
|
897
|
+
}
|
|
898
|
+
: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(--t933);--colorHover:var(--t933);--colorPress:var(--t933);--colorFocus:var(--t934);--background:var(--t926);--backgroundHover:var(--t925);--backgroundPress:var(--t927);--backgroundFocus:var(--t928);--backgroundActive:var(--t926);--borderColor:var(--t928);--borderColorHover:var(--t927);--borderColorFocus:var(--t928);--borderColorPress:var(--t929);--color01:var(--t940);--color0075:var(--t941);--color005:var(--t942);--color0025:var(--t943);--color002:var(--t944);--color001:var(--t945);--background01:var(--t946);--background0075:var(--t947);--background005:var(--t948);--background0025:var(--t949);--background002:var(--t950);--background001:var(--t951);--background02:var(--t920);--background04:var(--t921);--background06:var(--t922);--background08:var(--t923);--outlineColor:var(--t952);}
|
|
899
|
+
@media(prefers-color-scheme:light){
|
|
900
|
+
.t_purple_Input, .t_purple_Progress, .t_purple_Slider, .t_purple_TextArea, .t_purple_surface1 {--color:var(--t933);--colorHover:var(--t933);--colorPress:var(--t933);--colorFocus:var(--t934);--background:var(--t926);--backgroundHover:var(--t925);--backgroundPress:var(--t927);--backgroundFocus:var(--t928);--backgroundActive:var(--t926);--borderColor:var(--t928);--borderColorHover:var(--t927);--borderColorFocus:var(--t928);--borderColorPress:var(--t929);--color01:var(--t940);--color0075:var(--t941);--color005:var(--t942);--color0025:var(--t943);--color002:var(--t944);--color001:var(--t945);--background01:var(--t946);--background0075:var(--t947);--background005:var(--t948);--background0025:var(--t949);--background002:var(--t950);--background001:var(--t951);--background02:var(--t920);--background04:var(--t921);--background06:var(--t922);--background08:var(--t923);--outlineColor:var(--t952);}
|
|
901
|
+
}
|
|
902
|
+
: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(--t933);--colorHover:var(--t933);--colorPress:var(--t933);--colorFocus:var(--t934);--background:var(--t929);--backgroundHover:var(--t928);--backgroundPress:var(--t930);--backgroundFocus:var(--t933);--backgroundActive:var(--t929);--borderColor:var(--t931);--borderColorHover:var(--t930);--borderColorFocus:var(--t931);--borderColorPress:var(--t477);--color01:var(--t940);--color0075:var(--t941);--color005:var(--t942);--color0025:var(--t943);--color002:var(--t944);--color001:var(--t945);--background01:var(--t946);--background0075:var(--t947);--background005:var(--t948);--background0025:var(--t949);--background002:var(--t950);--background001:var(--t951);--background02:var(--t920);--background04:var(--t921);--background06:var(--t922);--background08:var(--t923);--outlineColor:var(--t952);}
|
|
903
|
+
@media(prefers-color-scheme:light){
|
|
904
|
+
.t_purple_ProgressIndicator, .t_purple_SliderActive {--color:var(--t933);--colorHover:var(--t933);--colorPress:var(--t933);--colorFocus:var(--t934);--background:var(--t929);--backgroundHover:var(--t928);--backgroundPress:var(--t930);--backgroundFocus:var(--t933);--backgroundActive:var(--t929);--borderColor:var(--t931);--borderColorHover:var(--t930);--borderColorFocus:var(--t931);--borderColorPress:var(--t477);--color01:var(--t940);--color0075:var(--t941);--color005:var(--t942);--color0025:var(--t943);--color002:var(--t944);--color001:var(--t945);--background01:var(--t946);--background0075:var(--t947);--background005:var(--t948);--background0025:var(--t949);--background002:var(--t950);--background001:var(--t951);--background02:var(--t920);--background04:var(--t921);--background06:var(--t922);--background08:var(--t923);--outlineColor:var(--t952);}
|
|
905
|
+
}
|
|
906
|
+
: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(--t935);--background02:var(--t920);--background04:var(--t921);--background06:var(--t922);--background08:var(--t923);--color1:var(--t934);--color2:var(--t933);--color3:var(--t932);--color4:var(--t477);--color5:var(--t931);--color6:var(--t930);--color7:var(--t929);--color8:var(--t928);--color9:var(--t927);--color10:var(--t926);--color11:var(--t925);--color12:var(--t924);--color0:var(--t919);--color02:var(--t953);--color04:var(--t954);--color06:var(--t955);--color08:var(--t956);--color:var(--t924);--colorHover:var(--t924);--colorPress:var(--t924);--colorFocus:var(--t956);--background:var(--t933);--backgroundHover:var(--t934);--backgroundPress:var(--t932);--backgroundFocus:var(--t932);--backgroundActive:var(--t933);--borderColor:var(--t477);--borderColorHover:var(--t932);--borderColorFocus:var(--t477);--borderColorPress:var(--t931);--placeholderColor:var(--t927);--colorTransparent:var(--t919);--color01:var(--t940);--color0075:var(--t941);--color005:var(--t942);--color0025:var(--t943);--color002:var(--t944);--color001:var(--t945);--background01:var(--t946);--background0075:var(--t947);--background005:var(--t948);--background0025:var(--t949);--background002:var(--t950);--background001:var(--t951);--outlineColor:var(--t952);}
|
|
907
|
+
@media(prefers-color-scheme:light){
|
|
908
|
+
.t_purple_SwitchThumb, .t_purple_Tooltip, .t_purple_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t935);--background02:var(--t920);--background04:var(--t921);--background06:var(--t922);--background08:var(--t923);--color1:var(--t934);--color2:var(--t933);--color3:var(--t932);--color4:var(--t477);--color5:var(--t931);--color6:var(--t930);--color7:var(--t929);--color8:var(--t928);--color9:var(--t927);--color10:var(--t926);--color11:var(--t925);--color12:var(--t924);--color0:var(--t919);--color02:var(--t953);--color04:var(--t954);--color06:var(--t955);--color08:var(--t956);--color:var(--t924);--colorHover:var(--t924);--colorPress:var(--t924);--colorFocus:var(--t956);--background:var(--t933);--backgroundHover:var(--t934);--backgroundPress:var(--t932);--backgroundFocus:var(--t932);--backgroundActive:var(--t933);--borderColor:var(--t477);--borderColorHover:var(--t932);--borderColorFocus:var(--t477);--borderColorPress:var(--t931);--placeholderColor:var(--t927);--colorTransparent:var(--t919);--color01:var(--t940);--color0075:var(--t941);--color005:var(--t942);--color0025:var(--t943);--color002:var(--t944);--color001:var(--t945);--background01:var(--t946);--background0075:var(--t947);--background005:var(--t948);--background0025:var(--t949);--background002:var(--t950);--background001:var(--t951);--outlineColor:var(--t952);}
|
|
909
|
+
}
|
|
910
|
+
.t_light_purple_SwitchThumb ::selection, .t_light_purple_Tooltip ::selection, .t_light_purple_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
911
|
+
:root.t_dark .t_light .t_red, :root.t_light .t_red, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t957);--background02:var(--t958);--background04:var(--t959);--background06:var(--t960);--background08:var(--t961);--color1:var(--t962);--color2:var(--t963);--color3:var(--t964);--color4:var(--t965);--color5:var(--t966);--color6:var(--t967);--color7:var(--t968);--color8:var(--t969);--color9:var(--t516);--color10:var(--t970);--color11:var(--t971);--color12:var(--t972);--color0:var(--t973);--color02:var(--t974);--color04:var(--t975);--color06:var(--t976);--color08:var(--t977);--color:var(--t972);--colorHover:var(--t972);--colorPress:var(--t972);--colorFocus:var(--t977);--background:var(--t963);--backgroundHover:var(--t962);--backgroundPress:var(--t964);--backgroundFocus:var(--t964);--backgroundActive:var(--t963);--borderColor:var(--t965);--borderColorHover:var(--t964);--borderColorFocus:var(--t965);--borderColorPress:var(--t966);--placeholderColor:var(--t516);--colorTransparent:var(--t973);--color01:var(--t978);--color0075:var(--t979);--color005:var(--t980);--color0025:var(--t981);--color002:var(--t982);--color001:var(--t983);--background01:var(--t984);--background0075:var(--t985);--background005:var(--t986);--background0025:var(--t987);--background002:var(--t988);--background001:var(--t989);--outlineColor:var(--t990);}
|
|
912
|
+
@media(prefers-color-scheme:light){
|
|
913
|
+
.t_red {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t957);--background02:var(--t958);--background04:var(--t959);--background06:var(--t960);--background08:var(--t961);--color1:var(--t962);--color2:var(--t963);--color3:var(--t964);--color4:var(--t965);--color5:var(--t966);--color6:var(--t967);--color7:var(--t968);--color8:var(--t969);--color9:var(--t516);--color10:var(--t970);--color11:var(--t971);--color12:var(--t972);--color0:var(--t973);--color02:var(--t974);--color04:var(--t975);--color06:var(--t976);--color08:var(--t977);--color:var(--t972);--colorHover:var(--t972);--colorPress:var(--t972);--colorFocus:var(--t977);--background:var(--t963);--backgroundHover:var(--t962);--backgroundPress:var(--t964);--backgroundFocus:var(--t964);--backgroundActive:var(--t963);--borderColor:var(--t965);--borderColorHover:var(--t964);--borderColorFocus:var(--t965);--borderColorPress:var(--t966);--placeholderColor:var(--t516);--colorTransparent:var(--t973);--color01:var(--t978);--color0075:var(--t979);--color005:var(--t980);--color0025:var(--t981);--color002:var(--t982);--color001:var(--t983);--background01:var(--t984);--background0075:var(--t985);--background005:var(--t986);--background0025:var(--t987);--background002:var(--t988);--background001:var(--t989);--outlineColor:var(--t990);}
|
|
914
|
+
}
|
|
915
|
+
.t_light_red ::selection{background:var(--color5);color:var(--color11)}
|
|
916
|
+
: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(--t971);--colorHover:var(--t971);--colorPress:var(--t971);--colorFocus:var(--t972);--background:var(--t965);--backgroundHover:var(--t964);--backgroundPress:var(--t966);--backgroundFocus:var(--t968);--backgroundActive:var(--t965);--borderColor:var(--t967);--borderColorHover:var(--t966);--borderColorFocus:var(--t967);--borderColorPress:var(--t968);--color01:var(--t978);--color0075:var(--t979);--color005:var(--t980);--color0025:var(--t981);--color002:var(--t982);--color001:var(--t983);--background01:var(--t984);--background0075:var(--t985);--background005:var(--t986);--background0025:var(--t987);--background002:var(--t988);--background001:var(--t989);--background02:var(--t958);--background04:var(--t959);--background06:var(--t960);--background08:var(--t961);--outlineColor:var(--t990);}
|
|
917
|
+
@media(prefers-color-scheme:light){
|
|
918
|
+
.t_red_Button, .t_red_SliderThumb, .t_red_Switch, .t_red_surface2 {--color:var(--t971);--colorHover:var(--t971);--colorPress:var(--t971);--colorFocus:var(--t972);--background:var(--t965);--backgroundHover:var(--t964);--backgroundPress:var(--t966);--backgroundFocus:var(--t968);--backgroundActive:var(--t965);--borderColor:var(--t967);--borderColorHover:var(--t966);--borderColorFocus:var(--t967);--borderColorPress:var(--t968);--color01:var(--t978);--color0075:var(--t979);--color005:var(--t980);--color0025:var(--t981);--color002:var(--t982);--color001:var(--t983);--background01:var(--t984);--background0075:var(--t985);--background005:var(--t986);--background0025:var(--t987);--background002:var(--t988);--background001:var(--t989);--background02:var(--t958);--background04:var(--t959);--background06:var(--t960);--background08:var(--t961);--outlineColor:var(--t990);}
|
|
919
|
+
}
|
|
920
|
+
: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(--t971);--colorHover:var(--t971);--colorPress:var(--t971);--colorFocus:var(--t972);--background:var(--t964);--backgroundHover:var(--t963);--backgroundPress:var(--t965);--backgroundFocus:var(--t966);--backgroundActive:var(--t964);--borderColor:var(--t966);--borderColorHover:var(--t965);--borderColorFocus:var(--t966);--borderColorPress:var(--t967);--color01:var(--t978);--color0075:var(--t979);--color005:var(--t980);--color0025:var(--t981);--color002:var(--t982);--color001:var(--t983);--background01:var(--t984);--background0075:var(--t985);--background005:var(--t986);--background0025:var(--t987);--background002:var(--t988);--background001:var(--t989);--background02:var(--t958);--background04:var(--t959);--background06:var(--t960);--background08:var(--t961);--outlineColor:var(--t990);}
|
|
921
|
+
@media(prefers-color-scheme:light){
|
|
922
|
+
.t_red_Input, .t_red_Progress, .t_red_Slider, .t_red_TextArea, .t_red_surface1 {--color:var(--t971);--colorHover:var(--t971);--colorPress:var(--t971);--colorFocus:var(--t972);--background:var(--t964);--backgroundHover:var(--t963);--backgroundPress:var(--t965);--backgroundFocus:var(--t966);--backgroundActive:var(--t964);--borderColor:var(--t966);--borderColorHover:var(--t965);--borderColorFocus:var(--t966);--borderColorPress:var(--t967);--color01:var(--t978);--color0075:var(--t979);--color005:var(--t980);--color0025:var(--t981);--color002:var(--t982);--color001:var(--t983);--background01:var(--t984);--background0075:var(--t985);--background005:var(--t986);--background0025:var(--t987);--background002:var(--t988);--background001:var(--t989);--background02:var(--t958);--background04:var(--t959);--background06:var(--t960);--background08:var(--t961);--outlineColor:var(--t990);}
|
|
923
|
+
}
|
|
924
|
+
: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(--t971);--colorHover:var(--t971);--colorPress:var(--t971);--colorFocus:var(--t972);--background:var(--t967);--backgroundHover:var(--t966);--backgroundPress:var(--t968);--backgroundFocus:var(--t971);--backgroundActive:var(--t967);--borderColor:var(--t969);--borderColorHover:var(--t968);--borderColorFocus:var(--t969);--borderColorPress:var(--t516);--color01:var(--t978);--color0075:var(--t979);--color005:var(--t980);--color0025:var(--t981);--color002:var(--t982);--color001:var(--t983);--background01:var(--t984);--background0075:var(--t985);--background005:var(--t986);--background0025:var(--t987);--background002:var(--t988);--background001:var(--t989);--background02:var(--t958);--background04:var(--t959);--background06:var(--t960);--background08:var(--t961);--outlineColor:var(--t990);}
|
|
925
|
+
@media(prefers-color-scheme:light){
|
|
926
|
+
.t_red_ProgressIndicator, .t_red_SliderActive {--color:var(--t971);--colorHover:var(--t971);--colorPress:var(--t971);--colorFocus:var(--t972);--background:var(--t967);--backgroundHover:var(--t966);--backgroundPress:var(--t968);--backgroundFocus:var(--t971);--backgroundActive:var(--t967);--borderColor:var(--t969);--borderColorHover:var(--t968);--borderColorFocus:var(--t969);--borderColorPress:var(--t516);--color01:var(--t978);--color0075:var(--t979);--color005:var(--t980);--color0025:var(--t981);--color002:var(--t982);--color001:var(--t983);--background01:var(--t984);--background0075:var(--t985);--background005:var(--t986);--background0025:var(--t987);--background002:var(--t988);--background001:var(--t989);--background02:var(--t958);--background04:var(--t959);--background06:var(--t960);--background08:var(--t961);--outlineColor:var(--t990);}
|
|
927
|
+
}
|
|
928
|
+
: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(--t973);--background02:var(--t958);--background04:var(--t959);--background06:var(--t960);--background08:var(--t961);--color1:var(--t972);--color2:var(--t971);--color3:var(--t970);--color4:var(--t516);--color5:var(--t969);--color6:var(--t968);--color7:var(--t967);--color8:var(--t966);--color9:var(--t965);--color10:var(--t964);--color11:var(--t963);--color12:var(--t962);--color0:var(--t957);--color02:var(--t991);--color04:var(--t992);--color06:var(--t993);--color08:var(--t994);--color:var(--t962);--colorHover:var(--t962);--colorPress:var(--t962);--colorFocus:var(--t994);--background:var(--t971);--backgroundHover:var(--t972);--backgroundPress:var(--t970);--backgroundFocus:var(--t970);--backgroundActive:var(--t971);--borderColor:var(--t516);--borderColorHover:var(--t970);--borderColorFocus:var(--t516);--borderColorPress:var(--t969);--placeholderColor:var(--t965);--colorTransparent:var(--t957);--color01:var(--t978);--color0075:var(--t979);--color005:var(--t980);--color0025:var(--t981);--color002:var(--t982);--color001:var(--t983);--background01:var(--t984);--background0075:var(--t985);--background005:var(--t986);--background0025:var(--t987);--background002:var(--t988);--background001:var(--t989);--outlineColor:var(--t990);}
|
|
929
|
+
@media(prefers-color-scheme:light){
|
|
930
|
+
.t_red_SwitchThumb, .t_red_Tooltip, .t_red_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t973);--background02:var(--t958);--background04:var(--t959);--background06:var(--t960);--background08:var(--t961);--color1:var(--t972);--color2:var(--t971);--color3:var(--t970);--color4:var(--t516);--color5:var(--t969);--color6:var(--t968);--color7:var(--t967);--color8:var(--t966);--color9:var(--t965);--color10:var(--t964);--color11:var(--t963);--color12:var(--t962);--color0:var(--t957);--color02:var(--t991);--color04:var(--t992);--color06:var(--t993);--color08:var(--t994);--color:var(--t962);--colorHover:var(--t962);--colorPress:var(--t962);--colorFocus:var(--t994);--background:var(--t971);--backgroundHover:var(--t972);--backgroundPress:var(--t970);--backgroundFocus:var(--t970);--backgroundActive:var(--t971);--borderColor:var(--t516);--borderColorHover:var(--t970);--borderColorFocus:var(--t516);--borderColorPress:var(--t969);--placeholderColor:var(--t965);--colorTransparent:var(--t957);--color01:var(--t978);--color0075:var(--t979);--color005:var(--t980);--color0025:var(--t981);--color002:var(--t982);--color001:var(--t983);--background01:var(--t984);--background0075:var(--t985);--background005:var(--t986);--background0025:var(--t987);--background002:var(--t988);--background001:var(--t989);--outlineColor:var(--t990);}
|
|
931
|
+
}
|
|
932
|
+
.t_light_red_SwitchThumb ::selection, .t_light_red_Tooltip ::selection, .t_light_red_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
933
|
+
:root.t_dark .t_light .t_teal, :root.t_light .t_teal, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t995);--background02:var(--t996);--background04:var(--t997);--background06:var(--t998);--background08:var(--t999);--color1:var(--t1000);--color2:var(--t1001);--color3:var(--t1002);--color4:var(--t1003);--color5:var(--t1004);--color6:var(--t1005);--color7:var(--t1006);--color8:var(--t1007);--color9:var(--t555);--color10:var(--t1008);--color11:var(--t1009);--color12:var(--t1010);--color0:var(--t1011);--color02:var(--t1012);--color04:var(--t1013);--color06:var(--t1014);--color08:var(--t1015);--color:var(--t1010);--colorHover:var(--t1010);--colorPress:var(--t1010);--colorFocus:var(--t1015);--background:var(--t1001);--backgroundHover:var(--t1000);--backgroundPress:var(--t1002);--backgroundFocus:var(--t1002);--backgroundActive:var(--t1001);--borderColor:var(--t1003);--borderColorHover:var(--t1002);--borderColorFocus:var(--t1003);--borderColorPress:var(--t1004);--placeholderColor:var(--t555);--colorTransparent:var(--t1011);--color01:var(--t1016);--color0075:var(--t1017);--color005:var(--t1018);--color0025:var(--t1019);--color002:var(--t1020);--color001:var(--t1021);--background01:var(--t1022);--background0075:var(--t1023);--background005:var(--t1024);--background0025:var(--t1025);--background002:var(--t1026);--background001:var(--t1027);--outlineColor:var(--t1028);}
|
|
934
|
+
@media(prefers-color-scheme:light){
|
|
935
|
+
.t_teal {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t995);--background02:var(--t996);--background04:var(--t997);--background06:var(--t998);--background08:var(--t999);--color1:var(--t1000);--color2:var(--t1001);--color3:var(--t1002);--color4:var(--t1003);--color5:var(--t1004);--color6:var(--t1005);--color7:var(--t1006);--color8:var(--t1007);--color9:var(--t555);--color10:var(--t1008);--color11:var(--t1009);--color12:var(--t1010);--color0:var(--t1011);--color02:var(--t1012);--color04:var(--t1013);--color06:var(--t1014);--color08:var(--t1015);--color:var(--t1010);--colorHover:var(--t1010);--colorPress:var(--t1010);--colorFocus:var(--t1015);--background:var(--t1001);--backgroundHover:var(--t1000);--backgroundPress:var(--t1002);--backgroundFocus:var(--t1002);--backgroundActive:var(--t1001);--borderColor:var(--t1003);--borderColorHover:var(--t1002);--borderColorFocus:var(--t1003);--borderColorPress:var(--t1004);--placeholderColor:var(--t555);--colorTransparent:var(--t1011);--color01:var(--t1016);--color0075:var(--t1017);--color005:var(--t1018);--color0025:var(--t1019);--color002:var(--t1020);--color001:var(--t1021);--background01:var(--t1022);--background0075:var(--t1023);--background005:var(--t1024);--background0025:var(--t1025);--background002:var(--t1026);--background001:var(--t1027);--outlineColor:var(--t1028);}
|
|
936
|
+
}
|
|
937
|
+
.t_light_teal ::selection{background:var(--color5);color:var(--color11)}
|
|
938
|
+
: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(--t1009);--colorHover:var(--t1009);--colorPress:var(--t1009);--colorFocus:var(--t1010);--background:var(--t1003);--backgroundHover:var(--t1002);--backgroundPress:var(--t1004);--backgroundFocus:var(--t1006);--backgroundActive:var(--t1003);--borderColor:var(--t1005);--borderColorHover:var(--t1004);--borderColorFocus:var(--t1005);--borderColorPress:var(--t1006);--color01:var(--t1016);--color0075:var(--t1017);--color005:var(--t1018);--color0025:var(--t1019);--color002:var(--t1020);--color001:var(--t1021);--background01:var(--t1022);--background0075:var(--t1023);--background005:var(--t1024);--background0025:var(--t1025);--background002:var(--t1026);--background001:var(--t1027);--background02:var(--t996);--background04:var(--t997);--background06:var(--t998);--background08:var(--t999);--outlineColor:var(--t1028);}
|
|
939
|
+
@media(prefers-color-scheme:light){
|
|
940
|
+
.t_teal_Button, .t_teal_SliderThumb, .t_teal_Switch, .t_teal_surface2 {--color:var(--t1009);--colorHover:var(--t1009);--colorPress:var(--t1009);--colorFocus:var(--t1010);--background:var(--t1003);--backgroundHover:var(--t1002);--backgroundPress:var(--t1004);--backgroundFocus:var(--t1006);--backgroundActive:var(--t1003);--borderColor:var(--t1005);--borderColorHover:var(--t1004);--borderColorFocus:var(--t1005);--borderColorPress:var(--t1006);--color01:var(--t1016);--color0075:var(--t1017);--color005:var(--t1018);--color0025:var(--t1019);--color002:var(--t1020);--color001:var(--t1021);--background01:var(--t1022);--background0075:var(--t1023);--background005:var(--t1024);--background0025:var(--t1025);--background002:var(--t1026);--background001:var(--t1027);--background02:var(--t996);--background04:var(--t997);--background06:var(--t998);--background08:var(--t999);--outlineColor:var(--t1028);}
|
|
941
|
+
}
|
|
942
|
+
: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(--t1009);--colorHover:var(--t1009);--colorPress:var(--t1009);--colorFocus:var(--t1010);--background:var(--t1002);--backgroundHover:var(--t1001);--backgroundPress:var(--t1003);--backgroundFocus:var(--t1004);--backgroundActive:var(--t1002);--borderColor:var(--t1004);--borderColorHover:var(--t1003);--borderColorFocus:var(--t1004);--borderColorPress:var(--t1005);--color01:var(--t1016);--color0075:var(--t1017);--color005:var(--t1018);--color0025:var(--t1019);--color002:var(--t1020);--color001:var(--t1021);--background01:var(--t1022);--background0075:var(--t1023);--background005:var(--t1024);--background0025:var(--t1025);--background002:var(--t1026);--background001:var(--t1027);--background02:var(--t996);--background04:var(--t997);--background06:var(--t998);--background08:var(--t999);--outlineColor:var(--t1028);}
|
|
943
|
+
@media(prefers-color-scheme:light){
|
|
944
|
+
.t_teal_Input, .t_teal_Progress, .t_teal_Slider, .t_teal_TextArea, .t_teal_surface1 {--color:var(--t1009);--colorHover:var(--t1009);--colorPress:var(--t1009);--colorFocus:var(--t1010);--background:var(--t1002);--backgroundHover:var(--t1001);--backgroundPress:var(--t1003);--backgroundFocus:var(--t1004);--backgroundActive:var(--t1002);--borderColor:var(--t1004);--borderColorHover:var(--t1003);--borderColorFocus:var(--t1004);--borderColorPress:var(--t1005);--color01:var(--t1016);--color0075:var(--t1017);--color005:var(--t1018);--color0025:var(--t1019);--color002:var(--t1020);--color001:var(--t1021);--background01:var(--t1022);--background0075:var(--t1023);--background005:var(--t1024);--background0025:var(--t1025);--background002:var(--t1026);--background001:var(--t1027);--background02:var(--t996);--background04:var(--t997);--background06:var(--t998);--background08:var(--t999);--outlineColor:var(--t1028);}
|
|
945
|
+
}
|
|
946
|
+
: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(--t1009);--colorHover:var(--t1009);--colorPress:var(--t1009);--colorFocus:var(--t1010);--background:var(--t1005);--backgroundHover:var(--t1004);--backgroundPress:var(--t1006);--backgroundFocus:var(--t1009);--backgroundActive:var(--t1005);--borderColor:var(--t1007);--borderColorHover:var(--t1006);--borderColorFocus:var(--t1007);--borderColorPress:var(--t555);--color01:var(--t1016);--color0075:var(--t1017);--color005:var(--t1018);--color0025:var(--t1019);--color002:var(--t1020);--color001:var(--t1021);--background01:var(--t1022);--background0075:var(--t1023);--background005:var(--t1024);--background0025:var(--t1025);--background002:var(--t1026);--background001:var(--t1027);--background02:var(--t996);--background04:var(--t997);--background06:var(--t998);--background08:var(--t999);--outlineColor:var(--t1028);}
|
|
947
|
+
@media(prefers-color-scheme:light){
|
|
948
|
+
.t_teal_ProgressIndicator, .t_teal_SliderActive {--color:var(--t1009);--colorHover:var(--t1009);--colorPress:var(--t1009);--colorFocus:var(--t1010);--background:var(--t1005);--backgroundHover:var(--t1004);--backgroundPress:var(--t1006);--backgroundFocus:var(--t1009);--backgroundActive:var(--t1005);--borderColor:var(--t1007);--borderColorHover:var(--t1006);--borderColorFocus:var(--t1007);--borderColorPress:var(--t555);--color01:var(--t1016);--color0075:var(--t1017);--color005:var(--t1018);--color0025:var(--t1019);--color002:var(--t1020);--color001:var(--t1021);--background01:var(--t1022);--background0075:var(--t1023);--background005:var(--t1024);--background0025:var(--t1025);--background002:var(--t1026);--background001:var(--t1027);--background02:var(--t996);--background04:var(--t997);--background06:var(--t998);--background08:var(--t999);--outlineColor:var(--t1028);}
|
|
949
|
+
}
|
|
950
|
+
: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(--t1011);--background02:var(--t996);--background04:var(--t997);--background06:var(--t998);--background08:var(--t999);--color1:var(--t1010);--color2:var(--t1009);--color3:var(--t1008);--color4:var(--t555);--color5:var(--t1007);--color6:var(--t1006);--color7:var(--t1005);--color8:var(--t1004);--color9:var(--t1003);--color10:var(--t1002);--color11:var(--t1001);--color12:var(--t1000);--color0:var(--t995);--color02:var(--t1029);--color04:var(--t1030);--color06:var(--t1031);--color08:var(--t1032);--color:var(--t1000);--colorHover:var(--t1000);--colorPress:var(--t1000);--colorFocus:var(--t1032);--background:var(--t1009);--backgroundHover:var(--t1010);--backgroundPress:var(--t1008);--backgroundFocus:var(--t1008);--backgroundActive:var(--t1009);--borderColor:var(--t555);--borderColorHover:var(--t1008);--borderColorFocus:var(--t555);--borderColorPress:var(--t1007);--placeholderColor:var(--t1003);--colorTransparent:var(--t995);--color01:var(--t1016);--color0075:var(--t1017);--color005:var(--t1018);--color0025:var(--t1019);--color002:var(--t1020);--color001:var(--t1021);--background01:var(--t1022);--background0075:var(--t1023);--background005:var(--t1024);--background0025:var(--t1025);--background002:var(--t1026);--background001:var(--t1027);--outlineColor:var(--t1028);}
|
|
951
|
+
@media(prefers-color-scheme:light){
|
|
952
|
+
.t_teal_SwitchThumb, .t_teal_Tooltip, .t_teal_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t1011);--background02:var(--t996);--background04:var(--t997);--background06:var(--t998);--background08:var(--t999);--color1:var(--t1010);--color2:var(--t1009);--color3:var(--t1008);--color4:var(--t555);--color5:var(--t1007);--color6:var(--t1006);--color7:var(--t1005);--color8:var(--t1004);--color9:var(--t1003);--color10:var(--t1002);--color11:var(--t1001);--color12:var(--t1000);--color0:var(--t995);--color02:var(--t1029);--color04:var(--t1030);--color06:var(--t1031);--color08:var(--t1032);--color:var(--t1000);--colorHover:var(--t1000);--colorPress:var(--t1000);--colorFocus:var(--t1032);--background:var(--t1009);--backgroundHover:var(--t1010);--backgroundPress:var(--t1008);--backgroundFocus:var(--t1008);--backgroundActive:var(--t1009);--borderColor:var(--t555);--borderColorHover:var(--t1008);--borderColorFocus:var(--t555);--borderColorPress:var(--t1007);--placeholderColor:var(--t1003);--colorTransparent:var(--t995);--color01:var(--t1016);--color0075:var(--t1017);--color005:var(--t1018);--color0025:var(--t1019);--color002:var(--t1020);--color001:var(--t1021);--background01:var(--t1022);--background0075:var(--t1023);--background005:var(--t1024);--background0025:var(--t1025);--background002:var(--t1026);--background001:var(--t1027);--outlineColor:var(--t1028);}
|
|
953
|
+
}
|
|
954
|
+
.t_light_teal_SwitchThumb ::selection, .t_light_teal_Tooltip ::selection, .t_light_teal_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
955
|
+
: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(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--color1:var(--t17);--color2:var(--t189);--color3:var(--t1);--color4:var(--t190);--color5:var(--t16);--color6:var(--t191);--color7:var(--t192);--color8:var(--t193);--color9:var(--t194);--color10:var(--t0);--color11:var(--t10);--color12:var(--t195);--color0:var(--t217);--color02:var(--t218);--color04:var(--t219);--color06:var(--t220);--color08:var(--t221);--color:var(--t195);--colorHover:var(--t195);--colorPress:var(--t195);--colorFocus:var(--t221);--background:var(--t189);--backgroundHover:var(--t17);--backgroundPress:var(--t1);--backgroundFocus:var(--t1);--backgroundActive:var(--t189);--borderColor:var(--t190);--borderColorHover:var(--t1);--borderColorFocus:var(--t190);--borderColorPress:var(--t16);--placeholderColor:var(--t194);--colorTransparent:var(--t217);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--outlineColor:var(--t234);}
|
|
956
|
+
@media(prefers-color-scheme:light){
|
|
957
|
+
.t_white {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t18);--background02:var(--t213);--background04:var(--t214);--background06:var(--t215);--background08:var(--t216);--color1:var(--t17);--color2:var(--t189);--color3:var(--t1);--color4:var(--t190);--color5:var(--t16);--color6:var(--t191);--color7:var(--t192);--color8:var(--t193);--color9:var(--t194);--color10:var(--t0);--color11:var(--t10);--color12:var(--t195);--color0:var(--t217);--color02:var(--t218);--color04:var(--t219);--color06:var(--t220);--color08:var(--t221);--color:var(--t195);--colorHover:var(--t195);--colorPress:var(--t195);--colorFocus:var(--t221);--background:var(--t189);--backgroundHover:var(--t17);--backgroundPress:var(--t1);--backgroundFocus:var(--t1);--backgroundActive:var(--t189);--borderColor:var(--t190);--borderColorHover:var(--t1);--borderColorFocus:var(--t190);--borderColorPress:var(--t16);--placeholderColor:var(--t194);--colorTransparent:var(--t217);--color01:var(--t222);--color0075:var(--t223);--color005:var(--t224);--color0025:var(--t225);--color002:var(--t226);--color001:var(--t227);--background01:var(--t228);--background0075:var(--t229);--background005:var(--t230);--background0025:var(--t231);--background002:var(--t232);--background001:var(--t233);--outlineColor:var(--t234);}
|
|
958
|
+
}
|
|
959
|
+
.t_light_white ::selection{background:var(--color5);color:var(--color11)}
|
|
960
|
+
:root.t_dark .t_light .t_yellow, :root.t_light .t_yellow, .tm_xxt {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t1033);--background02:var(--t1034);--background04:var(--t1035);--background06:var(--t1036);--background08:var(--t1037);--color1:var(--t1038);--color2:var(--t1039);--color3:var(--t1040);--color4:var(--t1041);--color5:var(--t1042);--color6:var(--t1043);--color7:var(--t1044);--color8:var(--t1045);--color9:var(--t594);--color10:var(--t1046);--color11:var(--t1047);--color12:var(--t1048);--color0:var(--t1049);--color02:var(--t1050);--color04:var(--t1051);--color06:var(--t1052);--color08:var(--t1053);--color:var(--t1048);--colorHover:var(--t1048);--colorPress:var(--t1048);--colorFocus:var(--t1053);--background:var(--t1039);--backgroundHover:var(--t1038);--backgroundPress:var(--t1040);--backgroundFocus:var(--t1040);--backgroundActive:var(--t1039);--borderColor:var(--t1041);--borderColorHover:var(--t1040);--borderColorFocus:var(--t1041);--borderColorPress:var(--t1042);--placeholderColor:var(--t594);--colorTransparent:var(--t1049);--color01:var(--t1054);--color0075:var(--t1055);--color005:var(--t1056);--color0025:var(--t1057);--color002:var(--t1058);--color001:var(--t1059);--background01:var(--t1060);--background0075:var(--t1061);--background005:var(--t1062);--background0025:var(--t1063);--background002:var(--t1064);--background001:var(--t1065);--outlineColor:var(--t1066);}
|
|
961
|
+
@media(prefers-color-scheme:light){
|
|
962
|
+
.t_yellow {--accentBackground:var(--t9);--accentColor:var(--t15);--background0:var(--t1033);--background02:var(--t1034);--background04:var(--t1035);--background06:var(--t1036);--background08:var(--t1037);--color1:var(--t1038);--color2:var(--t1039);--color3:var(--t1040);--color4:var(--t1041);--color5:var(--t1042);--color6:var(--t1043);--color7:var(--t1044);--color8:var(--t1045);--color9:var(--t594);--color10:var(--t1046);--color11:var(--t1047);--color12:var(--t1048);--color0:var(--t1049);--color02:var(--t1050);--color04:var(--t1051);--color06:var(--t1052);--color08:var(--t1053);--color:var(--t1048);--colorHover:var(--t1048);--colorPress:var(--t1048);--colorFocus:var(--t1053);--background:var(--t1039);--backgroundHover:var(--t1038);--backgroundPress:var(--t1040);--backgroundFocus:var(--t1040);--backgroundActive:var(--t1039);--borderColor:var(--t1041);--borderColorHover:var(--t1040);--borderColorFocus:var(--t1041);--borderColorPress:var(--t1042);--placeholderColor:var(--t594);--colorTransparent:var(--t1049);--color01:var(--t1054);--color0075:var(--t1055);--color005:var(--t1056);--color0025:var(--t1057);--color002:var(--t1058);--color001:var(--t1059);--background01:var(--t1060);--background0075:var(--t1061);--background005:var(--t1062);--background0025:var(--t1063);--background002:var(--t1064);--background001:var(--t1065);--outlineColor:var(--t1066);}
|
|
963
|
+
}
|
|
964
|
+
.t_light_yellow ::selection{background:var(--color5);color:var(--color11)}
|
|
965
|
+
: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(--t1047);--colorHover:var(--t1047);--colorPress:var(--t1047);--colorFocus:var(--t1048);--background:var(--t1041);--backgroundHover:var(--t1040);--backgroundPress:var(--t1042);--backgroundFocus:var(--t1044);--backgroundActive:var(--t1041);--borderColor:var(--t1043);--borderColorHover:var(--t1042);--borderColorFocus:var(--t1043);--borderColorPress:var(--t1044);--color01:var(--t1054);--color0075:var(--t1055);--color005:var(--t1056);--color0025:var(--t1057);--color002:var(--t1058);--color001:var(--t1059);--background01:var(--t1060);--background0075:var(--t1061);--background005:var(--t1062);--background0025:var(--t1063);--background002:var(--t1064);--background001:var(--t1065);--background02:var(--t1034);--background04:var(--t1035);--background06:var(--t1036);--background08:var(--t1037);--outlineColor:var(--t1066);}
|
|
966
|
+
@media(prefers-color-scheme:light){
|
|
967
|
+
.t_yellow_Button, .t_yellow_SliderThumb, .t_yellow_Switch, .t_yellow_surface2 {--color:var(--t1047);--colorHover:var(--t1047);--colorPress:var(--t1047);--colorFocus:var(--t1048);--background:var(--t1041);--backgroundHover:var(--t1040);--backgroundPress:var(--t1042);--backgroundFocus:var(--t1044);--backgroundActive:var(--t1041);--borderColor:var(--t1043);--borderColorHover:var(--t1042);--borderColorFocus:var(--t1043);--borderColorPress:var(--t1044);--color01:var(--t1054);--color0075:var(--t1055);--color005:var(--t1056);--color0025:var(--t1057);--color002:var(--t1058);--color001:var(--t1059);--background01:var(--t1060);--background0075:var(--t1061);--background005:var(--t1062);--background0025:var(--t1063);--background002:var(--t1064);--background001:var(--t1065);--background02:var(--t1034);--background04:var(--t1035);--background06:var(--t1036);--background08:var(--t1037);--outlineColor:var(--t1066);}
|
|
968
|
+
}
|
|
969
|
+
: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(--t1047);--colorHover:var(--t1047);--colorPress:var(--t1047);--colorFocus:var(--t1048);--background:var(--t1040);--backgroundHover:var(--t1039);--backgroundPress:var(--t1041);--backgroundFocus:var(--t1042);--backgroundActive:var(--t1040);--borderColor:var(--t1042);--borderColorHover:var(--t1041);--borderColorFocus:var(--t1042);--borderColorPress:var(--t1043);--color01:var(--t1054);--color0075:var(--t1055);--color005:var(--t1056);--color0025:var(--t1057);--color002:var(--t1058);--color001:var(--t1059);--background01:var(--t1060);--background0075:var(--t1061);--background005:var(--t1062);--background0025:var(--t1063);--background002:var(--t1064);--background001:var(--t1065);--background02:var(--t1034);--background04:var(--t1035);--background06:var(--t1036);--background08:var(--t1037);--outlineColor:var(--t1066);}
|
|
970
|
+
@media(prefers-color-scheme:light){
|
|
971
|
+
.t_yellow_Input, .t_yellow_Progress, .t_yellow_Slider, .t_yellow_TextArea, .t_yellow_surface1 {--color:var(--t1047);--colorHover:var(--t1047);--colorPress:var(--t1047);--colorFocus:var(--t1048);--background:var(--t1040);--backgroundHover:var(--t1039);--backgroundPress:var(--t1041);--backgroundFocus:var(--t1042);--backgroundActive:var(--t1040);--borderColor:var(--t1042);--borderColorHover:var(--t1041);--borderColorFocus:var(--t1042);--borderColorPress:var(--t1043);--color01:var(--t1054);--color0075:var(--t1055);--color005:var(--t1056);--color0025:var(--t1057);--color002:var(--t1058);--color001:var(--t1059);--background01:var(--t1060);--background0075:var(--t1061);--background005:var(--t1062);--background0025:var(--t1063);--background002:var(--t1064);--background001:var(--t1065);--background02:var(--t1034);--background04:var(--t1035);--background06:var(--t1036);--background08:var(--t1037);--outlineColor:var(--t1066);}
|
|
972
|
+
}
|
|
973
|
+
: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(--t1047);--colorHover:var(--t1047);--colorPress:var(--t1047);--colorFocus:var(--t1048);--background:var(--t1043);--backgroundHover:var(--t1042);--backgroundPress:var(--t1044);--backgroundFocus:var(--t1047);--backgroundActive:var(--t1043);--borderColor:var(--t1045);--borderColorHover:var(--t1044);--borderColorFocus:var(--t1045);--borderColorPress:var(--t594);--color01:var(--t1054);--color0075:var(--t1055);--color005:var(--t1056);--color0025:var(--t1057);--color002:var(--t1058);--color001:var(--t1059);--background01:var(--t1060);--background0075:var(--t1061);--background005:var(--t1062);--background0025:var(--t1063);--background002:var(--t1064);--background001:var(--t1065);--background02:var(--t1034);--background04:var(--t1035);--background06:var(--t1036);--background08:var(--t1037);--outlineColor:var(--t1066);}
|
|
974
|
+
@media(prefers-color-scheme:light){
|
|
975
|
+
.t_yellow_ProgressIndicator, .t_yellow_SliderActive {--color:var(--t1047);--colorHover:var(--t1047);--colorPress:var(--t1047);--colorFocus:var(--t1048);--background:var(--t1043);--backgroundHover:var(--t1042);--backgroundPress:var(--t1044);--backgroundFocus:var(--t1047);--backgroundActive:var(--t1043);--borderColor:var(--t1045);--borderColorHover:var(--t1044);--borderColorFocus:var(--t1045);--borderColorPress:var(--t594);--color01:var(--t1054);--color0075:var(--t1055);--color005:var(--t1056);--color0025:var(--t1057);--color002:var(--t1058);--color001:var(--t1059);--background01:var(--t1060);--background0075:var(--t1061);--background005:var(--t1062);--background0025:var(--t1063);--background002:var(--t1064);--background001:var(--t1065);--background02:var(--t1034);--background04:var(--t1035);--background06:var(--t1036);--background08:var(--t1037);--outlineColor:var(--t1066);}
|
|
976
|
+
}
|
|
977
|
+
: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(--t1049);--background02:var(--t1034);--background04:var(--t1035);--background06:var(--t1036);--background08:var(--t1037);--color1:var(--t1048);--color2:var(--t1047);--color3:var(--t1046);--color4:var(--t594);--color5:var(--t1045);--color6:var(--t1044);--color7:var(--t1043);--color8:var(--t1042);--color9:var(--t1041);--color10:var(--t1040);--color11:var(--t1039);--color12:var(--t1038);--color0:var(--t1033);--color02:var(--t1067);--color04:var(--t1068);--color06:var(--t1069);--color08:var(--t1070);--color:var(--t1038);--colorHover:var(--t1038);--colorPress:var(--t1038);--colorFocus:var(--t1070);--background:var(--t1047);--backgroundHover:var(--t1048);--backgroundPress:var(--t1046);--backgroundFocus:var(--t1046);--backgroundActive:var(--t1047);--borderColor:var(--t594);--borderColorHover:var(--t1046);--borderColorFocus:var(--t594);--borderColorPress:var(--t1045);--placeholderColor:var(--t1041);--colorTransparent:var(--t1033);--color01:var(--t1054);--color0075:var(--t1055);--color005:var(--t1056);--color0025:var(--t1057);--color002:var(--t1058);--color001:var(--t1059);--background01:var(--t1060);--background0075:var(--t1061);--background005:var(--t1062);--background0025:var(--t1063);--background002:var(--t1064);--background001:var(--t1065);--outlineColor:var(--t1066);}
|
|
978
|
+
@media(prefers-color-scheme:light){
|
|
979
|
+
.t_yellow_SwitchThumb, .t_yellow_Tooltip, .t_yellow_accent {--accentBackground:var(--t15);--accentColor:var(--t9);--background0:var(--t1049);--background02:var(--t1034);--background04:var(--t1035);--background06:var(--t1036);--background08:var(--t1037);--color1:var(--t1048);--color2:var(--t1047);--color3:var(--t1046);--color4:var(--t594);--color5:var(--t1045);--color6:var(--t1044);--color7:var(--t1043);--color8:var(--t1042);--color9:var(--t1041);--color10:var(--t1040);--color11:var(--t1039);--color12:var(--t1038);--color0:var(--t1033);--color02:var(--t1067);--color04:var(--t1068);--color06:var(--t1069);--color08:var(--t1070);--color:var(--t1038);--colorHover:var(--t1038);--colorPress:var(--t1038);--colorFocus:var(--t1070);--background:var(--t1047);--backgroundHover:var(--t1048);--backgroundPress:var(--t1046);--backgroundFocus:var(--t1046);--backgroundActive:var(--t1047);--borderColor:var(--t594);--borderColorHover:var(--t1046);--borderColorFocus:var(--t594);--borderColorPress:var(--t1045);--placeholderColor:var(--t1041);--colorTransparent:var(--t1033);--color01:var(--t1054);--color0075:var(--t1055);--color005:var(--t1056);--color0025:var(--t1057);--color002:var(--t1058);--color001:var(--t1059);--background01:var(--t1060);--background0075:var(--t1061);--background005:var(--t1062);--background0025:var(--t1063);--background002:var(--t1064);--background001:var(--t1065);--outlineColor:var(--t1066);}
|
|
980
|
+
}
|
|
981
|
+
.t_light_yellow_SwitchThumb ::selection, .t_light_yellow_Tooltip ::selection, .t_light_yellow_accent ::selection{background:var(--color5);color:var(--color11)}
|
|
982
|
+
:root ._aspectRatio-1--77777777771627090080{aspect-ratio:1.7777777777777777;}
|
|
983
|
+
:root ._b-0px{bottom:0px;}
|
|
984
|
+
:root ._bblr-100000px{border-bottom-left-radius:100000px;}
|
|
985
|
+
:root ._bblr-1000px{border-bottom-left-radius:1000px;}
|
|
986
|
+
:root ._bblr-10px{border-bottom-left-radius:10px;}
|
|
987
|
+
:root ._bblr-7px{border-bottom-left-radius:7px;}
|
|
988
|
+
:root ._bblr-c-radius-10{border-bottom-left-radius:var(--c-radius-10);}
|
|
989
|
+
:root ._bblr-c-radius-2{border-bottom-left-radius:var(--c-radius-2);}
|
|
990
|
+
:root ._bblr-c-radius-3{border-bottom-left-radius:var(--c-radius-3);}
|
|
991
|
+
:root ._bblr-c-radius-4{border-bottom-left-radius:var(--c-radius-4);}
|
|
992
|
+
:root ._bblr-c-radius-6{border-bottom-left-radius:var(--c-radius-6);}
|
|
993
|
+
:root ._bbrr-100000px{border-bottom-right-radius:100000px;}
|
|
994
|
+
:root ._bbrr-1000px{border-bottom-right-radius:1000px;}
|
|
995
|
+
:root ._bbrr-10px{border-bottom-right-radius:10px;}
|
|
996
|
+
:root ._bbrr-7px{border-bottom-right-radius:7px;}
|
|
997
|
+
:root ._bbrr-c-radius-10{border-bottom-right-radius:var(--c-radius-10);}
|
|
998
|
+
:root ._bbrr-c-radius-2{border-bottom-right-radius:var(--c-radius-2);}
|
|
999
|
+
:root ._bbrr-c-radius-3{border-bottom-right-radius:var(--c-radius-3);}
|
|
1000
|
+
:root ._bbrr-c-radius-4{border-bottom-right-radius:var(--c-radius-4);}
|
|
1001
|
+
:root ._bbrr-c-radius-6{border-bottom-right-radius:var(--c-radius-6);}
|
|
1002
|
+
:root ._bbs-solid._bbs-solid{border-bottom-style:solid;}
|
|
1003
|
+
:root:root:root ._bg-0active-backgroundP3496915:active{background-color:var(--backgroundPress) !important;}
|
|
1004
|
+
:root:root:root:root ._bg-0focus-color4:focus{background-color:var(--color4) !important;}
|
|
1005
|
+
@media (hover) {:root:root ._bg-0hover-backgroundH3423444:hover{background-color:var(--backgroundHover) !important;}}
|
|
1006
|
+
@media (hover) {:root:root ._bg-0hover-color3:hover{background-color:var(--color3) !important;}}
|
|
1007
|
+
@media (hover) {:root:root ._bg-0hover-color4:hover{background-color:var(--color4) !important;}}
|
|
1008
|
+
:root ._bg-background{background-color:var(--background);}
|
|
1009
|
+
:root ._bg-backgroundA94988999{background-color:var(--backgroundActive);}
|
|
1010
|
+
:root ._bg-borderColor{background-color:var(--borderColor);}
|
|
1011
|
+
:root ._bg-color12{background-color:var(--color12);}
|
|
1012
|
+
:root ._bg-color3{background-color:var(--color3);}
|
|
1013
|
+
:root ._bg-color4{background-color:var(--color4);}
|
|
1014
|
+
:root ._bg-red9{background-color:var(--red9);}
|
|
1015
|
+
:root ._bg-transparent{background-color:transparent;}
|
|
1016
|
+
:root ._bls-solid._bls-solid{border-left-style:solid;}
|
|
1017
|
+
:root:root:root ._borderBottomColor-0active-borderColor69916956._borderBottomColor-0active-borderColor69916956:active{border-bottom-color:var(--borderColorHover) !important;}
|
|
1018
|
+
:root:root:root ._borderBottomColor-0active-borderColor77378595._borderBottomColor-0active-borderColor77378595:active{border-bottom-color:var(--borderColorPress) !important;}
|
|
1019
|
+
:root:root:root:root ._borderBottomColor-0focus-borderColor68052152._borderBottomColor-0focus-borderColor68052152:focus{border-bottom-color:var(--borderColorFocus) !important;}
|
|
1020
|
+
@media (hover) {:root:root ._borderBottomColor-0hover-borderColor69916956._borderBottomColor-0hover-borderColor69916956:hover{border-bottom-color:var(--borderColorHover) !important;}}
|
|
1021
|
+
:root ._borderBottomColor-backgroundF3405682._borderBottomColor-backgroundF3405682{border-bottom-color:var(--backgroundFocus);}
|
|
1022
|
+
:root ._borderBottomColor-borderColor._borderBottomColor-borderColor{border-bottom-color:var(--borderColor);}
|
|
1023
|
+
:root ._borderBottomColor-transparent._borderBottomColor-transparent{border-bottom-color:transparent;}
|
|
1024
|
+
:root ._borderBottomWidth-0px._borderBottomWidth-0px{border-bottom-width:0px;}
|
|
1025
|
+
:root ._borderBottomWidth-1px._borderBottomWidth-1px{border-bottom-width:1px;}
|
|
1026
|
+
:root:root:root ._borderLeftColor-0active-borderColor69916956._borderLeftColor-0active-borderColor69916956:active{border-left-color:var(--borderColorHover) !important;}
|
|
1027
|
+
:root:root:root ._borderLeftColor-0active-borderColor77378595._borderLeftColor-0active-borderColor77378595:active{border-left-color:var(--borderColorPress) !important;}
|
|
1028
|
+
:root:root:root:root ._borderLeftColor-0focus-borderColor68052152._borderLeftColor-0focus-borderColor68052152:focus{border-left-color:var(--borderColorFocus) !important;}
|
|
1029
|
+
@media (hover) {:root:root ._borderLeftColor-0hover-borderColor69916956._borderLeftColor-0hover-borderColor69916956:hover{border-left-color:var(--borderColorHover) !important;}}
|
|
1030
|
+
:root ._borderLeftColor-backgroundF3405682._borderLeftColor-backgroundF3405682{border-left-color:var(--backgroundFocus);}
|
|
1031
|
+
:root ._borderLeftColor-borderColor._borderLeftColor-borderColor{border-left-color:var(--borderColor);}
|
|
1032
|
+
:root ._borderLeftColor-transparent._borderLeftColor-transparent{border-left-color:transparent;}
|
|
1033
|
+
:root ._borderLeftWidth-0px._borderLeftWidth-0px{border-left-width:0px;}
|
|
1034
|
+
:root ._borderLeftWidth-1px._borderLeftWidth-1px{border-left-width:1px;}
|
|
1035
|
+
:root:root:root ._brc-0active-borderColor69916956._brc-0active-borderColor69916956:active{border-right-color:var(--borderColorHover) !important;}
|
|
1036
|
+
:root:root:root ._brc-0active-borderColor77378595._brc-0active-borderColor77378595:active{border-right-color:var(--borderColorPress) !important;}
|
|
1037
|
+
:root:root:root:root ._brc-0focus-borderColor68052152._brc-0focus-borderColor68052152:focus{border-right-color:var(--borderColorFocus) !important;}
|
|
1038
|
+
@media (hover) {:root:root ._brc-0hover-borderColor69916956._brc-0hover-borderColor69916956:hover{border-right-color:var(--borderColorHover) !important;}}
|
|
1039
|
+
:root ._brc-backgroundF3405682._brc-backgroundF3405682{border-right-color:var(--backgroundFocus);}
|
|
1040
|
+
:root ._brc-borderColor._brc-borderColor{border-right-color:var(--borderColor);}
|
|
1041
|
+
:root ._brc-transparent._brc-transparent{border-right-color:transparent;}
|
|
1042
|
+
:root ._brs-solid._brs-solid{border-right-style:solid;}
|
|
1043
|
+
:root ._brw-0px._brw-0px{border-right-width:0px;}
|
|
1044
|
+
:root ._brw-1px._brw-1px{border-right-width:1px;}
|
|
1045
|
+
:root:root:root ._btc-0active-borderColor69916956._btc-0active-borderColor69916956:active{border-top-color:var(--borderColorHover) !important;}
|
|
1046
|
+
:root:root:root ._btc-0active-borderColor77378595._btc-0active-borderColor77378595:active{border-top-color:var(--borderColorPress) !important;}
|
|
1047
|
+
:root:root:root:root ._btc-0focus-borderColor68052152._btc-0focus-borderColor68052152:focus{border-top-color:var(--borderColorFocus) !important;}
|
|
1048
|
+
@media (hover) {:root:root ._btc-0hover-borderColor69916956._btc-0hover-borderColor69916956:hover{border-top-color:var(--borderColorHover) !important;}}
|
|
1049
|
+
:root ._btc-backgroundF3405682._btc-backgroundF3405682{border-top-color:var(--backgroundFocus);}
|
|
1050
|
+
:root ._btc-borderColor._btc-borderColor{border-top-color:var(--borderColor);}
|
|
1051
|
+
:root ._btc-transparent._btc-transparent{border-top-color:transparent;}
|
|
1052
|
+
:root ._btlr-100000px{border-top-left-radius:100000px;}
|
|
1053
|
+
:root ._btlr-1000px{border-top-left-radius:1000px;}
|
|
1054
|
+
:root ._btlr-10px{border-top-left-radius:10px;}
|
|
1055
|
+
:root ._btlr-7px{border-top-left-radius:7px;}
|
|
1056
|
+
:root ._btlr-c-radius-10{border-top-left-radius:var(--c-radius-10);}
|
|
1057
|
+
:root ._btlr-c-radius-2{border-top-left-radius:var(--c-radius-2);}
|
|
1058
|
+
:root ._btlr-c-radius-3{border-top-left-radius:var(--c-radius-3);}
|
|
1059
|
+
:root ._btlr-c-radius-4{border-top-left-radius:var(--c-radius-4);}
|
|
1060
|
+
:root ._btlr-c-radius-6{border-top-left-radius:var(--c-radius-6);}
|
|
1061
|
+
:root ._btrr-100000px{border-top-right-radius:100000px;}
|
|
1062
|
+
:root ._btrr-1000px{border-top-right-radius:1000px;}
|
|
1063
|
+
:root ._btrr-10px{border-top-right-radius:10px;}
|
|
1064
|
+
:root ._btrr-7px{border-top-right-radius:7px;}
|
|
1065
|
+
:root ._btrr-c-radius-10{border-top-right-radius:var(--c-radius-10);}
|
|
1066
|
+
:root ._btrr-c-radius-2{border-top-right-radius:var(--c-radius-2);}
|
|
1067
|
+
:root ._btrr-c-radius-3{border-top-right-radius:var(--c-radius-3);}
|
|
1068
|
+
:root ._btrr-c-radius-4{border-top-right-radius:var(--c-radius-4);}
|
|
1069
|
+
:root ._btrr-c-radius-6{border-top-right-radius:var(--c-radius-6);}
|
|
1070
|
+
:root ._bts-solid._bts-solid{border-top-style:solid;}
|
|
1071
|
+
:root ._btw-0px._btw-0px{border-top-width:0px;}
|
|
1072
|
+
:root ._btw-1px._btw-1px{border-top-width:1px;}
|
|
1073
|
+
:root:root:root ._col-0active-colorPress:active{color:var(--colorPress) !important;}
|
|
1074
|
+
@media (hover) {:root:root ._col-0hover-color12:hover{color:var(--color12) !important;}}
|
|
1075
|
+
:root ._col-color{color:var(--color);}
|
|
1076
|
+
:root ._col-color1{color:var(--color1);}
|
|
1077
|
+
:root ._col-color11{color:var(--color11);}
|
|
1078
|
+
:root ._col-color12{color:var(--color12);}
|
|
1079
|
+
:root ._col-white1{color:var(--white1);}
|
|
1080
|
+
:root:root ._cur-_platformweb_pointer{cursor:pointer;}
|
|
1081
|
+
:root ._cur-col-resize{cursor:col-resize;}
|
|
1082
|
+
:root ._cur-default{cursor:default;}
|
|
1083
|
+
:root ._cur-inherit{cursor:inherit;}
|
|
1084
|
+
:root ._cur-pointer{cursor:pointer;}
|
|
1085
|
+
:root ._direction-ltr{direction:ltr;}
|
|
1086
|
+
:root ._dsp-flex{display:flex;}
|
|
1087
|
+
:root ._dsp-inline-flex{display:inline-flex;}
|
|
1088
|
+
:root ._dsp-none{display:none;}
|
|
1089
|
+
:root ._fb-0px{flex-basis:0px;}
|
|
1090
|
+
:root ._fd-column{flex-direction:column;}
|
|
1091
|
+
:root ._fd-row{flex-direction:row;}
|
|
1092
|
+
:root ._ff-f-family{font-family:var(--f-family);}
|
|
1093
|
+
:root ._fs-f-size-1{font-size:var(--f-size-1);}
|
|
1094
|
+
:root ._fs-f-size-2{font-size:var(--f-size-2);}
|
|
1095
|
+
:root ._fs-f-size-3{font-size:var(--f-size-3);}
|
|
1096
|
+
:root ._fs-f-size-4{font-size:var(--f-size-4);}
|
|
1097
|
+
:root ._fw-500{font-weight:500;}
|
|
1098
|
+
:root ._fw-600{font-weight:600;}
|
|
1099
|
+
:root ._fw-f-weight-1{font-weight:var(--f-weight-1);}
|
|
1100
|
+
:root ._fw-f-weight-2{font-weight:var(--f-weight-2);}
|
|
1101
|
+
:root ._fw-f-weight-3{font-weight:var(--f-weight-3);}
|
|
1102
|
+
:root ._fwr-nowrap{flex-wrap:nowrap;}
|
|
1103
|
+
:root ._gap-24px{gap:24px;}
|
|
1104
|
+
:root ._gap-2px{gap:2px;}
|
|
1105
|
+
:root ._gap-c-space-1--53{gap:var(--c-space-1--5);}
|
|
1106
|
+
:root ._gap-c-space-2{gap:var(--c-space-2);}
|
|
1107
|
+
:root ._grow-0{flex-grow:0;}
|
|
1108
|
+
:root ._grow-1{flex-grow:1;}
|
|
1109
|
+
:root ._grow-50{flex-grow:50;}
|
|
1110
|
+
:root ._height-0px{height:0px;}
|
|
1111
|
+
:root ._height-10037{height:100%;}
|
|
1112
|
+
:root ._height-16px{height:16px;}
|
|
1113
|
+
:root ._height-20px{height:20px;}
|
|
1114
|
+
:root ._height-32px{height:32px;}
|
|
1115
|
+
:root ._height-36px{height:36px;}
|
|
1116
|
+
:root ._height-40px{height:40px;}
|
|
1117
|
+
:root ._height-44px{height:44px;}
|
|
1118
|
+
:root ._height-60px{height:60px;}
|
|
1119
|
+
:root ._height-6px{height:6px;}
|
|
1120
|
+
:root ._height-7px{height:7px;}
|
|
1121
|
+
:root ._height-80px{height:80px;}
|
|
1122
|
+
:root ._height-8px{height:8px;}
|
|
1123
|
+
:root ._height-initial{height:initial;}
|
|
1124
|
+
:root ._items-center{align-items:center;}
|
|
1125
|
+
:root ._items-flex-start{align-items:flex-start;}
|
|
1126
|
+
:root ._justify-center{justify-content:center;}
|
|
1127
|
+
:root ._justify-space-betwe3241{justify-content:space-between;}
|
|
1128
|
+
:root ._l-037{left:0%;}
|
|
1129
|
+
:root ._l-0px{left:0px;}
|
|
1130
|
+
:root ._l-4037{left:40%;}
|
|
1131
|
+
:root ._lh-c-size-true{line-height:var(--c-size-true);}
|
|
1132
|
+
:root ._lh-f-lineHeigh112920{line-height:var(--f-lineHeight-1);}
|
|
1133
|
+
:root ._lh-f-lineHeigh112921{line-height:var(--f-lineHeight-2);}
|
|
1134
|
+
:root ._lh-f-lineHeigh112922{line-height:var(--f-lineHeight-3);}
|
|
1135
|
+
:root ._lh-f-lineHeigh112923{line-height:var(--f-lineHeight-4);}
|
|
1136
|
+
:root ._ls-0--6px{letter-spacing:0.6px;}
|
|
1137
|
+
:root ._ls-1--5px{letter-spacing:1.5px;}
|
|
1138
|
+
:root ._ls-f-letterSpa1360334202{letter-spacing:var(--f-letterSpacing-4);}
|
|
1139
|
+
:root ._ls-f-letterSpa1360334203{letter-spacing:var(--f-letterSpacing-3);}
|
|
1140
|
+
:root ._ls-f-letterSpa1360334204{letter-spacing:var(--f-letterSpacing-2);}
|
|
1141
|
+
:root ._ls-f-letterSpa1360334205{letter-spacing:var(--f-letterSpacing-1);}
|
|
1142
|
+
:root ._maxH-0px{max-height:0px;}
|
|
1143
|
+
:root ._maxH-16px{max-height:16px;}
|
|
1144
|
+
:root ._maxH-300px{max-height:300px;}
|
|
1145
|
+
:root ._maxH-32px{max-height:32px;}
|
|
1146
|
+
:root ._maxH-initial{max-height:initial;}
|
|
1147
|
+
:root ._maxW-0px{max-width:0px;}
|
|
1148
|
+
:root ._maxW-10037{max-width:100%;}
|
|
1149
|
+
:root ._maxW-16px{max-width:16px;}
|
|
1150
|
+
:root ._maxW-32px{max-width:32px;}
|
|
1151
|
+
:root ._minH-16px{min-height:16px;}
|
|
1152
|
+
:root ._minH-24px{min-height:24px;}
|
|
1153
|
+
:root ._minH-29px{min-height:29px;}
|
|
1154
|
+
:root ._minH-32px{min-height:32px;}
|
|
1155
|
+
:root ._minH-44px{min-height:44px;}
|
|
1156
|
+
:root ._minH-64px{min-height:64px;}
|
|
1157
|
+
:root ._minH-c-size-true{min-height:var(--c-size-true);}
|
|
1158
|
+
:root ._minW-0px{min-width:0px;}
|
|
1159
|
+
:root ._minW-16px{min-width:16px;}
|
|
1160
|
+
:root ._minW-220px{min-width:220px;}
|
|
1161
|
+
:root ._minW-32px{min-width:32px;}
|
|
1162
|
+
:root ._ml-auto{margin-left:auto;}
|
|
1163
|
+
:root ._o-0{opacity:0;}
|
|
1164
|
+
:root ._o-0--5{opacity:0.5;}
|
|
1165
|
+
@media (hover) {:root:root ._o-0hover-0--8:hover{opacity:0.8 !important;}}
|
|
1166
|
+
@media (hover) {:root:root ._o-0hover-0--9:hover{opacity:0.9 !important;}}
|
|
1167
|
+
:root ._o-1{opacity:1;}
|
|
1168
|
+
:root:root:root:root ._outlineColor-0focus-visible-outlineColo114._outlineColor-0focus-visible-outlineColo114:focus-visible{outline-color:var(--outlineColor) !important;}
|
|
1169
|
+
:root:root:root:root ._outlineStyle-0focus-visible-solid._outlineStyle-0focus-visible-solid:focus-visible{outline-style:solid !important;}
|
|
1170
|
+
:root ._outlineStyle-none._outlineStyle-none{outline-style:none;}
|
|
1171
|
+
:root:root:root:root ._outlineWidth-0focus-visible-2px._outlineWidth-0focus-visible-2px:focus-visible{outline-width:2px !important;}
|
|
1172
|
+
:root ._outlineWidth-0px._outlineWidth-0px{outline-width:0px;}
|
|
1173
|
+
:root ._ox-hidden{overflow-x:hidden;}
|
|
1174
|
+
:root ._oy-hidden{overflow-y:hidden;}
|
|
1175
|
+
:root ._pb-0px{padding-bottom:0px;}
|
|
1176
|
+
:root ._pb-1px{padding-bottom:1px;}
|
|
1177
|
+
:root ._pb-24px{padding-bottom:24px;}
|
|
1178
|
+
:root ._pb-2px{padding-bottom:2px;}
|
|
1179
|
+
:root ._pb-3px{padding-bottom:3px;}
|
|
1180
|
+
:root ._pb-c-space-1{padding-bottom:var(--c-space-1);}
|
|
1181
|
+
:root ._pb-c-space-1--53{padding-bottom:var(--c-space-1--5);}
|
|
1182
|
+
:root ._pb-c-space-2--53{padding-bottom:var(--c-space-2--5);}
|
|
1183
|
+
:root ._pb-c-space-3{padding-bottom:var(--c-space-3);}
|
|
1184
|
+
:root ._pb-c-space-4{padding-bottom:var(--c-space-4);}
|
|
1185
|
+
:root ._pe-boxnone{pointer-events:none !important;}
|
|
1186
|
+
:root ._pe-none{pointer-events:none !important;}
|
|
1187
|
+
:root ._pl-0px{padding-left:0px;}
|
|
1188
|
+
:root ._pl-12px{padding-left:12px;}
|
|
1189
|
+
:root ._pl-1px{padding-left:1px;}
|
|
1190
|
+
:root ._pl-24px{padding-left:24px;}
|
|
1191
|
+
:root ._pl-2px{padding-left:2px;}
|
|
1192
|
+
:root ._pl-3px{padding-left:3px;}
|
|
1193
|
+
:root ._pl-c-space-1{padding-left:var(--c-space-1);}
|
|
1194
|
+
:root ._pl-c-space-2{padding-left:var(--c-space-2);}
|
|
1195
|
+
:root ._pl-c-space-2--53{padding-left:var(--c-space-2--5);}
|
|
1196
|
+
:root ._pl-c-space-3{padding-left:var(--c-space-3);}
|
|
1197
|
+
:root ._pl-c-space-3--53{padding-left:var(--c-space-3--5);}
|
|
1198
|
+
:root ._pl-c-space-4{padding-left:var(--c-space-4);}
|
|
1199
|
+
:root ._pl-c-space-6{padding-left:var(--c-space-6);}
|
|
1200
|
+
:root ._pl-c-space-tru101{padding-left:var(--c-space-true);}
|
|
1201
|
+
:root ._pos-absolute{position:absolute;}
|
|
1202
|
+
:root ._pos-relative{position:relative;}
|
|
1203
|
+
:root ._pr-0px{padding-right:0px;}
|
|
1204
|
+
:root ._pr-12px{padding-right:12px;}
|
|
1205
|
+
:root ._pr-1px{padding-right:1px;}
|
|
1206
|
+
:root ._pr-24px{padding-right:24px;}
|
|
1207
|
+
:root ._pr-2px{padding-right:2px;}
|
|
1208
|
+
:root ._pr-36px{padding-right:36px;}
|
|
1209
|
+
:root ._pr-3px{padding-right:3px;}
|
|
1210
|
+
:root ._pr-c-space-1{padding-right:var(--c-space-1);}
|
|
1211
|
+
:root ._pr-c-space-2{padding-right:var(--c-space-2);}
|
|
1212
|
+
:root ._pr-c-space-2--53{padding-right:var(--c-space-2--5);}
|
|
1213
|
+
:root ._pr-c-space-3{padding-right:var(--c-space-3);}
|
|
1214
|
+
:root ._pr-c-space-3--53{padding-right:var(--c-space-3--5);}
|
|
1215
|
+
:root ._pr-c-space-4{padding-right:var(--c-space-4);}
|
|
1216
|
+
:root ._pr-c-space-6{padding-right:var(--c-space-6);}
|
|
1217
|
+
:root ._pr-c-space-tru101{padding-right:var(--c-space-true);}
|
|
1218
|
+
:root ._pt-0px{padding-top:0px;}
|
|
1219
|
+
:root ._pt-1px{padding-top:1px;}
|
|
1220
|
+
:root ._pt-24px{padding-top:24px;}
|
|
1221
|
+
:root ._pt-2px{padding-top:2px;}
|
|
1222
|
+
:root ._pt-3px{padding-top:3px;}
|
|
1223
|
+
:root ._pt-c-space-1{padding-top:var(--c-space-1);}
|
|
1224
|
+
:root ._pt-c-space-1--53{padding-top:var(--c-space-1--5);}
|
|
1225
|
+
:root ._pt-c-space-2--53{padding-top:var(--c-space-2--5);}
|
|
1226
|
+
:root ._pt-c-space-3{padding-top:var(--c-space-3);}
|
|
1227
|
+
:root ._pt-c-space-4{padding-top:var(--c-space-4);}
|
|
1228
|
+
:root ._r-0px{right:0px;}
|
|
1229
|
+
:root ._r-12px{right:12px;}
|
|
1230
|
+
:root ._r-6037{right:60%;}
|
|
1231
|
+
:root ._select-none{user-select:none;-webkit-user-select:none;}
|
|
1232
|
+
:root ._self-flex-end{align-self:flex-end;}
|
|
1233
|
+
:root ._self-flex-start{align-self:flex-start;}
|
|
1234
|
+
:root ._self-stretch{align-self:stretch;}
|
|
1235
|
+
:root ._shrink-0{flex-shrink:0;}
|
|
1236
|
+
:root ._shrink-1{flex-shrink:1;}
|
|
1237
|
+
:root ._t-0px{top:0px;}
|
|
1238
|
+
:root ._t-5037{top:50%;}
|
|
1239
|
+
@media (hover) {:root:root ._td-0hover-underline:hover{text-decoration-line:underline !important;}}
|
|
1240
|
+
:root ._textOverflow-ellipsis{text-overflow:ellipsis;}
|
|
1241
|
+
:root ._tr-translateX-38656452{transform:translateX(-80%);}
|
|
1242
|
+
:root ._tr-translateX01303033{transform:translateX(0px);}
|
|
1243
|
+
:root ._tr-translateY-162820732{transform:translateY(-8px) translateX(-7.2px);}
|
|
1244
|
+
:root ._tr-translateY-1736186894{transform:translateY(-0.5px);}
|
|
1245
|
+
:root ._tr-translateY01303033{transform:translateY(0px);}
|
|
1246
|
+
:root ._tr-translateY0419227808{transform:translateY(0px) translateX(-0.5px);}
|
|
1247
|
+
:root ._tt-uppercase{text-transform:uppercase;}
|
|
1248
|
+
:root ._width-0px{width:0px;}
|
|
1249
|
+
:root ._width-10037{width:100%;}
|
|
1250
|
+
:root ._width-10px{width:10px;}
|
|
1251
|
+
:root ._width-16px{width:16px;}
|
|
1252
|
+
:root ._width-20037{width:200%;}
|
|
1253
|
+
:root ._width-32px{width:32px;}
|
|
1254
|
+
:root ._width-36px{width:36px;}
|
|
1255
|
+
:root ._width-40px{width:40px;}
|
|
1256
|
+
:root ._width-4px{width:4px;}
|
|
1257
|
+
:root ._ws-nowrap{white-space:nowrap;}
|
|
1258
|
+
:root ._ws-pre-wrap{white-space:pre-wrap;}
|
|
1259
|
+
:root ._z-0{z-index:0;}
|