@midas-ds/theme 3.0.1-local.0 → 3.1.0
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/CHANGELOG.md +34 -0
- package/index.mjs +1249 -661
- package/lib/style-dictionary-dist/token-dictionary.d.ts +51 -32
- package/lib/style-dictionary-dist/variables.d.ts +61 -33
- package/package.json +1 -1
- package/variables.css +1 -1
package/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const ar = {
|
|
2
2
|
windowSizes: {
|
|
3
3
|
sm: {
|
|
4
4
|
key: "{windowSizes.sm}",
|
|
@@ -125,13 +125,13 @@ const Oa = {
|
|
|
125
125
|
xl: {
|
|
126
126
|
key: "{breakpoints.xl}",
|
|
127
127
|
$value: "(min-width: 1280px)",
|
|
128
|
-
$
|
|
128
|
+
$description: "This is the largest breakpoint",
|
|
129
129
|
filePath: "packages/theme/tokens/breakpoints.json",
|
|
130
130
|
isSource: !0,
|
|
131
131
|
$type: "string",
|
|
132
132
|
original: {
|
|
133
133
|
$value: "(min-width: {windowSizes.xl})",
|
|
134
|
-
$
|
|
134
|
+
$description: "This is the largest breakpoint",
|
|
135
135
|
$type: "string",
|
|
136
136
|
key: "{breakpoints.xl}"
|
|
137
137
|
},
|
|
@@ -140,6 +140,275 @@ const Oa = {
|
|
|
140
140
|
path: ["breakpoints", "xl"]
|
|
141
141
|
}
|
|
142
142
|
},
|
|
143
|
+
button: {
|
|
144
|
+
background: {
|
|
145
|
+
primary: {
|
|
146
|
+
base: {
|
|
147
|
+
key: "{button.background.primary.base}",
|
|
148
|
+
$value: "light-dark(#143c50, #2e7ca5)",
|
|
149
|
+
$description: "Färg på primärknapp",
|
|
150
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
151
|
+
isSource: !0,
|
|
152
|
+
$type: "string",
|
|
153
|
+
original: {
|
|
154
|
+
$value: "light-dark({color.blue.150}, {color.blue.100})",
|
|
155
|
+
$description: "Färg på primärknapp",
|
|
156
|
+
$type: "string",
|
|
157
|
+
key: "{button.background.primary.base}"
|
|
158
|
+
},
|
|
159
|
+
name: "buttonBackgroundPrimaryBase",
|
|
160
|
+
attributes: {},
|
|
161
|
+
path: ["button", "background", "primary", "base"]
|
|
162
|
+
},
|
|
163
|
+
hover: {
|
|
164
|
+
key: "{button.background.primary.hover}",
|
|
165
|
+
$value: "light-dark(#25607f, #25607f)",
|
|
166
|
+
$description: "Hover state på primärknapp",
|
|
167
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
168
|
+
isSource: !0,
|
|
169
|
+
$type: "string",
|
|
170
|
+
original: {
|
|
171
|
+
$value: "light-dark({color.blue.130}, {color.blue.130})",
|
|
172
|
+
$description: "Hover state på primärknapp",
|
|
173
|
+
$type: "string",
|
|
174
|
+
key: "{button.background.primary.hover}"
|
|
175
|
+
},
|
|
176
|
+
name: "buttonBackgroundPrimaryHover",
|
|
177
|
+
attributes: {},
|
|
178
|
+
path: ["button", "background", "primary", "hover"]
|
|
179
|
+
},
|
|
180
|
+
active: {
|
|
181
|
+
key: "{button.background.primary.active}",
|
|
182
|
+
$value: "light-dark(#2e7ca5, #143c50)",
|
|
183
|
+
$description: "Active state för primärknapp",
|
|
184
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
185
|
+
isSource: !0,
|
|
186
|
+
$type: "string",
|
|
187
|
+
original: {
|
|
188
|
+
$value: "light-dark({color.blue.100}, {color.blue.150})",
|
|
189
|
+
$description: "Active state för primärknapp",
|
|
190
|
+
$type: "string",
|
|
191
|
+
key: "{button.background.primary.active}"
|
|
192
|
+
},
|
|
193
|
+
name: "buttonBackgroundPrimaryActive",
|
|
194
|
+
attributes: {},
|
|
195
|
+
path: ["button", "background", "primary", "active"]
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
secondary: {
|
|
199
|
+
base: {
|
|
200
|
+
key: "{button.background.secondary.base}",
|
|
201
|
+
$value: "light-dark(#fff, #171717)",
|
|
202
|
+
$description: "Färg på sekundärknapp",
|
|
203
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
204
|
+
isSource: !0,
|
|
205
|
+
$type: "string",
|
|
206
|
+
original: {
|
|
207
|
+
$value: "light-dark({color.white.base}, {color.gray.200})",
|
|
208
|
+
$description: "Färg på sekundärknapp",
|
|
209
|
+
$type: "string",
|
|
210
|
+
key: "{button.background.secondary.base}"
|
|
211
|
+
},
|
|
212
|
+
name: "buttonBackgroundSecondaryBase",
|
|
213
|
+
attributes: {},
|
|
214
|
+
path: ["button", "background", "secondary", "base"]
|
|
215
|
+
},
|
|
216
|
+
hover: {
|
|
217
|
+
key: "{button.background.secondary.hover}",
|
|
218
|
+
$value: "light-dark(#e6e6e6, #212121)",
|
|
219
|
+
$description: "Hover state på sekundärknapp",
|
|
220
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
221
|
+
isSource: !0,
|
|
222
|
+
$type: "string",
|
|
223
|
+
original: {
|
|
224
|
+
$value: "light-dark({color.white.hover}, {color.gray.190})",
|
|
225
|
+
$description: "Hover state på sekundärknapp",
|
|
226
|
+
$type: "string",
|
|
227
|
+
key: "{button.background.secondary.hover}"
|
|
228
|
+
},
|
|
229
|
+
name: "buttonBackgroundSecondaryHover",
|
|
230
|
+
attributes: {},
|
|
231
|
+
path: ["button", "background", "secondary", "hover"]
|
|
232
|
+
},
|
|
233
|
+
active: {
|
|
234
|
+
key: "{button.background.secondary.active}",
|
|
235
|
+
$value: "light-dark(#d9d9d9, #262626)",
|
|
236
|
+
$description: "Active state för sekundärknapp",
|
|
237
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
238
|
+
isSource: !0,
|
|
239
|
+
$type: "string",
|
|
240
|
+
original: {
|
|
241
|
+
$value: "light-dark({color.gray.30}, {color.gray.180})",
|
|
242
|
+
$description: "Active state för sekundärknapp",
|
|
243
|
+
$type: "string",
|
|
244
|
+
key: "{button.background.secondary.active}"
|
|
245
|
+
},
|
|
246
|
+
name: "buttonBackgroundSecondaryActive",
|
|
247
|
+
attributes: {},
|
|
248
|
+
path: ["button", "background", "secondary", "active"]
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
tertiary: {
|
|
252
|
+
hover: {
|
|
253
|
+
key: "{button.background.tertiary.hover}",
|
|
254
|
+
$value: "light-dark(#0000000d, #ffffff21)",
|
|
255
|
+
$description: "Hover state för tertiär knapp",
|
|
256
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
257
|
+
isSource: !0,
|
|
258
|
+
$type: "string",
|
|
259
|
+
original: {
|
|
260
|
+
$value: "light-dark({color.black.opacity5}, {color.white.opacity13})",
|
|
261
|
+
$description: "Hover state för tertiär knapp",
|
|
262
|
+
$type: "string",
|
|
263
|
+
key: "{button.background.tertiary.hover}"
|
|
264
|
+
},
|
|
265
|
+
name: "buttonBackgroundTertiaryHover",
|
|
266
|
+
attributes: {},
|
|
267
|
+
path: ["button", "background", "tertiary", "hover"]
|
|
268
|
+
},
|
|
269
|
+
active: {
|
|
270
|
+
key: "{button.background.tertiary.active}",
|
|
271
|
+
$value: "light-dark(#d9d9d9, #262626)",
|
|
272
|
+
$description: "Active state för tertiär knapp",
|
|
273
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
274
|
+
isSource: !0,
|
|
275
|
+
$type: "string",
|
|
276
|
+
original: {
|
|
277
|
+
$value: "light-dark({color.gray.30}, {color.gray.180})",
|
|
278
|
+
$description: "Active state för tertiär knapp",
|
|
279
|
+
$type: "string",
|
|
280
|
+
key: "{button.background.tertiary.active}"
|
|
281
|
+
},
|
|
282
|
+
name: "buttonBackgroundTertiaryActive",
|
|
283
|
+
attributes: {},
|
|
284
|
+
path: ["button", "background", "tertiary", "active"]
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
danger: {
|
|
288
|
+
base: {
|
|
289
|
+
key: "{button.background.danger.base}",
|
|
290
|
+
$value: "light-dark(#e62323, #e62323)",
|
|
291
|
+
$description: "Färg på danger knapp",
|
|
292
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
293
|
+
isSource: !0,
|
|
294
|
+
$type: "string",
|
|
295
|
+
original: {
|
|
296
|
+
$value: "light-dark({color.signalRed.100}, {color.signalRed.100})",
|
|
297
|
+
$description: "Färg på danger knapp",
|
|
298
|
+
$type: "string",
|
|
299
|
+
key: "{button.background.danger.base}"
|
|
300
|
+
},
|
|
301
|
+
name: "buttonBackgroundDangerBase",
|
|
302
|
+
attributes: {},
|
|
303
|
+
path: ["button", "background", "danger", "base"]
|
|
304
|
+
},
|
|
305
|
+
hover: {
|
|
306
|
+
key: "{button.background.danger.hover}",
|
|
307
|
+
$value: "light-dark(#bc1d1d, #bc1d1d)",
|
|
308
|
+
$description: "Hover state för danger knapp",
|
|
309
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
310
|
+
isSource: !0,
|
|
311
|
+
$type: "string",
|
|
312
|
+
original: {
|
|
313
|
+
$value: "light-dark({color.signalRed.120}, {color.signalRed.120})",
|
|
314
|
+
$description: "Hover state för danger knapp",
|
|
315
|
+
$type: "string",
|
|
316
|
+
key: "{button.background.danger.hover}"
|
|
317
|
+
},
|
|
318
|
+
name: "buttonBackgroundDangerHover",
|
|
319
|
+
attributes: {},
|
|
320
|
+
path: ["button", "background", "danger", "hover"]
|
|
321
|
+
},
|
|
322
|
+
active: {
|
|
323
|
+
key: "{button.background.danger.active}",
|
|
324
|
+
$value: "light-dark(#7d1313, #7d1313)",
|
|
325
|
+
$description: "Active state för danger knapp",
|
|
326
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
327
|
+
isSource: !0,
|
|
328
|
+
$type: "string",
|
|
329
|
+
original: {
|
|
330
|
+
$value: "light-dark({color.signalRed.150}, {color.signalRed.150})",
|
|
331
|
+
$description: "Active state för danger knapp",
|
|
332
|
+
$type: "string",
|
|
333
|
+
key: "{button.background.danger.active}"
|
|
334
|
+
},
|
|
335
|
+
name: "buttonBackgroundDangerActive",
|
|
336
|
+
attributes: {},
|
|
337
|
+
path: ["button", "background", "danger", "active"]
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
disabled: {
|
|
341
|
+
key: "{button.background.disabled}",
|
|
342
|
+
$value: "light-dark(#f2f2f2, #262626)",
|
|
343
|
+
$description: "Disabled state för knappar",
|
|
344
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
345
|
+
isSource: !0,
|
|
346
|
+
$type: "string",
|
|
347
|
+
original: {
|
|
348
|
+
$value: "light-dark({color.gray.10}, {color.gray.180})",
|
|
349
|
+
$description: "Disabled state för knappar",
|
|
350
|
+
$type: "string",
|
|
351
|
+
key: "{button.background.disabled}"
|
|
352
|
+
},
|
|
353
|
+
name: "buttonBackgroundDisabled",
|
|
354
|
+
attributes: {},
|
|
355
|
+
path: ["button", "background", "disabled"]
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
border: {
|
|
359
|
+
secondary: {
|
|
360
|
+
key: "{button.border.secondary}",
|
|
361
|
+
$value: "light-dark(#143c50, #f2f2f2)",
|
|
362
|
+
$description: "Kantfärg för sekundärknapp",
|
|
363
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
364
|
+
isSource: !0,
|
|
365
|
+
$type: "string",
|
|
366
|
+
original: {
|
|
367
|
+
$value: "light-dark({color.blue.150}, {color.gray.10})",
|
|
368
|
+
$description: "Kantfärg för sekundärknapp",
|
|
369
|
+
$type: "string",
|
|
370
|
+
key: "{button.border.secondary}"
|
|
371
|
+
},
|
|
372
|
+
name: "buttonBorderSecondary",
|
|
373
|
+
attributes: {},
|
|
374
|
+
path: ["button", "border", "secondary"]
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
icon: {
|
|
378
|
+
hover: {
|
|
379
|
+
key: "{button.icon.hover}",
|
|
380
|
+
$value: "light-dark(#0000000d, #ffffff21)",
|
|
381
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
382
|
+
isSource: !0,
|
|
383
|
+
$type: "string",
|
|
384
|
+
original: {
|
|
385
|
+
$value: "light-dark({color.black.opacity5}, {color.white.opacity13})",
|
|
386
|
+
$type: "string",
|
|
387
|
+
key: "{button.icon.hover}"
|
|
388
|
+
},
|
|
389
|
+
name: "buttonIconHover",
|
|
390
|
+
attributes: {},
|
|
391
|
+
path: ["button", "icon", "hover"]
|
|
392
|
+
},
|
|
393
|
+
active: {
|
|
394
|
+
key: "{button.icon.active}",
|
|
395
|
+
$value: "light-dark(#00000033, #ffffff33)",
|
|
396
|
+
$description: "Active state för ikoner",
|
|
397
|
+
filePath: "packages/theme/tokens/buttons.json",
|
|
398
|
+
isSource: !0,
|
|
399
|
+
$type: "string",
|
|
400
|
+
original: {
|
|
401
|
+
$value: "light-dark(#00000033, #ffffff33)",
|
|
402
|
+
$description: "Active state för ikoner",
|
|
403
|
+
$type: "string",
|
|
404
|
+
key: "{button.icon.active}"
|
|
405
|
+
},
|
|
406
|
+
name: "buttonIconActive",
|
|
407
|
+
attributes: {},
|
|
408
|
+
path: ["button", "icon", "active"]
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
},
|
|
143
412
|
color: {
|
|
144
413
|
black: {
|
|
145
414
|
base: {
|
|
@@ -175,6 +444,23 @@ const Oa = {
|
|
|
175
444
|
name: "colorBlackHover",
|
|
176
445
|
attributes: {},
|
|
177
446
|
path: ["color", "black", "hover"]
|
|
447
|
+
},
|
|
448
|
+
opacity5: {
|
|
449
|
+
key: "{color.black.opacity5}",
|
|
450
|
+
$value: "#0000000d",
|
|
451
|
+
$description: "Black with 5% opacity",
|
|
452
|
+
filePath: "packages/theme/tokens/colors.json",
|
|
453
|
+
isSource: !0,
|
|
454
|
+
$type: "color",
|
|
455
|
+
original: {
|
|
456
|
+
$value: "#0000000d",
|
|
457
|
+
$description: "Black with 5% opacity",
|
|
458
|
+
$type: "color",
|
|
459
|
+
key: "{color.black.opacity5}"
|
|
460
|
+
},
|
|
461
|
+
name: "colorBlackOpacity5",
|
|
462
|
+
attributes: {},
|
|
463
|
+
path: ["color", "black", "opacity5"]
|
|
178
464
|
}
|
|
179
465
|
},
|
|
180
466
|
white: {
|
|
@@ -211,6 +497,23 @@ const Oa = {
|
|
|
211
497
|
name: "colorWhiteHover",
|
|
212
498
|
attributes: {},
|
|
213
499
|
path: ["color", "white", "hover"]
|
|
500
|
+
},
|
|
501
|
+
opacity13: {
|
|
502
|
+
key: "{color.white.opacity13}",
|
|
503
|
+
$value: "#ffffff21",
|
|
504
|
+
$description: "White with 13% opacity",
|
|
505
|
+
filePath: "packages/theme/tokens/colors.json",
|
|
506
|
+
isSource: !0,
|
|
507
|
+
$type: "color",
|
|
508
|
+
original: {
|
|
509
|
+
$value: "#ffffff21",
|
|
510
|
+
$description: "White with 13% opacity",
|
|
511
|
+
$type: "color",
|
|
512
|
+
key: "{color.white.opacity13}"
|
|
513
|
+
},
|
|
514
|
+
name: "colorWhiteOpacity13",
|
|
515
|
+
attributes: {},
|
|
516
|
+
path: ["color", "white", "opacity13"]
|
|
214
517
|
}
|
|
215
518
|
},
|
|
216
519
|
gray: {
|
|
@@ -1482,9 +1785,11 @@ const Oa = {
|
|
|
1482
1785
|
$description: "Standardbakgrund för våra applikationer",
|
|
1483
1786
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1484
1787
|
isSource: !0,
|
|
1788
|
+
$type: "string",
|
|
1485
1789
|
original: {
|
|
1486
1790
|
$value: "light-dark({color.white.base}, {color.gray.200})",
|
|
1487
1791
|
$description: "Standardbakgrund för våra applikationer",
|
|
1792
|
+
$type: "string",
|
|
1488
1793
|
key: "{background.base}"
|
|
1489
1794
|
},
|
|
1490
1795
|
name: "backgroundBase",
|
|
@@ -1497,9 +1802,11 @@ const Oa = {
|
|
|
1497
1802
|
$description: "Hoverfärg för bakgrund",
|
|
1498
1803
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1499
1804
|
isSource: !0,
|
|
1805
|
+
$type: "string",
|
|
1500
1806
|
original: {
|
|
1501
1807
|
$value: "light-dark({color.white.hover}, {color.gray.190})",
|
|
1502
1808
|
$description: "Hoverfärg för bakgrund",
|
|
1809
|
+
$type: "string",
|
|
1503
1810
|
key: "{background.hover}"
|
|
1504
1811
|
},
|
|
1505
1812
|
name: "backgroundHover",
|
|
@@ -1512,9 +1819,11 @@ const Oa = {
|
|
|
1512
1819
|
$description: "Bakgrund eller element i med hög kontrast",
|
|
1513
1820
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1514
1821
|
isSource: !0,
|
|
1822
|
+
$type: "string",
|
|
1515
1823
|
original: {
|
|
1516
1824
|
$value: "light-dark({color.gray.200}, {color.gray.10})",
|
|
1517
1825
|
$description: "Bakgrund eller element i med hög kontrast",
|
|
1826
|
+
$type: "string",
|
|
1518
1827
|
key: "{background.inverse}"
|
|
1519
1828
|
},
|
|
1520
1829
|
name: "backgroundInverse",
|
|
@@ -1530,9 +1839,11 @@ const Oa = {
|
|
|
1530
1839
|
$description: "Yta som används på background. Sekundär bakgrundsfärg",
|
|
1531
1840
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1532
1841
|
isSource: !0,
|
|
1842
|
+
$type: "string",
|
|
1533
1843
|
original: {
|
|
1534
1844
|
$value: "light-dark({color.gray.10}, {color.gray.180})",
|
|
1535
1845
|
$description: "Yta som används på background. Sekundär bakgrundsfärg",
|
|
1846
|
+
$type: "string",
|
|
1536
1847
|
key: "{layer.01.base}"
|
|
1537
1848
|
},
|
|
1538
1849
|
name: "layer01Base",
|
|
@@ -1545,9 +1856,11 @@ const Oa = {
|
|
|
1545
1856
|
$description: "Hover state för layer01",
|
|
1546
1857
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1547
1858
|
isSource: !0,
|
|
1859
|
+
$type: "string",
|
|
1548
1860
|
original: {
|
|
1549
1861
|
$value: "light-dark({color.gray.20}, {color.gray.170})",
|
|
1550
1862
|
$description: "Hover state för layer01",
|
|
1863
|
+
$type: "string",
|
|
1551
1864
|
key: "{layer.01.hover}"
|
|
1552
1865
|
},
|
|
1553
1866
|
name: "layer01Hover",
|
|
@@ -1560,9 +1873,11 @@ const Oa = {
|
|
|
1560
1873
|
$description: "Selected state för layer01",
|
|
1561
1874
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1562
1875
|
isSource: !0,
|
|
1876
|
+
$type: "string",
|
|
1563
1877
|
original: {
|
|
1564
1878
|
$value: "light-dark({color.gray.30}, {color.gray.160})",
|
|
1565
1879
|
$description: "Selected state för layer01",
|
|
1880
|
+
$type: "string",
|
|
1566
1881
|
key: "{layer.01.selected}"
|
|
1567
1882
|
},
|
|
1568
1883
|
name: "layer01Selected",
|
|
@@ -1575,9 +1890,11 @@ const Oa = {
|
|
|
1575
1890
|
$description: "Hover state för layerSelected01",
|
|
1576
1891
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1577
1892
|
isSource: !0,
|
|
1893
|
+
$type: "string",
|
|
1578
1894
|
original: {
|
|
1579
1895
|
$value: "light-dark({color.gray.40}, {color.gray.150})",
|
|
1580
1896
|
$description: "Hover state för layerSelected01",
|
|
1897
|
+
$type: "string",
|
|
1581
1898
|
key: "{layer.01.selectedHover}"
|
|
1582
1899
|
},
|
|
1583
1900
|
name: "layer01SelectedHover",
|
|
@@ -1592,9 +1909,11 @@ const Oa = {
|
|
|
1592
1909
|
$description: "Yta som ligger på layer01",
|
|
1593
1910
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1594
1911
|
isSource: !0,
|
|
1912
|
+
$type: "string",
|
|
1595
1913
|
original: {
|
|
1596
1914
|
$value: "light-dark({color.white.base}, {color.gray.160})",
|
|
1597
1915
|
$description: "Yta som ligger på layer01",
|
|
1916
|
+
$type: "string",
|
|
1598
1917
|
key: "{layer.02.base}"
|
|
1599
1918
|
},
|
|
1600
1919
|
name: "layer02Base",
|
|
@@ -1607,9 +1926,11 @@ const Oa = {
|
|
|
1607
1926
|
$description: "Hover state för layer02",
|
|
1608
1927
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1609
1928
|
isSource: !0,
|
|
1929
|
+
$type: "string",
|
|
1610
1930
|
original: {
|
|
1611
1931
|
$value: "light-dark({color.white.hover}, {color.gray.150})",
|
|
1612
1932
|
$description: "Hover state för layer02",
|
|
1933
|
+
$type: "string",
|
|
1613
1934
|
key: "{layer.02.hover}"
|
|
1614
1935
|
},
|
|
1615
1936
|
name: "layer02Hover",
|
|
@@ -1622,9 +1943,11 @@ const Oa = {
|
|
|
1622
1943
|
$description: "Selected state för layer02",
|
|
1623
1944
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1624
1945
|
isSource: !0,
|
|
1946
|
+
$type: "string",
|
|
1625
1947
|
original: {
|
|
1626
1948
|
$value: "light-dark({color.gray.30}, {color.gray.140})",
|
|
1627
1949
|
$description: "Selected state för layer02",
|
|
1950
|
+
$type: "string",
|
|
1628
1951
|
key: "{layer.02.selected}"
|
|
1629
1952
|
},
|
|
1630
1953
|
name: "layer02Selected",
|
|
@@ -1637,9 +1960,11 @@ const Oa = {
|
|
|
1637
1960
|
$description: "Hover state för layerSelected02",
|
|
1638
1961
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1639
1962
|
isSource: !0,
|
|
1963
|
+
$type: "string",
|
|
1640
1964
|
original: {
|
|
1641
1965
|
$value: "light-dark({color.gray.40}, {color.gray.130})",
|
|
1642
1966
|
$description: "Hover state för layerSelected02",
|
|
1967
|
+
$type: "string",
|
|
1643
1968
|
key: "{layer.02.selectedHover}"
|
|
1644
1969
|
},
|
|
1645
1970
|
name: "layer02SelectedHover",
|
|
@@ -1656,9 +1981,11 @@ const Oa = {
|
|
|
1656
1981
|
$description: "Accentfärg som används tillsammans med layer01",
|
|
1657
1982
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1658
1983
|
isSource: !0,
|
|
1984
|
+
$type: "string",
|
|
1659
1985
|
original: {
|
|
1660
1986
|
$value: "light-dark({color.gray.30}, {color.gray.160})",
|
|
1661
1987
|
$description: "Accentfärg som används tillsammans med layer01",
|
|
1988
|
+
$type: "string",
|
|
1662
1989
|
key: "{layerAccent.01.base}"
|
|
1663
1990
|
},
|
|
1664
1991
|
name: "layerAccent01Base",
|
|
@@ -1671,9 +1998,11 @@ const Oa = {
|
|
|
1671
1998
|
$description: "Hover state för layerAccent01",
|
|
1672
1999
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1673
2000
|
isSource: !0,
|
|
2001
|
+
$type: "string",
|
|
1674
2002
|
original: {
|
|
1675
2003
|
$value: "light-dark({color.gray.40}, {color.gray.150})",
|
|
1676
2004
|
$description: "Hover state för layerAccent01",
|
|
2005
|
+
$type: "string",
|
|
1677
2006
|
key: "{layerAccent.01.hover}"
|
|
1678
2007
|
},
|
|
1679
2008
|
name: "layerAccent01Hover",
|
|
@@ -1686,9 +2015,11 @@ const Oa = {
|
|
|
1686
2015
|
$description: "Selected state för layerAccent01",
|
|
1687
2016
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1688
2017
|
isSource: !0,
|
|
2018
|
+
$type: "string",
|
|
1689
2019
|
original: {
|
|
1690
2020
|
$value: "light-dark({color.gray.50}, {color.gray.140})",
|
|
1691
2021
|
$description: "Selected state för layerAccent01",
|
|
2022
|
+
$type: "string",
|
|
1692
2023
|
key: "{layerAccent.01.selected}"
|
|
1693
2024
|
},
|
|
1694
2025
|
name: "layerAccent01Selected",
|
|
@@ -1703,9 +2034,11 @@ const Oa = {
|
|
|
1703
2034
|
$description: "Accentfärg som används tillsammans med layer02",
|
|
1704
2035
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1705
2036
|
isSource: !0,
|
|
2037
|
+
$type: "string",
|
|
1706
2038
|
original: {
|
|
1707
2039
|
$value: "light-dark({color.gray.10}, {color.gray.180})",
|
|
1708
2040
|
$description: "Accentfärg som används tillsammans med layer02",
|
|
2041
|
+
$type: "string",
|
|
1709
2042
|
key: "{layerAccent.02.base}"
|
|
1710
2043
|
},
|
|
1711
2044
|
name: "layerAccent02Base",
|
|
@@ -1718,9 +2051,11 @@ const Oa = {
|
|
|
1718
2051
|
$description: "Hover state för layerAccent02",
|
|
1719
2052
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1720
2053
|
isSource: !0,
|
|
2054
|
+
$type: "string",
|
|
1721
2055
|
original: {
|
|
1722
2056
|
$value: "light-dark({color.gray.20}, {color.gray.170})",
|
|
1723
2057
|
$description: "Hover state för layerAccent02",
|
|
2058
|
+
$type: "string",
|
|
1724
2059
|
key: "{layerAccent.02.hover}"
|
|
1725
2060
|
},
|
|
1726
2061
|
name: "layerAccent02Hover",
|
|
@@ -1733,9 +2068,11 @@ const Oa = {
|
|
|
1733
2068
|
$description: "Selected state för layerAccent02",
|
|
1734
2069
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1735
2070
|
isSource: !0,
|
|
2071
|
+
$type: "string",
|
|
1736
2072
|
original: {
|
|
1737
2073
|
$value: "light-dark({color.gray.30}, {color.gray.160})",
|
|
1738
2074
|
$description: "Selected state för layerAccent02",
|
|
2075
|
+
$type: "string",
|
|
1739
2076
|
key: "{layerAccent.02.selected}"
|
|
1740
2077
|
},
|
|
1741
2078
|
name: "layerAccent02Selected",
|
|
@@ -1751,9 +2088,11 @@ const Oa = {
|
|
|
1751
2088
|
$description: "Primära röda färgen",
|
|
1752
2089
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1753
2090
|
isSource: !0,
|
|
2091
|
+
$type: "string",
|
|
1754
2092
|
original: {
|
|
1755
2093
|
$value: "light-dark({color.red.100}, {color.red.100})",
|
|
1756
2094
|
$description: "Primära röda färgen",
|
|
2095
|
+
$type: "string",
|
|
1757
2096
|
key: "{brand.primary}"
|
|
1758
2097
|
},
|
|
1759
2098
|
name: "brandPrimary",
|
|
@@ -1769,9 +2108,11 @@ const Oa = {
|
|
|
1769
2108
|
$description: "Kantlinje med hög kontrast, används med field01",
|
|
1770
2109
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1771
2110
|
isSource: !0,
|
|
2111
|
+
$type: "string",
|
|
1772
2112
|
original: {
|
|
1773
2113
|
$value: "light-dark({color.gray.200}, {color.gray.10})",
|
|
1774
2114
|
$description: "Kantlinje med hög kontrast, används med field01",
|
|
2115
|
+
$type: "string",
|
|
1775
2116
|
key: "{border.color.primary}"
|
|
1776
2117
|
},
|
|
1777
2118
|
name: "borderColorPrimary",
|
|
@@ -1784,9 +2125,11 @@ const Oa = {
|
|
|
1784
2125
|
$description: "Kantlinje med medelhög kontrast",
|
|
1785
2126
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1786
2127
|
isSource: !0,
|
|
2128
|
+
$type: "string",
|
|
1787
2129
|
original: {
|
|
1788
2130
|
$value: "light-dark({color.gray.110}, {color.gray.90})",
|
|
1789
2131
|
$description: "Kantlinje med medelhög kontrast",
|
|
2132
|
+
$type: "string",
|
|
1790
2133
|
key: "{border.color.secondary}"
|
|
1791
2134
|
},
|
|
1792
2135
|
name: "borderColorSecondary",
|
|
@@ -1799,9 +2142,11 @@ const Oa = {
|
|
|
1799
2142
|
$description: "Kantlinje med låg kontrast",
|
|
1800
2143
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1801
2144
|
isSource: !0,
|
|
2145
|
+
$type: "string",
|
|
1802
2146
|
original: {
|
|
1803
2147
|
$value: "light-dark({color.gray.50}, {color.gray.160})",
|
|
1804
2148
|
$description: "Kantlinje med låg kontrast",
|
|
2149
|
+
$type: "string",
|
|
1805
2150
|
key: "{border.color.subtle}"
|
|
1806
2151
|
},
|
|
1807
2152
|
name: "borderColorSubtle",
|
|
@@ -1814,9 +2159,11 @@ const Oa = {
|
|
|
1814
2159
|
$description: "Primärblå kantlinje",
|
|
1815
2160
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1816
2161
|
isSource: !0,
|
|
2162
|
+
$type: "string",
|
|
1817
2163
|
original: {
|
|
1818
2164
|
$value: "light-dark({color.blue.150}, {color.blue.100})",
|
|
1819
2165
|
$description: "Primärblå kantlinje",
|
|
2166
|
+
$type: "string",
|
|
1820
2167
|
key: "{border.color.tertiary}"
|
|
1821
2168
|
},
|
|
1822
2169
|
name: "borderColorTertiary",
|
|
@@ -1829,9 +2176,11 @@ const Oa = {
|
|
|
1829
2176
|
$description: "Kantlinje för disabled state",
|
|
1830
2177
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1831
2178
|
isSource: !0,
|
|
2179
|
+
$type: "string",
|
|
1832
2180
|
original: {
|
|
1833
2181
|
$value: "light-dark({color.gray.50}, {color.gray.140})",
|
|
1834
2182
|
$description: "Kantlinje för disabled state",
|
|
2183
|
+
$type: "string",
|
|
1835
2184
|
key: "{border.color.disabled}"
|
|
1836
2185
|
},
|
|
1837
2186
|
name: "borderColorDisabled",
|
|
@@ -1841,13 +2190,16 @@ const Oa = {
|
|
|
1841
2190
|
},
|
|
1842
2191
|
width: {
|
|
1843
2192
|
key: "{border.width}",
|
|
1844
|
-
$type: "size",
|
|
1845
2193
|
$value: "1px",
|
|
2194
|
+
$type: "dimension",
|
|
1846
2195
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1847
2196
|
isSource: !0,
|
|
1848
2197
|
original: {
|
|
1849
|
-
$
|
|
1850
|
-
|
|
2198
|
+
$value: {
|
|
2199
|
+
value: 1,
|
|
2200
|
+
unit: "px"
|
|
2201
|
+
},
|
|
2202
|
+
$type: "dimension",
|
|
1851
2203
|
key: "{border.width}"
|
|
1852
2204
|
},
|
|
1853
2205
|
name: "borderWidth",
|
|
@@ -1863,9 +2215,11 @@ const Oa = {
|
|
|
1863
2215
|
$description: "Standardfärg för fält, som ligger på background",
|
|
1864
2216
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1865
2217
|
isSource: !0,
|
|
2218
|
+
$type: "string",
|
|
1866
2219
|
original: {
|
|
1867
2220
|
$value: "light-dark({color.gray.10}, {color.gray.180})",
|
|
1868
2221
|
$description: "Standardfärg för fält, som ligger på background",
|
|
2222
|
+
$type: "string",
|
|
1869
2223
|
key: "{field.01.base}"
|
|
1870
2224
|
},
|
|
1871
2225
|
name: "field01Base",
|
|
@@ -1878,9 +2232,11 @@ const Oa = {
|
|
|
1878
2232
|
$description: "Hover state för field01",
|
|
1879
2233
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1880
2234
|
isSource: !0,
|
|
2235
|
+
$type: "string",
|
|
1881
2236
|
original: {
|
|
1882
2237
|
$value: "light-dark({color.gray.20}, {color.gray.170})",
|
|
1883
2238
|
$description: "Hover state för field01",
|
|
2239
|
+
$type: "string",
|
|
1884
2240
|
key: "{field.01.hover}"
|
|
1885
2241
|
},
|
|
1886
2242
|
name: "field01Hover",
|
|
@@ -1893,9 +2249,11 @@ const Oa = {
|
|
|
1893
2249
|
$description: "Active state för field01",
|
|
1894
2250
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1895
2251
|
isSource: !0,
|
|
2252
|
+
$type: "string",
|
|
1896
2253
|
original: {
|
|
1897
2254
|
$value: "light-dark({color.gray.30}, {color.gray.160})",
|
|
1898
2255
|
$description: "Active state för field01",
|
|
2256
|
+
$type: "string",
|
|
1899
2257
|
key: "{field.01.active}"
|
|
1900
2258
|
},
|
|
1901
2259
|
name: "field01Active",
|
|
@@ -1910,9 +2268,11 @@ const Oa = {
|
|
|
1910
2268
|
$description: "Sekundfärfärg för fält, som ligger på layer01",
|
|
1911
2269
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1912
2270
|
isSource: !0,
|
|
2271
|
+
$type: "string",
|
|
1913
2272
|
original: {
|
|
1914
2273
|
$value: "light-dark({color.white.base}, {color.gray.160})",
|
|
1915
2274
|
$description: "Sekundfärfärg för fält, som ligger på layer01",
|
|
2275
|
+
$type: "string",
|
|
1916
2276
|
key: "{field.02.base}"
|
|
1917
2277
|
},
|
|
1918
2278
|
name: "field02Base",
|
|
@@ -1925,9 +2285,11 @@ const Oa = {
|
|
|
1925
2285
|
$description: "Hover state för field02",
|
|
1926
2286
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1927
2287
|
isSource: !0,
|
|
2288
|
+
$type: "string",
|
|
1928
2289
|
original: {
|
|
1929
2290
|
$value: "light-dark({color.white.hover}, {color.gray.150})",
|
|
1930
2291
|
$description: "Hover state för field02",
|
|
2292
|
+
$type: "string",
|
|
1931
2293
|
key: "{field.02.hover}"
|
|
1932
2294
|
},
|
|
1933
2295
|
name: "field02Hover",
|
|
@@ -1940,9 +2302,11 @@ const Oa = {
|
|
|
1940
2302
|
$description: "Active state för field02",
|
|
1941
2303
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1942
2304
|
isSource: !0,
|
|
2305
|
+
$type: "string",
|
|
1943
2306
|
original: {
|
|
1944
2307
|
$value: "light-dark({color.gray.30}, {color.gray.140})",
|
|
1945
2308
|
$description: "Active state för field02",
|
|
2309
|
+
$type: "string",
|
|
1946
2310
|
key: "{field.02.active}"
|
|
1947
2311
|
},
|
|
1948
2312
|
name: "field02Active",
|
|
@@ -1956,9 +2320,11 @@ const Oa = {
|
|
|
1956
2320
|
$description: "Disabled state för fält",
|
|
1957
2321
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1958
2322
|
isSource: !0,
|
|
2323
|
+
$type: "string",
|
|
1959
2324
|
original: {
|
|
1960
2325
|
$value: "light-dark({color.gray.10}, {color.gray.180})",
|
|
1961
2326
|
$description: "Disabled state för fält",
|
|
2327
|
+
$type: "string",
|
|
1962
2328
|
key: "{field.disabled}"
|
|
1963
2329
|
},
|
|
1964
2330
|
name: "fieldDisabled",
|
|
@@ -1973,9 +2339,11 @@ const Oa = {
|
|
|
1973
2339
|
$description: "Standardfärg för skeleton",
|
|
1974
2340
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1975
2341
|
isSource: !0,
|
|
2342
|
+
$type: "string",
|
|
1976
2343
|
original: {
|
|
1977
2344
|
$value: "light-dark({color.gray.10}, {color.gray.180})",
|
|
1978
2345
|
$description: "Standardfärg för skeleton",
|
|
2346
|
+
$type: "string",
|
|
1979
2347
|
key: "{skeleton.01}"
|
|
1980
2348
|
},
|
|
1981
2349
|
name: "skeleton01",
|
|
@@ -1988,9 +2356,11 @@ const Oa = {
|
|
|
1988
2356
|
$description: "Färg som används när Skeleton ligger på bakgrundsfärgen `layer01` eller `light-dark(#f2f2f2,#262626)`",
|
|
1989
2357
|
filePath: "packages/theme/tokens/object-values.json",
|
|
1990
2358
|
isSource: !0,
|
|
2359
|
+
$type: "string",
|
|
1991
2360
|
original: {
|
|
1992
2361
|
$value: "light-dark({color.gray.30}, {color.gray.160})",
|
|
1993
2362
|
$description: "Färg som används när Skeleton ligger på bakgrundsfärgen `layer01` eller `light-dark(#f2f2f2,#262626)`",
|
|
2363
|
+
$type: "string",
|
|
1994
2364
|
key: "{skeleton.02}"
|
|
1995
2365
|
},
|
|
1996
2366
|
name: "skeleton02",
|
|
@@ -2005,9 +2375,11 @@ const Oa = {
|
|
|
2005
2375
|
$description: "Primär ikonfärg",
|
|
2006
2376
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2007
2377
|
isSource: !0,
|
|
2378
|
+
$type: "string",
|
|
2008
2379
|
original: {
|
|
2009
2380
|
$value: "light-dark({color.gray.200}, {color.gray.10})",
|
|
2010
2381
|
$description: "Primär ikonfärg",
|
|
2382
|
+
$type: "string",
|
|
2011
2383
|
key: "{icon.primary}"
|
|
2012
2384
|
},
|
|
2013
2385
|
name: "iconPrimary",
|
|
@@ -2020,9 +2392,11 @@ const Oa = {
|
|
|
2020
2392
|
$description: "Sekundär ikonfärg",
|
|
2021
2393
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2022
2394
|
isSource: !0,
|
|
2395
|
+
$type: "string",
|
|
2023
2396
|
original: {
|
|
2024
2397
|
$value: "light-dark({color.gray.140}, {color.gray.70})",
|
|
2025
2398
|
$description: "Sekundär ikonfärg",
|
|
2399
|
+
$type: "string",
|
|
2026
2400
|
key: "{icon.secondary}"
|
|
2027
2401
|
},
|
|
2028
2402
|
name: "iconSecondary",
|
|
@@ -2034,8 +2408,10 @@ const Oa = {
|
|
|
2034
2408
|
$value: "light-dark(#143c50, #f2f2f2)",
|
|
2035
2409
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2036
2410
|
isSource: !0,
|
|
2411
|
+
$type: "string",
|
|
2037
2412
|
original: {
|
|
2038
2413
|
$value: "light-dark({color.blue.150}, {color.gray.10})",
|
|
2414
|
+
$type: "string",
|
|
2039
2415
|
key: "{icon.tertiary}"
|
|
2040
2416
|
},
|
|
2041
2417
|
name: "iconTertiary",
|
|
@@ -2048,9 +2424,11 @@ const Oa = {
|
|
|
2048
2424
|
$description: "Inverterad ikonfärg. Ljus ikon i ljust läge och mörk ikon i mörkt läge",
|
|
2049
2425
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2050
2426
|
isSource: !0,
|
|
2427
|
+
$type: "string",
|
|
2051
2428
|
original: {
|
|
2052
2429
|
$value: "light-dark({color.white.base}, {color.gray.200})",
|
|
2053
2430
|
$description: "Inverterad ikonfärg. Ljus ikon i ljust läge och mörk ikon i mörkt läge",
|
|
2431
|
+
$type: "string",
|
|
2054
2432
|
key: "{icon.inverse}"
|
|
2055
2433
|
},
|
|
2056
2434
|
name: "iconInverse",
|
|
@@ -2063,9 +2441,11 @@ const Oa = {
|
|
|
2063
2441
|
$description: "Ikonfärg på färgade ytor som inte är lager",
|
|
2064
2442
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2065
2443
|
isSource: !0,
|
|
2444
|
+
$type: "string",
|
|
2066
2445
|
original: {
|
|
2067
2446
|
$value: "light-dark({color.white.base}, {color.white.base})",
|
|
2068
2447
|
$description: "Ikonfärg på färgade ytor som inte är lager",
|
|
2448
|
+
$type: "string",
|
|
2069
2449
|
key: "{icon.onColor}"
|
|
2070
2450
|
},
|
|
2071
2451
|
name: "iconOnColor",
|
|
@@ -2078,9 +2458,11 @@ const Oa = {
|
|
|
2078
2458
|
$description: "Ikoner som är disabled",
|
|
2079
2459
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2080
2460
|
isSource: !0,
|
|
2461
|
+
$type: "string",
|
|
2081
2462
|
original: {
|
|
2082
2463
|
$value: "light-dark({color.gray.50}, {color.gray.140})",
|
|
2083
2464
|
$description: "Ikoner som är disabled",
|
|
2465
|
+
$type: "string",
|
|
2084
2466
|
key: "{icon.disabled}"
|
|
2085
2467
|
},
|
|
2086
2468
|
name: "iconDisabled",
|
|
@@ -2093,9 +2475,11 @@ const Oa = {
|
|
|
2093
2475
|
$description: "Ikonfär för success state",
|
|
2094
2476
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2095
2477
|
isSource: !0,
|
|
2478
|
+
$type: "string",
|
|
2096
2479
|
original: {
|
|
2097
2480
|
$value: "light-dark({color.signalGreen.100}, {color.signalGreen.100})",
|
|
2098
2481
|
$description: "Ikonfär för success state",
|
|
2482
|
+
$type: "string",
|
|
2099
2483
|
key: "{icon.success}"
|
|
2100
2484
|
},
|
|
2101
2485
|
name: "iconSuccess",
|
|
@@ -2108,9 +2492,11 @@ const Oa = {
|
|
|
2108
2492
|
$description: "Ikonfärg för informationsikoner",
|
|
2109
2493
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2110
2494
|
isSource: !0,
|
|
2495
|
+
$type: "string",
|
|
2111
2496
|
original: {
|
|
2112
2497
|
$value: "light-dark({color.signalBlue.100}, {color.signalBlue.100})",
|
|
2113
2498
|
$description: "Ikonfärg för informationsikoner",
|
|
2499
|
+
$type: "string",
|
|
2114
2500
|
key: "{icon.info}"
|
|
2115
2501
|
},
|
|
2116
2502
|
name: "iconInfo",
|
|
@@ -2123,9 +2509,11 @@ const Oa = {
|
|
|
2123
2509
|
$description: "Ikonfärg för varningsikoner och invalid state",
|
|
2124
2510
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2125
2511
|
isSource: !0,
|
|
2512
|
+
$type: "string",
|
|
2126
2513
|
original: {
|
|
2127
2514
|
$value: "light-dark({color.signalRed.100}, {color.signalRed.100})",
|
|
2128
2515
|
$description: "Ikonfärg för varningsikoner och invalid state",
|
|
2516
|
+
$type: "string",
|
|
2129
2517
|
key: "{icon.warning}"
|
|
2130
2518
|
},
|
|
2131
2519
|
name: "iconWarning",
|
|
@@ -2138,9 +2526,11 @@ const Oa = {
|
|
|
2138
2526
|
$description: "Ikonfärg för viktig information",
|
|
2139
2527
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2140
2528
|
isSource: !0,
|
|
2529
|
+
$type: "string",
|
|
2141
2530
|
original: {
|
|
2142
2531
|
$value: "light-dark({color.signalYellow.100}, {color.signalYellow.100})",
|
|
2143
2532
|
$description: "Ikonfärg för viktig information",
|
|
2533
|
+
$type: "string",
|
|
2144
2534
|
key: "{icon.important}"
|
|
2145
2535
|
},
|
|
2146
2536
|
name: "iconImportant",
|
|
@@ -2155,9 +2545,11 @@ const Oa = {
|
|
|
2155
2545
|
$description: "Primärlänkfärg",
|
|
2156
2546
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2157
2547
|
isSource: !0,
|
|
2548
|
+
$type: "string",
|
|
2158
2549
|
original: {
|
|
2159
2550
|
$value: "light-dark({color.blue.120}, {color.blue.70})",
|
|
2160
2551
|
$description: "Primärlänkfärg",
|
|
2552
|
+
$type: "string",
|
|
2161
2553
|
key: "{link.enabled}"
|
|
2162
2554
|
},
|
|
2163
2555
|
name: "linkEnabled",
|
|
@@ -2170,9 +2562,11 @@ const Oa = {
|
|
|
2170
2562
|
$description: "Hover state för länkar",
|
|
2171
2563
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2172
2564
|
isSource: !0,
|
|
2565
|
+
$type: "string",
|
|
2173
2566
|
original: {
|
|
2174
2567
|
$value: "light-dark({color.blue.150}, {color.blue.50})",
|
|
2175
2568
|
$description: "Hover state för länkar",
|
|
2569
|
+
$type: "string",
|
|
2176
2570
|
key: "{link.hover}"
|
|
2177
2571
|
},
|
|
2178
2572
|
name: "linkHover",
|
|
@@ -2185,9 +2579,11 @@ const Oa = {
|
|
|
2185
2579
|
$description: "Active/pressed state för länkar",
|
|
2186
2580
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2187
2581
|
isSource: !0,
|
|
2582
|
+
$type: "string",
|
|
2188
2583
|
original: {
|
|
2189
2584
|
$value: "light-dark({color.gray.200}, {color.blue.40})",
|
|
2190
2585
|
$description: "Active/pressed state för länkar",
|
|
2586
|
+
$type: "string",
|
|
2191
2587
|
key: "{link.pressed}"
|
|
2192
2588
|
},
|
|
2193
2589
|
name: "linkPressed",
|
|
@@ -2200,9 +2596,11 @@ const Oa = {
|
|
|
2200
2596
|
$description: "Färg för besökta länkar",
|
|
2201
2597
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2202
2598
|
isSource: !0,
|
|
2599
|
+
$type: "string",
|
|
2203
2600
|
original: {
|
|
2204
2601
|
$value: "light-dark({color.purple.110}, {color.purple.80})",
|
|
2205
2602
|
$description: "Färg för besökta länkar",
|
|
2603
|
+
$type: "string",
|
|
2206
2604
|
key: "{link.visited}"
|
|
2207
2605
|
},
|
|
2208
2606
|
name: "linkVisited",
|
|
@@ -2218,9 +2616,11 @@ const Oa = {
|
|
|
2218
2616
|
$description: "Kantlinje för success-notifikationer",
|
|
2219
2617
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2220
2618
|
isSource: !0,
|
|
2619
|
+
$type: "string",
|
|
2221
2620
|
original: {
|
|
2222
2621
|
$value: "light-dark({color.signalGreen.100}, {color.signalGreen.100})",
|
|
2223
2622
|
$description: "Kantlinje för success-notifikationer",
|
|
2623
|
+
$type: "string",
|
|
2224
2624
|
key: "{support.border.success}"
|
|
2225
2625
|
},
|
|
2226
2626
|
name: "supportBorderSuccess",
|
|
@@ -2233,9 +2633,11 @@ const Oa = {
|
|
|
2233
2633
|
$description: "Kantlinje för notifikationer med information",
|
|
2234
2634
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2235
2635
|
isSource: !0,
|
|
2636
|
+
$type: "string",
|
|
2236
2637
|
original: {
|
|
2237
2638
|
$value: "light-dark({color.signalBlue.100}, {color.signalBlue.100})",
|
|
2238
2639
|
$description: "Kantlinje för notifikationer med information",
|
|
2640
|
+
$type: "string",
|
|
2239
2641
|
key: "{support.border.info}"
|
|
2240
2642
|
},
|
|
2241
2643
|
name: "supportBorderInfo",
|
|
@@ -2248,9 +2650,11 @@ const Oa = {
|
|
|
2248
2650
|
$description: "Kantlinje för notifikationer med viktig information",
|
|
2249
2651
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2250
2652
|
isSource: !0,
|
|
2653
|
+
$type: "string",
|
|
2251
2654
|
original: {
|
|
2252
2655
|
$value: "light-dark({color.signalYellow.100}, {color.signalYellow.100})",
|
|
2253
2656
|
$description: "Kantlinje för notifikationer med viktig information",
|
|
2657
|
+
$type: "string",
|
|
2254
2658
|
key: "{support.border.important}"
|
|
2255
2659
|
},
|
|
2256
2660
|
name: "supportBorderImportant",
|
|
@@ -2263,9 +2667,11 @@ const Oa = {
|
|
|
2263
2667
|
$description: "Kantlinje för notifikationer med varningar",
|
|
2264
2668
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2265
2669
|
isSource: !0,
|
|
2670
|
+
$type: "string",
|
|
2266
2671
|
original: {
|
|
2267
2672
|
$value: "light-dark({color.signalRed.100}, {color.signalRed.100})",
|
|
2268
2673
|
$description: "Kantlinje för notifikationer med varningar",
|
|
2674
|
+
$type: "string",
|
|
2269
2675
|
key: "{support.border.warning}"
|
|
2270
2676
|
},
|
|
2271
2677
|
name: "supportBorderWarning",
|
|
@@ -2280,9 +2686,11 @@ const Oa = {
|
|
|
2280
2686
|
$description: "Bakgrund för success-notifikationer",
|
|
2281
2687
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2282
2688
|
isSource: !0,
|
|
2689
|
+
$type: "string",
|
|
2283
2690
|
original: {
|
|
2284
2691
|
$value: "light-dark({color.signalGreen.20}, {color.gray.180})",
|
|
2285
2692
|
$description: "Bakgrund för success-notifikationer",
|
|
2693
|
+
$type: "string",
|
|
2286
2694
|
key: "{support.background.success}"
|
|
2287
2695
|
},
|
|
2288
2696
|
name: "supportBackgroundSuccess",
|
|
@@ -2295,9 +2703,11 @@ const Oa = {
|
|
|
2295
2703
|
$description: "Hoverbakgrund för success-notifikationer",
|
|
2296
2704
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2297
2705
|
isSource: !0,
|
|
2706
|
+
$type: "string",
|
|
2298
2707
|
original: {
|
|
2299
2708
|
$value: "light-dark({color.signalGreen.30}, {color.gray.170})",
|
|
2300
2709
|
$description: "Hoverbakgrund för success-notifikationer",
|
|
2710
|
+
$type: "string",
|
|
2301
2711
|
key: "{support.background.successHover}"
|
|
2302
2712
|
},
|
|
2303
2713
|
name: "supportBackgroundSuccessHover",
|
|
@@ -2310,9 +2720,11 @@ const Oa = {
|
|
|
2310
2720
|
$description: "Bakgrund för notifikationer med information",
|
|
2311
2721
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2312
2722
|
isSource: !0,
|
|
2723
|
+
$type: "string",
|
|
2313
2724
|
original: {
|
|
2314
2725
|
$value: "light-dark({color.signalBlue.10}, {color.gray.180})",
|
|
2315
2726
|
$description: "Bakgrund för notifikationer med information",
|
|
2727
|
+
$type: "string",
|
|
2316
2728
|
key: "{support.background.info}"
|
|
2317
2729
|
},
|
|
2318
2730
|
name: "supportBackgroundInfo",
|
|
@@ -2325,9 +2737,11 @@ const Oa = {
|
|
|
2325
2737
|
$description: "Hoverbakgrund för notifikationer med information",
|
|
2326
2738
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2327
2739
|
isSource: !0,
|
|
2740
|
+
$type: "string",
|
|
2328
2741
|
original: {
|
|
2329
2742
|
$value: "light-dark({color.signalBlue.20}, {color.gray.170})",
|
|
2330
2743
|
$description: "Hoverbakgrund för notifikationer med information",
|
|
2744
|
+
$type: "string",
|
|
2331
2745
|
key: "{support.background.infoHover}"
|
|
2332
2746
|
},
|
|
2333
2747
|
name: "supportBackgroundInfoHover",
|
|
@@ -2340,9 +2754,11 @@ const Oa = {
|
|
|
2340
2754
|
$description: "Bakgrund för notifikationer med viktig information",
|
|
2341
2755
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2342
2756
|
isSource: !0,
|
|
2757
|
+
$type: "string",
|
|
2343
2758
|
original: {
|
|
2344
2759
|
$value: "light-dark({color.signalYellow.10}, {color.gray.180})",
|
|
2345
2760
|
$description: "Bakgrund för notifikationer med viktig information",
|
|
2761
|
+
$type: "string",
|
|
2346
2762
|
key: "{support.background.important}"
|
|
2347
2763
|
},
|
|
2348
2764
|
name: "supportBackgroundImportant",
|
|
@@ -2355,9 +2771,11 @@ const Oa = {
|
|
|
2355
2771
|
$description: "Hoverbakgrund för notifikationer med viktig information",
|
|
2356
2772
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2357
2773
|
isSource: !0,
|
|
2774
|
+
$type: "string",
|
|
2358
2775
|
original: {
|
|
2359
2776
|
$value: "light-dark({color.signalYellow.20}, {color.gray.170})",
|
|
2360
2777
|
$description: "Hoverbakgrund för notifikationer med viktig information",
|
|
2778
|
+
$type: "string",
|
|
2361
2779
|
key: "{support.background.importantHover}"
|
|
2362
2780
|
},
|
|
2363
2781
|
name: "supportBackgroundImportantHover",
|
|
@@ -2370,9 +2788,11 @@ const Oa = {
|
|
|
2370
2788
|
$description: "Bakgrund för notifikationer med varningar",
|
|
2371
2789
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2372
2790
|
isSource: !0,
|
|
2791
|
+
$type: "string",
|
|
2373
2792
|
original: {
|
|
2374
2793
|
$value: "light-dark({color.signalRed.20}, {color.gray.180})",
|
|
2375
2794
|
$description: "Bakgrund för notifikationer med varningar",
|
|
2795
|
+
$type: "string",
|
|
2376
2796
|
key: "{support.background.warning}"
|
|
2377
2797
|
},
|
|
2378
2798
|
name: "supportBackgroundWarning",
|
|
@@ -2385,9 +2805,11 @@ const Oa = {
|
|
|
2385
2805
|
$description: "Hoverbakgrund för notifikationer med varningar",
|
|
2386
2806
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2387
2807
|
isSource: !0,
|
|
2808
|
+
$type: "string",
|
|
2388
2809
|
original: {
|
|
2389
2810
|
$value: "light-dark({color.signalRed.30}, {color.gray.170})",
|
|
2390
2811
|
$description: "Hoverbakgrund för notifikationer med varningar",
|
|
2812
|
+
$type: "string",
|
|
2391
2813
|
key: "{support.background.warningHover}"
|
|
2392
2814
|
},
|
|
2393
2815
|
name: "supportBackgroundWarningHover",
|
|
@@ -2403,9 +2825,11 @@ const Oa = {
|
|
|
2403
2825
|
$description: "Primär textfärg. Rubriker och brödtext.",
|
|
2404
2826
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2405
2827
|
isSource: !0,
|
|
2828
|
+
$type: "string",
|
|
2406
2829
|
original: {
|
|
2407
2830
|
$value: "light-dark({color.gray.200}, {color.gray.10})",
|
|
2408
2831
|
$description: "Primär textfärg. Rubriker och brödtext.",
|
|
2832
|
+
$type: "string",
|
|
2409
2833
|
key: "{text.primary}"
|
|
2410
2834
|
},
|
|
2411
2835
|
name: "textPrimary",
|
|
@@ -2418,9 +2842,11 @@ const Oa = {
|
|
|
2418
2842
|
$description: "Sekundär textfärg",
|
|
2419
2843
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2420
2844
|
isSource: !0,
|
|
2845
|
+
$type: "string",
|
|
2421
2846
|
original: {
|
|
2422
2847
|
$value: "light-dark({color.gray.140}, {color.gray.70})",
|
|
2423
2848
|
$description: "Sekundär textfärg",
|
|
2849
|
+
$type: "string",
|
|
2424
2850
|
key: "{text.secondary}"
|
|
2425
2851
|
},
|
|
2426
2852
|
name: "textSecondary",
|
|
@@ -2433,9 +2859,11 @@ const Oa = {
|
|
|
2433
2859
|
$description: "Textfärg på tertiär knapp",
|
|
2434
2860
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2435
2861
|
isSource: !0,
|
|
2862
|
+
$type: "string",
|
|
2436
2863
|
original: {
|
|
2437
2864
|
$value: "light-dark({color.blue.150}, {color.gray.10})",
|
|
2438
2865
|
$description: "Textfärg på tertiär knapp",
|
|
2866
|
+
$type: "string",
|
|
2439
2867
|
key: "{text.tertiary}"
|
|
2440
2868
|
},
|
|
2441
2869
|
name: "textTertiary",
|
|
@@ -2448,9 +2876,11 @@ const Oa = {
|
|
|
2448
2876
|
$description: "Textfärg på färgade bakgrunder som inte är lager",
|
|
2449
2877
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2450
2878
|
isSource: !0,
|
|
2879
|
+
$type: "string",
|
|
2451
2880
|
original: {
|
|
2452
2881
|
$value: "light-dark({color.white.base}, {color.white.base})",
|
|
2453
2882
|
$description: "Textfärg på färgade bakgrunder som inte är lager",
|
|
2883
|
+
$type: "string",
|
|
2454
2884
|
key: "{text.onColor}"
|
|
2455
2885
|
},
|
|
2456
2886
|
name: "textOnColor",
|
|
@@ -2463,9 +2893,11 @@ const Oa = {
|
|
|
2463
2893
|
$description: "Inverterad textfärg",
|
|
2464
2894
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2465
2895
|
isSource: !0,
|
|
2896
|
+
$type: "string",
|
|
2466
2897
|
original: {
|
|
2467
2898
|
$value: "light-dark({color.gray.10}, {color.gray.200})",
|
|
2468
2899
|
$description: "Inverterad textfärg",
|
|
2900
|
+
$type: "string",
|
|
2469
2901
|
key: "{text.inverse}"
|
|
2470
2902
|
},
|
|
2471
2903
|
name: "textInverse",
|
|
@@ -2478,9 +2910,11 @@ const Oa = {
|
|
|
2478
2910
|
$description: "Textfärg för disabled state",
|
|
2479
2911
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2480
2912
|
isSource: !0,
|
|
2913
|
+
$type: "string",
|
|
2481
2914
|
original: {
|
|
2482
2915
|
$value: "light-dark({color.gray.50}, {color.gray.140})",
|
|
2483
2916
|
$description: "Textfärg för disabled state",
|
|
2917
|
+
$type: "string",
|
|
2484
2918
|
key: "{text.disabled}"
|
|
2485
2919
|
},
|
|
2486
2920
|
name: "textDisabled",
|
|
@@ -2493,268 +2927,33 @@ const Oa = {
|
|
|
2493
2927
|
$description: "Textfärg för felmeddelanden",
|
|
2494
2928
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2495
2929
|
isSource: !0,
|
|
2930
|
+
$type: "string",
|
|
2496
2931
|
original: {
|
|
2497
2932
|
$value: "light-dark({color.signalRed.100}, {color.signalRed.80})",
|
|
2498
2933
|
$description: "Textfärg för felmeddelanden",
|
|
2934
|
+
$type: "string",
|
|
2499
2935
|
key: "{text.warning}"
|
|
2500
2936
|
},
|
|
2501
2937
|
name: "textWarning",
|
|
2502
2938
|
attributes: {},
|
|
2503
|
-
path: ["text", "warning"]
|
|
2504
|
-
},
|
|
2505
|
-
placeholder: {
|
|
2506
|
-
key: "{text.placeholder}",
|
|
2507
|
-
$value: "light-dark(#a6a6a6, #525252)",
|
|
2508
|
-
$description: "Textfärg för platshållare",
|
|
2509
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2510
|
-
isSource: !0,
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
$
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
attributes: {},
|
|
2518
|
-
path: ["text", "placeholder"]
|
|
2519
|
-
}
|
|
2520
|
-
},
|
|
2521
|
-
button: {
|
|
2522
|
-
background: {
|
|
2523
|
-
primary: {
|
|
2524
|
-
base: {
|
|
2525
|
-
key: "{button.background.primary.base}",
|
|
2526
|
-
$value: "light-dark(#143c50, #2e7ca5)",
|
|
2527
|
-
$description: "Färg på primärknapp",
|
|
2528
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2529
|
-
isSource: !0,
|
|
2530
|
-
original: {
|
|
2531
|
-
$value: "light-dark({color.blue.150}, {color.blue.100})",
|
|
2532
|
-
$description: "Färg på primärknapp",
|
|
2533
|
-
key: "{button.background.primary.base}"
|
|
2534
|
-
},
|
|
2535
|
-
name: "buttonBackgroundPrimaryBase",
|
|
2536
|
-
attributes: {},
|
|
2537
|
-
path: ["button", "background", "primary", "base"]
|
|
2538
|
-
},
|
|
2539
|
-
hover: {
|
|
2540
|
-
key: "{button.background.primary.hover}",
|
|
2541
|
-
$value: "light-dark(#25607f, #25607f)",
|
|
2542
|
-
$description: "Hover state på primärknapp",
|
|
2543
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2544
|
-
isSource: !0,
|
|
2545
|
-
original: {
|
|
2546
|
-
$value: "light-dark({color.blue.130}, {color.blue.130})",
|
|
2547
|
-
$description: "Hover state på primärknapp",
|
|
2548
|
-
key: "{button.background.primary.hover}"
|
|
2549
|
-
},
|
|
2550
|
-
name: "buttonBackgroundPrimaryHover",
|
|
2551
|
-
attributes: {},
|
|
2552
|
-
path: ["button", "background", "primary", "hover"]
|
|
2553
|
-
},
|
|
2554
|
-
active: {
|
|
2555
|
-
key: "{button.background.primary.active}",
|
|
2556
|
-
$value: "light-dark(#2e7ca5, #143c50)",
|
|
2557
|
-
$description: "Active state för primärknapp",
|
|
2558
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2559
|
-
isSource: !0,
|
|
2560
|
-
original: {
|
|
2561
|
-
$value: "light-dark({color.blue.100}, {color.blue.150})",
|
|
2562
|
-
$description: "Active state för primärknapp",
|
|
2563
|
-
key: "{button.background.primary.active}"
|
|
2564
|
-
},
|
|
2565
|
-
name: "buttonBackgroundPrimaryActive",
|
|
2566
|
-
attributes: {},
|
|
2567
|
-
path: ["button", "background", "primary", "active"]
|
|
2568
|
-
}
|
|
2569
|
-
},
|
|
2570
|
-
secondary: {
|
|
2571
|
-
base: {
|
|
2572
|
-
key: "{button.background.secondary.base}",
|
|
2573
|
-
$value: "light-dark(#fff, #171717)",
|
|
2574
|
-
$description: "Färg på sekundärknapp",
|
|
2575
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2576
|
-
isSource: !0,
|
|
2577
|
-
original: {
|
|
2578
|
-
$value: "light-dark({color.white.base}, {color.gray.200})",
|
|
2579
|
-
$description: "Färg på sekundärknapp",
|
|
2580
|
-
key: "{button.background.secondary.base}"
|
|
2581
|
-
},
|
|
2582
|
-
name: "buttonBackgroundSecondaryBase",
|
|
2583
|
-
attributes: {},
|
|
2584
|
-
path: ["button", "background", "secondary", "base"]
|
|
2585
|
-
},
|
|
2586
|
-
hover: {
|
|
2587
|
-
key: "{button.background.secondary.hover}",
|
|
2588
|
-
$value: "light-dark(#e6e6e6, #212121)",
|
|
2589
|
-
$description: "Hover state på sekundärknapp",
|
|
2590
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2591
|
-
isSource: !0,
|
|
2592
|
-
original: {
|
|
2593
|
-
$value: "light-dark({color.white.hover}, {color.gray.190})",
|
|
2594
|
-
$description: "Hover state på sekundärknapp",
|
|
2595
|
-
key: "{button.background.secondary.hover}"
|
|
2596
|
-
},
|
|
2597
|
-
name: "buttonBackgroundSecondaryHover",
|
|
2598
|
-
attributes: {},
|
|
2599
|
-
path: ["button", "background", "secondary", "hover"]
|
|
2600
|
-
},
|
|
2601
|
-
active: {
|
|
2602
|
-
key: "{button.background.secondary.active}",
|
|
2603
|
-
$value: "light-dark(#d9d9d9, #262626)",
|
|
2604
|
-
$description: "Active state för sekundärknapp",
|
|
2605
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2606
|
-
isSource: !0,
|
|
2607
|
-
original: {
|
|
2608
|
-
$value: "light-dark({color.gray.30}, {color.gray.180})",
|
|
2609
|
-
$description: "Active state för sekundärknapp",
|
|
2610
|
-
key: "{button.background.secondary.active}"
|
|
2611
|
-
},
|
|
2612
|
-
name: "buttonBackgroundSecondaryActive",
|
|
2613
|
-
attributes: {},
|
|
2614
|
-
path: ["button", "background", "secondary", "active"]
|
|
2615
|
-
}
|
|
2616
|
-
},
|
|
2617
|
-
tertiary: {
|
|
2618
|
-
hover: {
|
|
2619
|
-
key: "{button.background.tertiary.hover}",
|
|
2620
|
-
$value: "light-dark(#e6e6e6, #212121)",
|
|
2621
|
-
$description: "Hover state för tertiär knapp",
|
|
2622
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2623
|
-
isSource: !0,
|
|
2624
|
-
original: {
|
|
2625
|
-
$value: "light-dark({color.white.hover}, {color.gray.190})",
|
|
2626
|
-
$description: "Hover state för tertiär knapp",
|
|
2627
|
-
key: "{button.background.tertiary.hover}"
|
|
2628
|
-
},
|
|
2629
|
-
name: "buttonBackgroundTertiaryHover",
|
|
2630
|
-
attributes: {},
|
|
2631
|
-
path: ["button", "background", "tertiary", "hover"]
|
|
2632
|
-
},
|
|
2633
|
-
active: {
|
|
2634
|
-
key: "{button.background.tertiary.active}",
|
|
2635
|
-
$value: "light-dark(#d9d9d9, #262626)",
|
|
2636
|
-
$description: "Active state för tertiär knapp",
|
|
2637
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2638
|
-
isSource: !0,
|
|
2639
|
-
original: {
|
|
2640
|
-
$value: "light-dark({color.gray.30}, {color.gray.180})",
|
|
2641
|
-
$description: "Active state för tertiär knapp",
|
|
2642
|
-
key: "{button.background.tertiary.active}"
|
|
2643
|
-
},
|
|
2644
|
-
name: "buttonBackgroundTertiaryActive",
|
|
2645
|
-
attributes: {},
|
|
2646
|
-
path: ["button", "background", "tertiary", "active"]
|
|
2647
|
-
}
|
|
2648
|
-
},
|
|
2649
|
-
danger: {
|
|
2650
|
-
base: {
|
|
2651
|
-
key: "{button.background.danger.base}",
|
|
2652
|
-
$value: "light-dark(#e62323, #e62323)",
|
|
2653
|
-
$description: "Färg på danger knapp",
|
|
2654
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2655
|
-
isSource: !0,
|
|
2656
|
-
original: {
|
|
2657
|
-
$value: "light-dark({color.signalRed.100}, {color.signalRed.100})",
|
|
2658
|
-
$description: "Färg på danger knapp",
|
|
2659
|
-
key: "{button.background.danger.base}"
|
|
2660
|
-
},
|
|
2661
|
-
name: "buttonBackgroundDangerBase",
|
|
2662
|
-
attributes: {},
|
|
2663
|
-
path: ["button", "background", "danger", "base"]
|
|
2664
|
-
},
|
|
2665
|
-
hover: {
|
|
2666
|
-
key: "{button.background.danger.hover}",
|
|
2667
|
-
$value: "light-dark(#bc1d1d, #bc1d1d)",
|
|
2668
|
-
$description: "Hover state för danger knapp",
|
|
2669
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2670
|
-
isSource: !0,
|
|
2671
|
-
original: {
|
|
2672
|
-
$value: "light-dark({color.signalRed.120}, {color.signalRed.120})",
|
|
2673
|
-
$description: "Hover state för danger knapp",
|
|
2674
|
-
key: "{button.background.danger.hover}"
|
|
2675
|
-
},
|
|
2676
|
-
name: "buttonBackgroundDangerHover",
|
|
2677
|
-
attributes: {},
|
|
2678
|
-
path: ["button", "background", "danger", "hover"]
|
|
2679
|
-
},
|
|
2680
|
-
active: {
|
|
2681
|
-
key: "{button.background.danger.active}",
|
|
2682
|
-
$value: "light-dark(#7d1313, #7d1313)",
|
|
2683
|
-
$description: "Active state för danger knapp",
|
|
2684
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2685
|
-
isSource: !0,
|
|
2686
|
-
original: {
|
|
2687
|
-
$value: "light-dark({color.signalRed.150}, {color.signalRed.150})",
|
|
2688
|
-
$description: "Active state för danger knapp",
|
|
2689
|
-
key: "{button.background.danger.active}"
|
|
2690
|
-
},
|
|
2691
|
-
name: "buttonBackgroundDangerActive",
|
|
2692
|
-
attributes: {},
|
|
2693
|
-
path: ["button", "background", "danger", "active"]
|
|
2694
|
-
}
|
|
2695
|
-
},
|
|
2696
|
-
disabled: {
|
|
2697
|
-
key: "{button.background.disabled}",
|
|
2698
|
-
$value: "light-dark(#f2f2f2, #262626)",
|
|
2699
|
-
$description: "Disabled state för knappar",
|
|
2700
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2701
|
-
isSource: !0,
|
|
2702
|
-
original: {
|
|
2703
|
-
$value: "light-dark({color.gray.10}, {color.gray.180})",
|
|
2704
|
-
$description: "Disabled state för knappar",
|
|
2705
|
-
key: "{button.background.disabled}"
|
|
2706
|
-
},
|
|
2707
|
-
name: "buttonBackgroundDisabled",
|
|
2708
|
-
attributes: {},
|
|
2709
|
-
path: ["button", "background", "disabled"]
|
|
2710
|
-
}
|
|
2711
|
-
},
|
|
2712
|
-
border: {
|
|
2713
|
-
secondary: {
|
|
2714
|
-
key: "{button.border.secondary}",
|
|
2715
|
-
$value: "light-dark(#143c50, #f2f2f2)",
|
|
2716
|
-
$description: "Kantfärg för sekundärknapp",
|
|
2717
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2718
|
-
isSource: !0,
|
|
2719
|
-
original: {
|
|
2720
|
-
$value: "light-dark({color.blue.150}, {color.gray.10})",
|
|
2721
|
-
$description: "Kantfärg för sekundärknapp",
|
|
2722
|
-
key: "{button.border.secondary}"
|
|
2723
|
-
},
|
|
2724
|
-
name: "buttonBorderSecondary",
|
|
2725
|
-
attributes: {},
|
|
2726
|
-
path: ["button", "border", "secondary"]
|
|
2727
|
-
}
|
|
2728
|
-
},
|
|
2729
|
-
icon: {
|
|
2730
|
-
hover: {
|
|
2731
|
-
key: "{button.icon.hover}",
|
|
2732
|
-
$value: "light-dark(#0000001a, #ffffff1a)",
|
|
2733
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2734
|
-
isSource: !0,
|
|
2735
|
-
original: {
|
|
2736
|
-
$value: "light-dark(#0000001a, #ffffff1a)",
|
|
2737
|
-
key: "{button.icon.hover}"
|
|
2738
|
-
},
|
|
2739
|
-
name: "buttonIconHover",
|
|
2740
|
-
attributes: {},
|
|
2741
|
-
path: ["button", "icon", "hover"]
|
|
2939
|
+
path: ["text", "warning"]
|
|
2940
|
+
},
|
|
2941
|
+
placeholder: {
|
|
2942
|
+
key: "{text.placeholder}",
|
|
2943
|
+
$value: "light-dark(#a6a6a6, #525252)",
|
|
2944
|
+
$description: "Textfärg för platshållare",
|
|
2945
|
+
filePath: "packages/theme/tokens/object-values.json",
|
|
2946
|
+
isSource: !0,
|
|
2947
|
+
$type: "string",
|
|
2948
|
+
original: {
|
|
2949
|
+
$value: "light-dark({color.gray.70}, {color.gray.140})",
|
|
2950
|
+
$description: "Textfärg för platshållare",
|
|
2951
|
+
$type: "string",
|
|
2952
|
+
key: "{text.placeholder}"
|
|
2742
2953
|
},
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
$description: "Active state för ikoner",
|
|
2747
|
-
filePath: "packages/theme/tokens/object-values.json",
|
|
2748
|
-
isSource: !0,
|
|
2749
|
-
original: {
|
|
2750
|
-
$value: "light-dark(#00000033, #ffffff33)",
|
|
2751
|
-
$description: "Active state för ikoner",
|
|
2752
|
-
key: "{button.icon.active}"
|
|
2753
|
-
},
|
|
2754
|
-
name: "buttonIconActive",
|
|
2755
|
-
attributes: {},
|
|
2756
|
-
path: ["button", "icon", "active"]
|
|
2757
|
-
}
|
|
2954
|
+
name: "textPlaceholder",
|
|
2955
|
+
attributes: {},
|
|
2956
|
+
path: ["text", "placeholder"]
|
|
2758
2957
|
}
|
|
2759
2958
|
},
|
|
2760
2959
|
badge: {
|
|
@@ -2763,8 +2962,10 @@ const Oa = {
|
|
|
2763
2962
|
$value: "light-dark(#e62323, #e62323)",
|
|
2764
2963
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2765
2964
|
isSource: !0,
|
|
2965
|
+
$type: "string",
|
|
2766
2966
|
original: {
|
|
2767
2967
|
$value: "light-dark({color.signalRed.100}, {color.signalRed.100})",
|
|
2968
|
+
$type: "string",
|
|
2768
2969
|
key: "{badge.background}"
|
|
2769
2970
|
},
|
|
2770
2971
|
name: "badgeBackground",
|
|
@@ -2780,8 +2981,10 @@ const Oa = {
|
|
|
2780
2981
|
$value: "light-dark(#0000001a, #ffffff1a)",
|
|
2781
2982
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2782
2983
|
isSource: !0,
|
|
2984
|
+
$type: "string",
|
|
2783
2985
|
original: {
|
|
2784
2986
|
$value: "light-dark(#0000001a, #ffffff1a)",
|
|
2987
|
+
$type: "string",
|
|
2785
2988
|
key: "{calendar.date.background.hover}"
|
|
2786
2989
|
},
|
|
2787
2990
|
name: "calendarDateBackgroundHover",
|
|
@@ -2793,8 +2996,10 @@ const Oa = {
|
|
|
2793
2996
|
$value: "light-dark(#143c50, #5897b8)",
|
|
2794
2997
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2795
2998
|
isSource: !0,
|
|
2999
|
+
$type: "string",
|
|
2796
3000
|
original: {
|
|
2797
3001
|
$value: "light-dark({color.blue.150}, {color.blue.80})",
|
|
3002
|
+
$type: "string",
|
|
2798
3003
|
key: "{calendar.date.background.selected}"
|
|
2799
3004
|
},
|
|
2800
3005
|
name: "calendarDateBackgroundSelected",
|
|
@@ -2806,8 +3011,10 @@ const Oa = {
|
|
|
2806
3011
|
$value: "light-dark(#143c50, #5897b8)",
|
|
2807
3012
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2808
3013
|
isSource: !0,
|
|
3014
|
+
$type: "string",
|
|
2809
3015
|
original: {
|
|
2810
3016
|
$value: "light-dark({color.blue.150}, {color.blue.80})",
|
|
3017
|
+
$type: "string",
|
|
2811
3018
|
key: "{calendar.date.background.startRange}"
|
|
2812
3019
|
},
|
|
2813
3020
|
name: "calendarDateBackgroundStartRange",
|
|
@@ -2819,8 +3026,10 @@ const Oa = {
|
|
|
2819
3026
|
$value: "light-dark(#d5e5ed, #143c50)",
|
|
2820
3027
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2821
3028
|
isSource: !0,
|
|
3029
|
+
$type: "string",
|
|
2822
3030
|
original: {
|
|
2823
3031
|
$value: "light-dark({color.blue.20}, {color.blue.150})",
|
|
3032
|
+
$type: "string",
|
|
2824
3033
|
key: "{calendar.date.background.inRange}"
|
|
2825
3034
|
},
|
|
2826
3035
|
name: "calendarDateBackgroundInRange",
|
|
@@ -2832,8 +3041,10 @@ const Oa = {
|
|
|
2832
3041
|
$value: "light-dark(#143c50, #5897b8)",
|
|
2833
3042
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2834
3043
|
isSource: !0,
|
|
3044
|
+
$type: "string",
|
|
2835
3045
|
original: {
|
|
2836
3046
|
$value: "light-dark({color.blue.150}, {color.blue.80})",
|
|
3047
|
+
$type: "string",
|
|
2837
3048
|
key: "{calendar.date.background.endRange}"
|
|
2838
3049
|
},
|
|
2839
3050
|
name: "calendarDateBackgroundEndRange",
|
|
@@ -2850,9 +3061,11 @@ const Oa = {
|
|
|
2850
3061
|
$description: "Färg på logotypen",
|
|
2851
3062
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2852
3063
|
isSource: !0,
|
|
3064
|
+
$type: "string",
|
|
2853
3065
|
original: {
|
|
2854
3066
|
$value: "light-dark({color.red.100}, {color.white.base})",
|
|
2855
3067
|
$description: "Färg på logotypen",
|
|
3068
|
+
$type: "string",
|
|
2856
3069
|
key: "{logo.primary}"
|
|
2857
3070
|
},
|
|
2858
3071
|
name: "logoPrimary",
|
|
@@ -2869,9 +3082,11 @@ const Oa = {
|
|
|
2869
3082
|
$description: "Bakgrundsfärg för menu vid hover",
|
|
2870
3083
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2871
3084
|
isSource: !0,
|
|
3085
|
+
$type: "string",
|
|
2872
3086
|
original: {
|
|
2873
3087
|
$value: "light-dark({color.gray.20}, {color.gray.190})",
|
|
2874
3088
|
$description: "Bakgrundsfärg för menu vid hover",
|
|
3089
|
+
$type: "string",
|
|
2875
3090
|
key: "{menu.item.background.hover}"
|
|
2876
3091
|
},
|
|
2877
3092
|
name: "menuItemBackgroundHover",
|
|
@@ -2884,9 +3099,11 @@ const Oa = {
|
|
|
2884
3099
|
$description: "Bakgrundsfärg för aktiv menu",
|
|
2885
3100
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2886
3101
|
isSource: !0,
|
|
3102
|
+
$type: "string",
|
|
2887
3103
|
original: {
|
|
2888
3104
|
$value: "light-dark({color.gray.10}, {color.gray.180})",
|
|
2889
3105
|
$description: "Bakgrundsfärg för aktiv menu",
|
|
3106
|
+
$type: "string",
|
|
2890
3107
|
key: "{menu.item.background.selected}"
|
|
2891
3108
|
},
|
|
2892
3109
|
name: "menuItemBackgroundSelected",
|
|
@@ -2901,8 +3118,10 @@ const Oa = {
|
|
|
2901
3118
|
$value: "light-dark(#525252, #a6a6a6)",
|
|
2902
3119
|
filePath: "packages/theme/tokens/object-values.json",
|
|
2903
3120
|
isSource: !0,
|
|
3121
|
+
$type: "string",
|
|
2904
3122
|
original: {
|
|
2905
3123
|
$value: "light-dark({color.gray.140}, {color.gray.70})",
|
|
3124
|
+
$type: "string",
|
|
2906
3125
|
key: "{menu.text.sectionHeader}"
|
|
2907
3126
|
},
|
|
2908
3127
|
name: "menuTextSectionHeader",
|
|
@@ -2919,7 +3138,10 @@ const Oa = {
|
|
|
2919
3138
|
isSource: !0,
|
|
2920
3139
|
$type: "dimension",
|
|
2921
3140
|
original: {
|
|
2922
|
-
$value:
|
|
3141
|
+
$value: {
|
|
3142
|
+
value: 0.125,
|
|
3143
|
+
unit: "rem"
|
|
3144
|
+
},
|
|
2923
3145
|
$type: "dimension",
|
|
2924
3146
|
key: "{size.10}"
|
|
2925
3147
|
},
|
|
@@ -2934,7 +3156,10 @@ const Oa = {
|
|
|
2934
3156
|
isSource: !0,
|
|
2935
3157
|
$type: "dimension",
|
|
2936
3158
|
original: {
|
|
2937
|
-
$value:
|
|
3159
|
+
$value: {
|
|
3160
|
+
value: 0.188,
|
|
3161
|
+
unit: "rem"
|
|
3162
|
+
},
|
|
2938
3163
|
$type: "dimension",
|
|
2939
3164
|
key: "{size.15}"
|
|
2940
3165
|
},
|
|
@@ -2949,7 +3174,10 @@ const Oa = {
|
|
|
2949
3174
|
isSource: !0,
|
|
2950
3175
|
$type: "dimension",
|
|
2951
3176
|
original: {
|
|
2952
|
-
$value:
|
|
3177
|
+
$value: {
|
|
3178
|
+
value: 0.25,
|
|
3179
|
+
unit: "rem"
|
|
3180
|
+
},
|
|
2953
3181
|
$type: "dimension",
|
|
2954
3182
|
key: "{size.20}"
|
|
2955
3183
|
},
|
|
@@ -2964,7 +3192,10 @@ const Oa = {
|
|
|
2964
3192
|
isSource: !0,
|
|
2965
3193
|
$type: "dimension",
|
|
2966
3194
|
original: {
|
|
2967
|
-
$value:
|
|
3195
|
+
$value: {
|
|
3196
|
+
value: 0.375,
|
|
3197
|
+
unit: "rem"
|
|
3198
|
+
},
|
|
2968
3199
|
$type: "dimension",
|
|
2969
3200
|
key: "{size.30}"
|
|
2970
3201
|
},
|
|
@@ -2979,7 +3210,10 @@ const Oa = {
|
|
|
2979
3210
|
isSource: !0,
|
|
2980
3211
|
$type: "dimension",
|
|
2981
3212
|
original: {
|
|
2982
|
-
$value:
|
|
3213
|
+
$value: {
|
|
3214
|
+
value: 0.5,
|
|
3215
|
+
unit: "rem"
|
|
3216
|
+
},
|
|
2983
3217
|
$type: "dimension",
|
|
2984
3218
|
key: "{size.40}"
|
|
2985
3219
|
},
|
|
@@ -2994,7 +3228,10 @@ const Oa = {
|
|
|
2994
3228
|
isSource: !0,
|
|
2995
3229
|
$type: "dimension",
|
|
2996
3230
|
original: {
|
|
2997
|
-
$value:
|
|
3231
|
+
$value: {
|
|
3232
|
+
value: 0.625,
|
|
3233
|
+
unit: "rem"
|
|
3234
|
+
},
|
|
2998
3235
|
$type: "dimension",
|
|
2999
3236
|
key: "{size.50}"
|
|
3000
3237
|
},
|
|
@@ -3009,7 +3246,10 @@ const Oa = {
|
|
|
3009
3246
|
isSource: !0,
|
|
3010
3247
|
$type: "dimension",
|
|
3011
3248
|
original: {
|
|
3012
|
-
$value:
|
|
3249
|
+
$value: {
|
|
3250
|
+
value: 0.75,
|
|
3251
|
+
unit: "rem"
|
|
3252
|
+
},
|
|
3013
3253
|
$type: "dimension",
|
|
3014
3254
|
key: "{size.60}"
|
|
3015
3255
|
},
|
|
@@ -3024,7 +3264,10 @@ const Oa = {
|
|
|
3024
3264
|
isSource: !0,
|
|
3025
3265
|
$type: "dimension",
|
|
3026
3266
|
original: {
|
|
3027
|
-
$value:
|
|
3267
|
+
$value: {
|
|
3268
|
+
value: 0.875,
|
|
3269
|
+
unit: "rem"
|
|
3270
|
+
},
|
|
3028
3271
|
$type: "dimension",
|
|
3029
3272
|
key: "{size.70}"
|
|
3030
3273
|
},
|
|
@@ -3039,7 +3282,10 @@ const Oa = {
|
|
|
3039
3282
|
isSource: !0,
|
|
3040
3283
|
$type: "dimension",
|
|
3041
3284
|
original: {
|
|
3042
|
-
$value:
|
|
3285
|
+
$value: {
|
|
3286
|
+
value: 0.938,
|
|
3287
|
+
unit: "rem"
|
|
3288
|
+
},
|
|
3043
3289
|
$type: "dimension",
|
|
3044
3290
|
key: "{size.75}"
|
|
3045
3291
|
},
|
|
@@ -3054,7 +3300,10 @@ const Oa = {
|
|
|
3054
3300
|
isSource: !0,
|
|
3055
3301
|
$type: "dimension",
|
|
3056
3302
|
original: {
|
|
3057
|
-
$value:
|
|
3303
|
+
$value: {
|
|
3304
|
+
value: 1,
|
|
3305
|
+
unit: "rem"
|
|
3306
|
+
},
|
|
3058
3307
|
$type: "dimension",
|
|
3059
3308
|
key: "{size.80}"
|
|
3060
3309
|
},
|
|
@@ -3069,7 +3318,10 @@ const Oa = {
|
|
|
3069
3318
|
isSource: !0,
|
|
3070
3319
|
$type: "dimension",
|
|
3071
3320
|
original: {
|
|
3072
|
-
$value:
|
|
3321
|
+
$value: {
|
|
3322
|
+
value: 1.25,
|
|
3323
|
+
unit: "rem"
|
|
3324
|
+
},
|
|
3073
3325
|
$type: "dimension",
|
|
3074
3326
|
key: "{size.90}"
|
|
3075
3327
|
},
|
|
@@ -3084,7 +3336,10 @@ const Oa = {
|
|
|
3084
3336
|
isSource: !0,
|
|
3085
3337
|
$type: "dimension",
|
|
3086
3338
|
original: {
|
|
3087
|
-
$value:
|
|
3339
|
+
$value: {
|
|
3340
|
+
value: 1.5,
|
|
3341
|
+
unit: "rem"
|
|
3342
|
+
},
|
|
3088
3343
|
$type: "dimension",
|
|
3089
3344
|
key: "{size.100}"
|
|
3090
3345
|
},
|
|
@@ -3099,7 +3354,10 @@ const Oa = {
|
|
|
3099
3354
|
isSource: !0,
|
|
3100
3355
|
$type: "dimension",
|
|
3101
3356
|
original: {
|
|
3102
|
-
$value:
|
|
3357
|
+
$value: {
|
|
3358
|
+
value: 1.75,
|
|
3359
|
+
unit: "rem"
|
|
3360
|
+
},
|
|
3103
3361
|
$type: "dimension",
|
|
3104
3362
|
key: "{size.110}"
|
|
3105
3363
|
},
|
|
@@ -3114,7 +3372,10 @@ const Oa = {
|
|
|
3114
3372
|
isSource: !0,
|
|
3115
3373
|
$type: "dimension",
|
|
3116
3374
|
original: {
|
|
3117
|
-
$value:
|
|
3375
|
+
$value: {
|
|
3376
|
+
value: 2,
|
|
3377
|
+
unit: "rem"
|
|
3378
|
+
},
|
|
3118
3379
|
$type: "dimension",
|
|
3119
3380
|
key: "{size.120}"
|
|
3120
3381
|
},
|
|
@@ -3129,7 +3390,10 @@ const Oa = {
|
|
|
3129
3390
|
isSource: !0,
|
|
3130
3391
|
$type: "dimension",
|
|
3131
3392
|
original: {
|
|
3132
|
-
$value:
|
|
3393
|
+
$value: {
|
|
3394
|
+
value: 2.5,
|
|
3395
|
+
unit: "rem"
|
|
3396
|
+
},
|
|
3133
3397
|
$type: "dimension",
|
|
3134
3398
|
key: "{size.130}"
|
|
3135
3399
|
},
|
|
@@ -3144,7 +3408,10 @@ const Oa = {
|
|
|
3144
3408
|
isSource: !0,
|
|
3145
3409
|
$type: "dimension",
|
|
3146
3410
|
original: {
|
|
3147
|
-
$value:
|
|
3411
|
+
$value: {
|
|
3412
|
+
value: 2.75,
|
|
3413
|
+
unit: "rem"
|
|
3414
|
+
},
|
|
3148
3415
|
$type: "dimension",
|
|
3149
3416
|
key: "{size.140}"
|
|
3150
3417
|
},
|
|
@@ -3159,7 +3426,10 @@ const Oa = {
|
|
|
3159
3426
|
isSource: !0,
|
|
3160
3427
|
$type: "dimension",
|
|
3161
3428
|
original: {
|
|
3162
|
-
$value:
|
|
3429
|
+
$value: {
|
|
3430
|
+
value: 3,
|
|
3431
|
+
unit: "rem"
|
|
3432
|
+
},
|
|
3163
3433
|
$type: "dimension",
|
|
3164
3434
|
key: "{size.150}"
|
|
3165
3435
|
},
|
|
@@ -3169,13 +3439,16 @@ const Oa = {
|
|
|
3169
3439
|
},
|
|
3170
3440
|
"00": {
|
|
3171
3441
|
key: "{size.00}",
|
|
3172
|
-
$
|
|
3442
|
+
$type: "dimension",
|
|
3443
|
+
$value: "0rem",
|
|
3173
3444
|
filePath: "packages/theme/tokens/sizing.json",
|
|
3174
3445
|
isSource: !0,
|
|
3175
|
-
$type: "dimension",
|
|
3176
3446
|
original: {
|
|
3177
|
-
$value: 0,
|
|
3178
3447
|
$type: "dimension",
|
|
3448
|
+
$value: {
|
|
3449
|
+
value: 0,
|
|
3450
|
+
unit: "rem"
|
|
3451
|
+
},
|
|
3179
3452
|
key: "{size.00}"
|
|
3180
3453
|
},
|
|
3181
3454
|
name: "size00",
|
|
@@ -3189,7 +3462,10 @@ const Oa = {
|
|
|
3189
3462
|
isSource: !0,
|
|
3190
3463
|
$type: "dimension",
|
|
3191
3464
|
original: {
|
|
3192
|
-
$value:
|
|
3465
|
+
$value: {
|
|
3466
|
+
value: 0.063,
|
|
3467
|
+
unit: "rem"
|
|
3468
|
+
},
|
|
3193
3469
|
$type: "dimension",
|
|
3194
3470
|
key: "{size.05}"
|
|
3195
3471
|
},
|
|
@@ -3201,13 +3477,16 @@ const Oa = {
|
|
|
3201
3477
|
spacing: {
|
|
3202
3478
|
10: {
|
|
3203
3479
|
key: "{spacing.10}",
|
|
3204
|
-
$type: "dimension",
|
|
3205
3480
|
$value: "0.125rem",
|
|
3206
3481
|
filePath: "packages/theme/tokens/spacing.json",
|
|
3207
3482
|
isSource: !0,
|
|
3483
|
+
$type: "dimension",
|
|
3208
3484
|
original: {
|
|
3485
|
+
$value: {
|
|
3486
|
+
value: 0.125,
|
|
3487
|
+
unit: "rem"
|
|
3488
|
+
},
|
|
3209
3489
|
$type: "dimension",
|
|
3210
|
-
$value: "0.125rem",
|
|
3211
3490
|
key: "{spacing.10}"
|
|
3212
3491
|
},
|
|
3213
3492
|
name: "spacing10",
|
|
@@ -3216,13 +3495,16 @@ const Oa = {
|
|
|
3216
3495
|
},
|
|
3217
3496
|
20: {
|
|
3218
3497
|
key: "{spacing.20}",
|
|
3219
|
-
$type: "dimension",
|
|
3220
3498
|
$value: "0.25rem",
|
|
3221
3499
|
filePath: "packages/theme/tokens/spacing.json",
|
|
3222
3500
|
isSource: !0,
|
|
3501
|
+
$type: "dimension",
|
|
3223
3502
|
original: {
|
|
3503
|
+
$value: {
|
|
3504
|
+
value: 0.25,
|
|
3505
|
+
unit: "rem"
|
|
3506
|
+
},
|
|
3224
3507
|
$type: "dimension",
|
|
3225
|
-
$value: "0.25rem",
|
|
3226
3508
|
key: "{spacing.20}"
|
|
3227
3509
|
},
|
|
3228
3510
|
name: "spacing20",
|
|
@@ -3231,13 +3513,16 @@ const Oa = {
|
|
|
3231
3513
|
},
|
|
3232
3514
|
30: {
|
|
3233
3515
|
key: "{spacing.30}",
|
|
3234
|
-
$type: "dimension",
|
|
3235
3516
|
$value: "0.5rem",
|
|
3236
3517
|
filePath: "packages/theme/tokens/spacing.json",
|
|
3237
3518
|
isSource: !0,
|
|
3519
|
+
$type: "dimension",
|
|
3238
3520
|
original: {
|
|
3521
|
+
$value: {
|
|
3522
|
+
value: 0.5,
|
|
3523
|
+
unit: "rem"
|
|
3524
|
+
},
|
|
3239
3525
|
$type: "dimension",
|
|
3240
|
-
$value: "0.5rem",
|
|
3241
3526
|
key: "{spacing.30}"
|
|
3242
3527
|
},
|
|
3243
3528
|
name: "spacing30",
|
|
@@ -3246,13 +3531,16 @@ const Oa = {
|
|
|
3246
3531
|
},
|
|
3247
3532
|
40: {
|
|
3248
3533
|
key: "{spacing.40}",
|
|
3249
|
-
$type: "dimension",
|
|
3250
3534
|
$value: "0.75rem",
|
|
3251
3535
|
filePath: "packages/theme/tokens/spacing.json",
|
|
3252
3536
|
isSource: !0,
|
|
3537
|
+
$type: "dimension",
|
|
3253
3538
|
original: {
|
|
3539
|
+
$value: {
|
|
3540
|
+
value: 0.75,
|
|
3541
|
+
unit: "rem"
|
|
3542
|
+
},
|
|
3254
3543
|
$type: "dimension",
|
|
3255
|
-
$value: "0.75rem",
|
|
3256
3544
|
key: "{spacing.40}"
|
|
3257
3545
|
},
|
|
3258
3546
|
name: "spacing40",
|
|
@@ -3261,13 +3549,16 @@ const Oa = {
|
|
|
3261
3549
|
},
|
|
3262
3550
|
50: {
|
|
3263
3551
|
key: "{spacing.50}",
|
|
3264
|
-
$type: "dimension",
|
|
3265
3552
|
$value: "1rem",
|
|
3266
3553
|
filePath: "packages/theme/tokens/spacing.json",
|
|
3267
3554
|
isSource: !0,
|
|
3555
|
+
$type: "dimension",
|
|
3268
3556
|
original: {
|
|
3557
|
+
$value: {
|
|
3558
|
+
value: 1,
|
|
3559
|
+
unit: "rem"
|
|
3560
|
+
},
|
|
3269
3561
|
$type: "dimension",
|
|
3270
|
-
$value: "1rem",
|
|
3271
3562
|
key: "{spacing.50}"
|
|
3272
3563
|
},
|
|
3273
3564
|
name: "spacing50",
|
|
@@ -3276,13 +3567,16 @@ const Oa = {
|
|
|
3276
3567
|
},
|
|
3277
3568
|
60: {
|
|
3278
3569
|
key: "{spacing.60}",
|
|
3279
|
-
$type: "dimension",
|
|
3280
3570
|
$value: "1.5rem",
|
|
3281
3571
|
filePath: "packages/theme/tokens/spacing.json",
|
|
3282
3572
|
isSource: !0,
|
|
3573
|
+
$type: "dimension",
|
|
3283
3574
|
original: {
|
|
3575
|
+
$value: {
|
|
3576
|
+
value: 1.5,
|
|
3577
|
+
unit: "rem"
|
|
3578
|
+
},
|
|
3284
3579
|
$type: "dimension",
|
|
3285
|
-
$value: "1.5rem",
|
|
3286
3580
|
key: "{spacing.60}"
|
|
3287
3581
|
},
|
|
3288
3582
|
name: "spacing60",
|
|
@@ -3291,13 +3585,16 @@ const Oa = {
|
|
|
3291
3585
|
},
|
|
3292
3586
|
70: {
|
|
3293
3587
|
key: "{spacing.70}",
|
|
3294
|
-
$type: "dimension",
|
|
3295
3588
|
$value: "2rem",
|
|
3296
3589
|
filePath: "packages/theme/tokens/spacing.json",
|
|
3297
3590
|
isSource: !0,
|
|
3591
|
+
$type: "dimension",
|
|
3298
3592
|
original: {
|
|
3593
|
+
$value: {
|
|
3594
|
+
value: 2,
|
|
3595
|
+
unit: "rem"
|
|
3596
|
+
},
|
|
3299
3597
|
$type: "dimension",
|
|
3300
|
-
$value: "2rem",
|
|
3301
3598
|
key: "{spacing.70}"
|
|
3302
3599
|
},
|
|
3303
3600
|
name: "spacing70",
|
|
@@ -3306,13 +3603,16 @@ const Oa = {
|
|
|
3306
3603
|
},
|
|
3307
3604
|
80: {
|
|
3308
3605
|
key: "{spacing.80}",
|
|
3309
|
-
$type: "dimension",
|
|
3310
3606
|
$value: "2.5rem",
|
|
3311
3607
|
filePath: "packages/theme/tokens/spacing.json",
|
|
3312
3608
|
isSource: !0,
|
|
3609
|
+
$type: "dimension",
|
|
3313
3610
|
original: {
|
|
3611
|
+
$value: {
|
|
3612
|
+
value: 2.5,
|
|
3613
|
+
unit: "rem"
|
|
3614
|
+
},
|
|
3314
3615
|
$type: "dimension",
|
|
3315
|
-
$value: "2.5rem",
|
|
3316
3616
|
key: "{spacing.80}"
|
|
3317
3617
|
},
|
|
3318
3618
|
name: "spacing80",
|
|
@@ -3321,13 +3621,16 @@ const Oa = {
|
|
|
3321
3621
|
},
|
|
3322
3622
|
90: {
|
|
3323
3623
|
key: "{spacing.90}",
|
|
3324
|
-
$type: "dimension",
|
|
3325
3624
|
$value: "3rem",
|
|
3326
3625
|
filePath: "packages/theme/tokens/spacing.json",
|
|
3327
3626
|
isSource: !0,
|
|
3627
|
+
$type: "dimension",
|
|
3328
3628
|
original: {
|
|
3629
|
+
$value: {
|
|
3630
|
+
value: 3,
|
|
3631
|
+
unit: "rem"
|
|
3632
|
+
},
|
|
3329
3633
|
$type: "dimension",
|
|
3330
|
-
$value: "3rem",
|
|
3331
3634
|
key: "{spacing.90}"
|
|
3332
3635
|
},
|
|
3333
3636
|
name: "spacing90",
|
|
@@ -3336,13 +3639,16 @@ const Oa = {
|
|
|
3336
3639
|
},
|
|
3337
3640
|
100: {
|
|
3338
3641
|
key: "{spacing.100}",
|
|
3339
|
-
$type: "dimension",
|
|
3340
3642
|
$value: "4rem",
|
|
3341
3643
|
filePath: "packages/theme/tokens/spacing.json",
|
|
3342
3644
|
isSource: !0,
|
|
3645
|
+
$type: "dimension",
|
|
3343
3646
|
original: {
|
|
3647
|
+
$value: {
|
|
3648
|
+
value: 4,
|
|
3649
|
+
unit: "rem"
|
|
3650
|
+
},
|
|
3344
3651
|
$type: "dimension",
|
|
3345
|
-
$value: "4rem",
|
|
3346
3652
|
key: "{spacing.100}"
|
|
3347
3653
|
},
|
|
3348
3654
|
name: "spacing100",
|
|
@@ -3351,13 +3657,16 @@ const Oa = {
|
|
|
3351
3657
|
},
|
|
3352
3658
|
110: {
|
|
3353
3659
|
key: "{spacing.110}",
|
|
3354
|
-
$type: "dimension",
|
|
3355
3660
|
$value: "5rem",
|
|
3356
3661
|
filePath: "packages/theme/tokens/spacing.json",
|
|
3357
3662
|
isSource: !0,
|
|
3663
|
+
$type: "dimension",
|
|
3358
3664
|
original: {
|
|
3665
|
+
$value: {
|
|
3666
|
+
value: 5,
|
|
3667
|
+
unit: "rem"
|
|
3668
|
+
},
|
|
3359
3669
|
$type: "dimension",
|
|
3360
|
-
$value: "5rem",
|
|
3361
3670
|
key: "{spacing.110}"
|
|
3362
3671
|
},
|
|
3363
3672
|
name: "spacing110",
|
|
@@ -3366,18 +3675,96 @@ const Oa = {
|
|
|
3366
3675
|
},
|
|
3367
3676
|
120: {
|
|
3368
3677
|
key: "{spacing.120}",
|
|
3369
|
-
$type: "dimension",
|
|
3370
3678
|
$value: "6rem",
|
|
3371
3679
|
filePath: "packages/theme/tokens/spacing.json",
|
|
3372
3680
|
isSource: !0,
|
|
3681
|
+
$type: "dimension",
|
|
3373
3682
|
original: {
|
|
3683
|
+
$value: {
|
|
3684
|
+
value: 6,
|
|
3685
|
+
unit: "rem"
|
|
3686
|
+
},
|
|
3374
3687
|
$type: "dimension",
|
|
3375
|
-
$value: "6rem",
|
|
3376
3688
|
key: "{spacing.120}"
|
|
3377
3689
|
},
|
|
3378
3690
|
name: "spacing120",
|
|
3379
3691
|
attributes: {},
|
|
3380
3692
|
path: ["spacing", "120"]
|
|
3693
|
+
},
|
|
3694
|
+
xsmall: {
|
|
3695
|
+
key: "{spacing.xsmall}",
|
|
3696
|
+
$value: "0.25rem",
|
|
3697
|
+
filePath: "packages/theme/tokens/spacing.json",
|
|
3698
|
+
isSource: !0,
|
|
3699
|
+
$type: "dimension",
|
|
3700
|
+
original: {
|
|
3701
|
+
$value: "{size.20}",
|
|
3702
|
+
$type: "dimension",
|
|
3703
|
+
key: "{spacing.xsmall}"
|
|
3704
|
+
},
|
|
3705
|
+
name: "spacingXsmall",
|
|
3706
|
+
attributes: {},
|
|
3707
|
+
path: ["spacing", "xsmall"]
|
|
3708
|
+
},
|
|
3709
|
+
small: {
|
|
3710
|
+
key: "{spacing.small}",
|
|
3711
|
+
$value: "0.5rem",
|
|
3712
|
+
filePath: "packages/theme/tokens/spacing.json",
|
|
3713
|
+
isSource: !0,
|
|
3714
|
+
$type: "dimension",
|
|
3715
|
+
original: {
|
|
3716
|
+
$value: "{size.40}",
|
|
3717
|
+
$type: "dimension",
|
|
3718
|
+
key: "{spacing.small}"
|
|
3719
|
+
},
|
|
3720
|
+
name: "spacingSmall",
|
|
3721
|
+
attributes: {},
|
|
3722
|
+
path: ["spacing", "small"]
|
|
3723
|
+
},
|
|
3724
|
+
medium: {
|
|
3725
|
+
key: "{spacing.medium}",
|
|
3726
|
+
$value: "1rem",
|
|
3727
|
+
filePath: "packages/theme/tokens/spacing.json",
|
|
3728
|
+
isSource: !0,
|
|
3729
|
+
$type: "dimension",
|
|
3730
|
+
original: {
|
|
3731
|
+
$value: "{size.80}",
|
|
3732
|
+
$type: "dimension",
|
|
3733
|
+
key: "{spacing.medium}"
|
|
3734
|
+
},
|
|
3735
|
+
name: "spacingMedium",
|
|
3736
|
+
attributes: {},
|
|
3737
|
+
path: ["spacing", "medium"]
|
|
3738
|
+
},
|
|
3739
|
+
large: {
|
|
3740
|
+
key: "{spacing.large}",
|
|
3741
|
+
$value: "1.5rem",
|
|
3742
|
+
filePath: "packages/theme/tokens/spacing.json",
|
|
3743
|
+
isSource: !0,
|
|
3744
|
+
$type: "dimension",
|
|
3745
|
+
original: {
|
|
3746
|
+
$value: "{size.100}",
|
|
3747
|
+
$type: "dimension",
|
|
3748
|
+
key: "{spacing.large}"
|
|
3749
|
+
},
|
|
3750
|
+
name: "spacingLarge",
|
|
3751
|
+
attributes: {},
|
|
3752
|
+
path: ["spacing", "large"]
|
|
3753
|
+
},
|
|
3754
|
+
xlarge: {
|
|
3755
|
+
key: "{spacing.xlarge}",
|
|
3756
|
+
$value: "2rem",
|
|
3757
|
+
filePath: "packages/theme/tokens/spacing.json",
|
|
3758
|
+
isSource: !0,
|
|
3759
|
+
$type: "dimension",
|
|
3760
|
+
original: {
|
|
3761
|
+
$value: "{size.120}",
|
|
3762
|
+
$type: "dimension",
|
|
3763
|
+
key: "{spacing.xlarge}"
|
|
3764
|
+
},
|
|
3765
|
+
name: "spacingXlarge",
|
|
3766
|
+
attributes: {},
|
|
3767
|
+
path: ["spacing", "xlarge"]
|
|
3381
3768
|
}
|
|
3382
3769
|
},
|
|
3383
3770
|
state: {
|
|
@@ -3385,11 +3772,13 @@ const Oa = {
|
|
|
3385
3772
|
key: "{state.focus}",
|
|
3386
3773
|
$type: "string",
|
|
3387
3774
|
$value: "0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white)",
|
|
3775
|
+
$description: "Focus style used when the component is focused (box-shadow).",
|
|
3388
3776
|
filePath: "packages/theme/tokens/states.json",
|
|
3389
3777
|
isSource: !0,
|
|
3390
3778
|
original: {
|
|
3391
3779
|
$type: "string",
|
|
3392
3780
|
$value: "0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white)",
|
|
3781
|
+
$description: "Focus style used when the component is focused (box-shadow).",
|
|
3393
3782
|
key: "{state.focus}"
|
|
3394
3783
|
},
|
|
3395
3784
|
name: "stateFocus",
|
|
@@ -3400,64 +3789,182 @@ const Oa = {
|
|
|
3400
3789
|
key: "{state.focusInset}",
|
|
3401
3790
|
$type: "string",
|
|
3402
3791
|
$value: "inset 0 0 0 2px light-dark(black, white), inset 0 0 0 4px light-dark(white, black)",
|
|
3792
|
+
$description: "Inset variant of the focus ring (box-shadow inset).",
|
|
3403
3793
|
filePath: "packages/theme/tokens/states.json",
|
|
3404
3794
|
isSource: !0,
|
|
3405
3795
|
original: {
|
|
3406
3796
|
$type: "string",
|
|
3407
3797
|
$value: "inset 0 0 0 2px light-dark(black, white), inset 0 0 0 4px light-dark(white, black)",
|
|
3798
|
+
$description: "Inset variant of the focus ring (box-shadow inset).",
|
|
3408
3799
|
key: "{state.focusInset}"
|
|
3409
3800
|
},
|
|
3410
3801
|
name: "stateFocusInset",
|
|
3411
3802
|
attributes: {},
|
|
3412
3803
|
path: ["state", "focusInset"]
|
|
3804
|
+
},
|
|
3805
|
+
focusContrastMode: {
|
|
3806
|
+
outline: {
|
|
3807
|
+
key: "{state.focusContrastMode.outline}",
|
|
3808
|
+
$value: "2px",
|
|
3809
|
+
$description: "Outline style for focus ring when Windows High Contrast (forced-colors) mode is active.",
|
|
3810
|
+
filePath: "packages/theme/tokens/states.json",
|
|
3811
|
+
isSource: !0,
|
|
3812
|
+
$type: "dimension",
|
|
3813
|
+
original: {
|
|
3814
|
+
$value: "2px",
|
|
3815
|
+
$description: "Outline style for focus ring when Windows High Contrast (forced-colors) mode is active.",
|
|
3816
|
+
$type: "dimension",
|
|
3817
|
+
key: "{state.focusContrastMode.outline}"
|
|
3818
|
+
},
|
|
3819
|
+
name: "stateFocusContrastModeOutline",
|
|
3820
|
+
attributes: {},
|
|
3821
|
+
path: ["state", "focusContrastMode", "outline"]
|
|
3822
|
+
},
|
|
3823
|
+
offset: {
|
|
3824
|
+
key: "{state.focusContrastMode.offset}",
|
|
3825
|
+
$value: "2px",
|
|
3826
|
+
$description: "Outline offset for focus ring when Windows High Contrast (forced-colors) mode is active..",
|
|
3827
|
+
filePath: "packages/theme/tokens/states.json",
|
|
3828
|
+
isSource: !0,
|
|
3829
|
+
$type: "dimension",
|
|
3830
|
+
original: {
|
|
3831
|
+
$value: "2px",
|
|
3832
|
+
$description: "Outline offset for focus ring when Windows High Contrast (forced-colors) mode is active..",
|
|
3833
|
+
$type: "dimension",
|
|
3834
|
+
key: "{state.focusContrastMode.offset}"
|
|
3835
|
+
},
|
|
3836
|
+
name: "stateFocusContrastModeOffset",
|
|
3837
|
+
attributes: {},
|
|
3838
|
+
path: ["state", "focusContrastMode", "offset"]
|
|
3839
|
+
}
|
|
3413
3840
|
}
|
|
3414
3841
|
},
|
|
3415
|
-
|
|
3842
|
+
transition: {
|
|
3416
3843
|
duration: {
|
|
3417
3844
|
slow: {
|
|
3418
|
-
key: "{
|
|
3419
|
-
$type: "time",
|
|
3845
|
+
key: "{transition.duration.slow}",
|
|
3420
3846
|
$value: "500ms",
|
|
3847
|
+
$type: "duration",
|
|
3421
3848
|
filePath: "packages/theme/tokens/transitions.json",
|
|
3422
3849
|
isSource: !0,
|
|
3423
3850
|
original: {
|
|
3424
|
-
$type: "time",
|
|
3425
3851
|
$value: "500ms",
|
|
3426
|
-
|
|
3852
|
+
$type: "duration",
|
|
3853
|
+
key: "{transition.duration.slow}"
|
|
3427
3854
|
},
|
|
3428
|
-
name: "
|
|
3855
|
+
name: "transitionDurationSlow",
|
|
3429
3856
|
attributes: {},
|
|
3430
|
-
path: ["
|
|
3857
|
+
path: ["transition", "duration", "slow"]
|
|
3431
3858
|
},
|
|
3432
3859
|
normal: {
|
|
3433
|
-
key: "{
|
|
3434
|
-
$type: "time",
|
|
3860
|
+
key: "{transition.duration.normal}",
|
|
3435
3861
|
$value: "300ms",
|
|
3862
|
+
$type: "duration",
|
|
3436
3863
|
filePath: "packages/theme/tokens/transitions.json",
|
|
3437
3864
|
isSource: !0,
|
|
3438
3865
|
original: {
|
|
3439
|
-
$type: "time",
|
|
3440
3866
|
$value: "300ms",
|
|
3441
|
-
|
|
3867
|
+
$type: "duration",
|
|
3868
|
+
key: "{transition.duration.normal}"
|
|
3442
3869
|
},
|
|
3443
|
-
name: "
|
|
3870
|
+
name: "transitionDurationNormal",
|
|
3444
3871
|
attributes: {},
|
|
3445
|
-
path: ["
|
|
3872
|
+
path: ["transition", "duration", "normal"]
|
|
3446
3873
|
},
|
|
3447
3874
|
fast: {
|
|
3448
|
-
key: "{
|
|
3449
|
-
$type: "time",
|
|
3875
|
+
key: "{transition.duration.fast}",
|
|
3450
3876
|
$value: "250ms",
|
|
3877
|
+
$type: "duration",
|
|
3451
3878
|
filePath: "packages/theme/tokens/transitions.json",
|
|
3452
3879
|
isSource: !0,
|
|
3453
3880
|
original: {
|
|
3454
|
-
$type: "time",
|
|
3455
3881
|
$value: "250ms",
|
|
3456
|
-
|
|
3882
|
+
$type: "duration",
|
|
3883
|
+
key: "{transition.duration.fast}"
|
|
3884
|
+
},
|
|
3885
|
+
name: "transitionDurationFast",
|
|
3886
|
+
attributes: {},
|
|
3887
|
+
path: ["transition", "duration", "fast"]
|
|
3888
|
+
}
|
|
3889
|
+
},
|
|
3890
|
+
timing: {
|
|
3891
|
+
easeOut: {
|
|
3892
|
+
key: "{transition.timing.easeOut}",
|
|
3893
|
+
$value: [0, 0, 0.58, 1],
|
|
3894
|
+
$type: "cubicBezier",
|
|
3895
|
+
filePath: "packages/theme/tokens/transitions.json",
|
|
3896
|
+
isSource: !0,
|
|
3897
|
+
original: {
|
|
3898
|
+
$value: [0, 0, 0.58, 1],
|
|
3899
|
+
$type: "cubicBezier",
|
|
3900
|
+
key: "{transition.timing.easeOut}"
|
|
3901
|
+
},
|
|
3902
|
+
name: "transitionTimingEaseOut",
|
|
3903
|
+
attributes: {},
|
|
3904
|
+
path: ["transition", "timing", "easeOut"]
|
|
3905
|
+
},
|
|
3906
|
+
easeIn: {
|
|
3907
|
+
key: "{transition.timing.easeIn}",
|
|
3908
|
+
$value: [0.42, 0, 1, 1],
|
|
3909
|
+
$type: "cubicBezier",
|
|
3910
|
+
filePath: "packages/theme/tokens/transitions.json",
|
|
3911
|
+
isSource: !0,
|
|
3912
|
+
original: {
|
|
3913
|
+
$value: [0.42, 0, 1, 1],
|
|
3914
|
+
$type: "cubicBezier",
|
|
3915
|
+
key: "{transition.timing.easeIn}"
|
|
3916
|
+
},
|
|
3917
|
+
name: "transitionTimingEaseIn",
|
|
3918
|
+
attributes: {},
|
|
3919
|
+
path: ["transition", "timing", "easeIn"]
|
|
3920
|
+
}
|
|
3921
|
+
},
|
|
3922
|
+
panel: {
|
|
3923
|
+
collapse: {
|
|
3924
|
+
key: "{transition.panel.collapse}",
|
|
3925
|
+
$value: {
|
|
3926
|
+
delay: 0,
|
|
3927
|
+
duration: "300ms",
|
|
3928
|
+
timingFunction: [0, 0, 0.58, 1]
|
|
3929
|
+
},
|
|
3930
|
+
$type: "transition",
|
|
3931
|
+
filePath: "packages/theme/tokens/transitions.json",
|
|
3932
|
+
isSource: !0,
|
|
3933
|
+
original: {
|
|
3934
|
+
$value: {
|
|
3935
|
+
delay: 0,
|
|
3936
|
+
duration: "{transition.duration.normal}",
|
|
3937
|
+
timingFunction: "{transition.timing.easeOut}"
|
|
3938
|
+
},
|
|
3939
|
+
$type: "transition",
|
|
3940
|
+
key: "{transition.panel.collapse}"
|
|
3941
|
+
},
|
|
3942
|
+
name: "transitionPanelCollapse",
|
|
3943
|
+
attributes: {},
|
|
3944
|
+
path: ["transition", "panel", "collapse"]
|
|
3945
|
+
},
|
|
3946
|
+
expand: {
|
|
3947
|
+
key: "{transition.panel.expand}",
|
|
3948
|
+
$value: {
|
|
3949
|
+
delay: 0,
|
|
3950
|
+
duration: "300ms",
|
|
3951
|
+
timingFunction: [0.42, 0, 1, 1]
|
|
3952
|
+
},
|
|
3953
|
+
$type: "transition",
|
|
3954
|
+
filePath: "packages/theme/tokens/transitions.json",
|
|
3955
|
+
isSource: !0,
|
|
3956
|
+
original: {
|
|
3957
|
+
$value: {
|
|
3958
|
+
delay: 0,
|
|
3959
|
+
duration: "{transition.duration.normal}",
|
|
3960
|
+
timingFunction: "{transition.timing.easeIn}"
|
|
3961
|
+
},
|
|
3962
|
+
$type: "transition",
|
|
3963
|
+
key: "{transition.panel.expand}"
|
|
3457
3964
|
},
|
|
3458
|
-
name: "
|
|
3965
|
+
name: "transitionPanelExpand",
|
|
3459
3966
|
attributes: {},
|
|
3460
|
-
path: ["
|
|
3967
|
+
path: ["transition", "panel", "expand"]
|
|
3461
3968
|
}
|
|
3462
3969
|
}
|
|
3463
3970
|
},
|
|
@@ -3481,13 +3988,16 @@ const Oa = {
|
|
|
3481
3988
|
size: {
|
|
3482
3989
|
10: {
|
|
3483
3990
|
key: "{typography.font.size.10}",
|
|
3484
|
-
$type: "fontSize",
|
|
3485
3991
|
$value: "0.75rem",
|
|
3486
3992
|
filePath: "packages/theme/tokens/typography.json",
|
|
3487
3993
|
isSource: !0,
|
|
3994
|
+
$type: "dimension",
|
|
3488
3995
|
original: {
|
|
3489
|
-
$
|
|
3490
|
-
|
|
3996
|
+
$value: {
|
|
3997
|
+
value: 0.75,
|
|
3998
|
+
unit: "rem"
|
|
3999
|
+
},
|
|
4000
|
+
$type: "dimension",
|
|
3491
4001
|
key: "{typography.font.size.10}"
|
|
3492
4002
|
},
|
|
3493
4003
|
name: "typographyFontSize10",
|
|
@@ -3496,13 +4006,16 @@ const Oa = {
|
|
|
3496
4006
|
},
|
|
3497
4007
|
20: {
|
|
3498
4008
|
key: "{typography.font.size.20}",
|
|
3499
|
-
$type: "fontSize",
|
|
3500
4009
|
$value: "0.875rem",
|
|
3501
4010
|
filePath: "packages/theme/tokens/typography.json",
|
|
3502
4011
|
isSource: !0,
|
|
4012
|
+
$type: "dimension",
|
|
3503
4013
|
original: {
|
|
3504
|
-
$
|
|
3505
|
-
|
|
4014
|
+
$value: {
|
|
4015
|
+
value: 0.875,
|
|
4016
|
+
unit: "rem"
|
|
4017
|
+
},
|
|
4018
|
+
$type: "dimension",
|
|
3506
4019
|
key: "{typography.font.size.20}"
|
|
3507
4020
|
},
|
|
3508
4021
|
name: "typographyFontSize20",
|
|
@@ -3511,13 +4024,16 @@ const Oa = {
|
|
|
3511
4024
|
},
|
|
3512
4025
|
30: {
|
|
3513
4026
|
key: "{typography.font.size.30}",
|
|
3514
|
-
$type: "fontSize",
|
|
3515
4027
|
$value: "1rem",
|
|
3516
4028
|
filePath: "packages/theme/tokens/typography.json",
|
|
3517
4029
|
isSource: !0,
|
|
4030
|
+
$type: "dimension",
|
|
3518
4031
|
original: {
|
|
3519
|
-
$
|
|
3520
|
-
|
|
4032
|
+
$value: {
|
|
4033
|
+
value: 1,
|
|
4034
|
+
unit: "rem"
|
|
4035
|
+
},
|
|
4036
|
+
$type: "dimension",
|
|
3521
4037
|
key: "{typography.font.size.30}"
|
|
3522
4038
|
},
|
|
3523
4039
|
name: "typographyFontSize30",
|
|
@@ -3526,13 +4042,16 @@ const Oa = {
|
|
|
3526
4042
|
},
|
|
3527
4043
|
40: {
|
|
3528
4044
|
key: "{typography.font.size.40}",
|
|
3529
|
-
$type: "fontSize",
|
|
3530
4045
|
$value: "1.125rem",
|
|
3531
4046
|
filePath: "packages/theme/tokens/typography.json",
|
|
3532
4047
|
isSource: !0,
|
|
4048
|
+
$type: "dimension",
|
|
3533
4049
|
original: {
|
|
3534
|
-
$
|
|
3535
|
-
|
|
4050
|
+
$value: {
|
|
4051
|
+
value: 1.125,
|
|
4052
|
+
unit: "rem"
|
|
4053
|
+
},
|
|
4054
|
+
$type: "dimension",
|
|
3536
4055
|
key: "{typography.font.size.40}"
|
|
3537
4056
|
},
|
|
3538
4057
|
name: "typographyFontSize40",
|
|
@@ -3541,13 +4060,16 @@ const Oa = {
|
|
|
3541
4060
|
},
|
|
3542
4061
|
50: {
|
|
3543
4062
|
key: "{typography.font.size.50}",
|
|
3544
|
-
$type: "fontSize",
|
|
3545
4063
|
$value: "1.25rem",
|
|
3546
4064
|
filePath: "packages/theme/tokens/typography.json",
|
|
3547
4065
|
isSource: !0,
|
|
4066
|
+
$type: "dimension",
|
|
3548
4067
|
original: {
|
|
3549
|
-
$
|
|
3550
|
-
|
|
4068
|
+
$value: {
|
|
4069
|
+
value: 1.25,
|
|
4070
|
+
unit: "rem"
|
|
4071
|
+
},
|
|
4072
|
+
$type: "dimension",
|
|
3551
4073
|
key: "{typography.font.size.50}"
|
|
3552
4074
|
},
|
|
3553
4075
|
name: "typographyFontSize50",
|
|
@@ -3556,13 +4078,16 @@ const Oa = {
|
|
|
3556
4078
|
},
|
|
3557
4079
|
60: {
|
|
3558
4080
|
key: "{typography.font.size.60}",
|
|
3559
|
-
$type: "fontSize",
|
|
3560
4081
|
$value: "1.5rem",
|
|
3561
4082
|
filePath: "packages/theme/tokens/typography.json",
|
|
3562
4083
|
isSource: !0,
|
|
4084
|
+
$type: "dimension",
|
|
3563
4085
|
original: {
|
|
3564
|
-
$
|
|
3565
|
-
|
|
4086
|
+
$value: {
|
|
4087
|
+
value: 1.5,
|
|
4088
|
+
unit: "rem"
|
|
4089
|
+
},
|
|
4090
|
+
$type: "dimension",
|
|
3566
4091
|
key: "{typography.font.size.60}"
|
|
3567
4092
|
},
|
|
3568
4093
|
name: "typographyFontSize60",
|
|
@@ -3571,13 +4096,16 @@ const Oa = {
|
|
|
3571
4096
|
},
|
|
3572
4097
|
70: {
|
|
3573
4098
|
key: "{typography.font.size.70}",
|
|
3574
|
-
$
|
|
3575
|
-
$value: "1.75rem",
|
|
4099
|
+
$value: "1.625rem",
|
|
3576
4100
|
filePath: "packages/theme/tokens/typography.json",
|
|
3577
4101
|
isSource: !0,
|
|
4102
|
+
$type: "dimension",
|
|
3578
4103
|
original: {
|
|
3579
|
-
$
|
|
3580
|
-
|
|
4104
|
+
$value: {
|
|
4105
|
+
value: 1.625,
|
|
4106
|
+
unit: "rem"
|
|
4107
|
+
},
|
|
4108
|
+
$type: "dimension",
|
|
3581
4109
|
key: "{typography.font.size.70}"
|
|
3582
4110
|
},
|
|
3583
4111
|
name: "typographyFontSize70",
|
|
@@ -3586,13 +4114,16 @@ const Oa = {
|
|
|
3586
4114
|
},
|
|
3587
4115
|
80: {
|
|
3588
4116
|
key: "{typography.font.size.80}",
|
|
3589
|
-
$type: "fontSize",
|
|
3590
4117
|
$value: "2rem",
|
|
3591
4118
|
filePath: "packages/theme/tokens/typography.json",
|
|
3592
4119
|
isSource: !0,
|
|
4120
|
+
$type: "dimension",
|
|
3593
4121
|
original: {
|
|
3594
|
-
$
|
|
3595
|
-
|
|
4122
|
+
$value: {
|
|
4123
|
+
value: 2,
|
|
4124
|
+
unit: "rem"
|
|
4125
|
+
},
|
|
4126
|
+
$type: "dimension",
|
|
3596
4127
|
key: "{typography.font.size.80}"
|
|
3597
4128
|
},
|
|
3598
4129
|
name: "typographyFontSize80",
|
|
@@ -3601,13 +4132,16 @@ const Oa = {
|
|
|
3601
4132
|
},
|
|
3602
4133
|
90: {
|
|
3603
4134
|
key: "{typography.font.size.90}",
|
|
3604
|
-
$type: "fontSize",
|
|
3605
4135
|
$value: "2.25rem",
|
|
3606
4136
|
filePath: "packages/theme/tokens/typography.json",
|
|
3607
4137
|
isSource: !0,
|
|
4138
|
+
$type: "dimension",
|
|
3608
4139
|
original: {
|
|
3609
|
-
$
|
|
3610
|
-
|
|
4140
|
+
$value: {
|
|
4141
|
+
value: 2.25,
|
|
4142
|
+
unit: "rem"
|
|
4143
|
+
},
|
|
4144
|
+
$type: "dimension",
|
|
3611
4145
|
key: "{typography.font.size.90}"
|
|
3612
4146
|
},
|
|
3613
4147
|
name: "typographyFontSize90",
|
|
@@ -3616,13 +4150,16 @@ const Oa = {
|
|
|
3616
4150
|
},
|
|
3617
4151
|
100: {
|
|
3618
4152
|
key: "{typography.font.size.100}",
|
|
3619
|
-
$type: "fontSize",
|
|
3620
4153
|
$value: "2.625rem",
|
|
3621
4154
|
filePath: "packages/theme/tokens/typography.json",
|
|
3622
4155
|
isSource: !0,
|
|
4156
|
+
$type: "dimension",
|
|
3623
4157
|
original: {
|
|
3624
|
-
$
|
|
3625
|
-
|
|
4158
|
+
$value: {
|
|
4159
|
+
value: 2.625,
|
|
4160
|
+
unit: "rem"
|
|
4161
|
+
},
|
|
4162
|
+
$type: "dimension",
|
|
3626
4163
|
key: "{typography.font.size.100}"
|
|
3627
4164
|
},
|
|
3628
4165
|
name: "typographyFontSize100",
|
|
@@ -3634,13 +4171,16 @@ const Oa = {
|
|
|
3634
4171
|
lineHeight: {
|
|
3635
4172
|
10: {
|
|
3636
4173
|
key: "{typography.lineHeight.10}",
|
|
3637
|
-
$type: "lineHeight",
|
|
3638
4174
|
$value: "1rem",
|
|
3639
4175
|
filePath: "packages/theme/tokens/typography.json",
|
|
3640
4176
|
isSource: !0,
|
|
4177
|
+
$type: "dimension",
|
|
3641
4178
|
original: {
|
|
3642
|
-
$
|
|
3643
|
-
|
|
4179
|
+
$value: {
|
|
4180
|
+
value: 1,
|
|
4181
|
+
unit: "rem"
|
|
4182
|
+
},
|
|
4183
|
+
$type: "dimension",
|
|
3644
4184
|
key: "{typography.lineHeight.10}"
|
|
3645
4185
|
},
|
|
3646
4186
|
name: "typographyLineHeight10",
|
|
@@ -3649,13 +4189,16 @@ const Oa = {
|
|
|
3649
4189
|
},
|
|
3650
4190
|
20: {
|
|
3651
4191
|
key: "{typography.lineHeight.20}",
|
|
3652
|
-
$type: "lineHeight",
|
|
3653
4192
|
$value: "1.125rem",
|
|
3654
4193
|
filePath: "packages/theme/tokens/typography.json",
|
|
3655
4194
|
isSource: !0,
|
|
4195
|
+
$type: "dimension",
|
|
3656
4196
|
original: {
|
|
3657
|
-
$
|
|
3658
|
-
|
|
4197
|
+
$value: {
|
|
4198
|
+
value: 1.125,
|
|
4199
|
+
unit: "rem"
|
|
4200
|
+
},
|
|
4201
|
+
$type: "dimension",
|
|
3659
4202
|
key: "{typography.lineHeight.20}"
|
|
3660
4203
|
},
|
|
3661
4204
|
name: "typographyLineHeight20",
|
|
@@ -3664,13 +4207,16 @@ const Oa = {
|
|
|
3664
4207
|
},
|
|
3665
4208
|
30: {
|
|
3666
4209
|
key: "{typography.lineHeight.30}",
|
|
3667
|
-
$type: "lineHeight",
|
|
3668
4210
|
$value: "1.25rem",
|
|
3669
4211
|
filePath: "packages/theme/tokens/typography.json",
|
|
3670
4212
|
isSource: !0,
|
|
4213
|
+
$type: "dimension",
|
|
3671
4214
|
original: {
|
|
3672
|
-
$
|
|
3673
|
-
|
|
4215
|
+
$value: {
|
|
4216
|
+
value: 1.25,
|
|
4217
|
+
unit: "rem"
|
|
4218
|
+
},
|
|
4219
|
+
$type: "dimension",
|
|
3674
4220
|
key: "{typography.lineHeight.30}"
|
|
3675
4221
|
},
|
|
3676
4222
|
name: "typographyLineHeight30",
|
|
@@ -3679,13 +4225,16 @@ const Oa = {
|
|
|
3679
4225
|
},
|
|
3680
4226
|
40: {
|
|
3681
4227
|
key: "{typography.lineHeight.40}",
|
|
3682
|
-
$type: "lineHeight",
|
|
3683
4228
|
$value: "1.375rem",
|
|
3684
4229
|
filePath: "packages/theme/tokens/typography.json",
|
|
3685
4230
|
isSource: !0,
|
|
4231
|
+
$type: "dimension",
|
|
3686
4232
|
original: {
|
|
3687
|
-
$
|
|
3688
|
-
|
|
4233
|
+
$value: {
|
|
4234
|
+
value: 1.375,
|
|
4235
|
+
unit: "rem"
|
|
4236
|
+
},
|
|
4237
|
+
$type: "dimension",
|
|
3689
4238
|
key: "{typography.lineHeight.40}"
|
|
3690
4239
|
},
|
|
3691
4240
|
name: "typographyLineHeight40",
|
|
@@ -3694,13 +4243,16 @@ const Oa = {
|
|
|
3694
4243
|
},
|
|
3695
4244
|
50: {
|
|
3696
4245
|
key: "{typography.lineHeight.50}",
|
|
3697
|
-
$type: "lineHeight",
|
|
3698
4246
|
$value: "1.5rem",
|
|
3699
4247
|
filePath: "packages/theme/tokens/typography.json",
|
|
3700
4248
|
isSource: !0,
|
|
4249
|
+
$type: "dimension",
|
|
3701
4250
|
original: {
|
|
3702
|
-
$
|
|
3703
|
-
|
|
4251
|
+
$value: {
|
|
4252
|
+
value: 1.5,
|
|
4253
|
+
unit: "rem"
|
|
4254
|
+
},
|
|
4255
|
+
$type: "dimension",
|
|
3704
4256
|
key: "{typography.lineHeight.50}"
|
|
3705
4257
|
},
|
|
3706
4258
|
name: "typographyLineHeight50",
|
|
@@ -3709,13 +4261,16 @@ const Oa = {
|
|
|
3709
4261
|
},
|
|
3710
4262
|
60: {
|
|
3711
4263
|
key: "{typography.lineHeight.60}",
|
|
3712
|
-
$type: "lineHeight",
|
|
3713
4264
|
$value: "1.75rem",
|
|
3714
4265
|
filePath: "packages/theme/tokens/typography.json",
|
|
3715
4266
|
isSource: !0,
|
|
4267
|
+
$type: "dimension",
|
|
3716
4268
|
original: {
|
|
3717
|
-
$
|
|
3718
|
-
|
|
4269
|
+
$value: {
|
|
4270
|
+
value: 1.75,
|
|
4271
|
+
unit: "rem"
|
|
4272
|
+
},
|
|
4273
|
+
$type: "dimension",
|
|
3719
4274
|
key: "{typography.lineHeight.60}"
|
|
3720
4275
|
},
|
|
3721
4276
|
name: "typographyLineHeight60",
|
|
@@ -3724,13 +4279,16 @@ const Oa = {
|
|
|
3724
4279
|
},
|
|
3725
4280
|
70: {
|
|
3726
4281
|
key: "{typography.lineHeight.70}",
|
|
3727
|
-
$type: "lineHeight",
|
|
3728
4282
|
$value: "2rem",
|
|
3729
4283
|
filePath: "packages/theme/tokens/typography.json",
|
|
3730
4284
|
isSource: !0,
|
|
4285
|
+
$type: "dimension",
|
|
3731
4286
|
original: {
|
|
3732
|
-
$
|
|
3733
|
-
|
|
4287
|
+
$value: {
|
|
4288
|
+
value: 2,
|
|
4289
|
+
unit: "rem"
|
|
4290
|
+
},
|
|
4291
|
+
$type: "dimension",
|
|
3734
4292
|
key: "{typography.lineHeight.70}"
|
|
3735
4293
|
},
|
|
3736
4294
|
name: "typographyLineHeight70",
|
|
@@ -3739,13 +4297,16 @@ const Oa = {
|
|
|
3739
4297
|
},
|
|
3740
4298
|
80: {
|
|
3741
4299
|
key: "{typography.lineHeight.80}",
|
|
3742
|
-
$type: "lineHeight",
|
|
3743
4300
|
$value: "2.25rem",
|
|
3744
4301
|
filePath: "packages/theme/tokens/typography.json",
|
|
3745
4302
|
isSource: !0,
|
|
4303
|
+
$type: "dimension",
|
|
3746
4304
|
original: {
|
|
3747
|
-
$
|
|
3748
|
-
|
|
4305
|
+
$value: {
|
|
4306
|
+
value: 2.25,
|
|
4307
|
+
unit: "rem"
|
|
4308
|
+
},
|
|
4309
|
+
$type: "dimension",
|
|
3749
4310
|
key: "{typography.lineHeight.80}"
|
|
3750
4311
|
},
|
|
3751
4312
|
name: "typographyLineHeight80",
|
|
@@ -3754,13 +4315,16 @@ const Oa = {
|
|
|
3754
4315
|
},
|
|
3755
4316
|
90: {
|
|
3756
4317
|
key: "{typography.lineHeight.90}",
|
|
3757
|
-
$type: "lineHeight",
|
|
3758
4318
|
$value: "2.5rem",
|
|
3759
4319
|
filePath: "packages/theme/tokens/typography.json",
|
|
3760
4320
|
isSource: !0,
|
|
4321
|
+
$type: "dimension",
|
|
3761
4322
|
original: {
|
|
3762
|
-
$
|
|
3763
|
-
|
|
4323
|
+
$value: {
|
|
4324
|
+
value: 2.5,
|
|
4325
|
+
unit: "rem"
|
|
4326
|
+
},
|
|
4327
|
+
$type: "dimension",
|
|
3764
4328
|
key: "{typography.lineHeight.90}"
|
|
3765
4329
|
},
|
|
3766
4330
|
name: "typographyLineHeight90",
|
|
@@ -3769,13 +4333,16 @@ const Oa = {
|
|
|
3769
4333
|
},
|
|
3770
4334
|
100: {
|
|
3771
4335
|
key: "{typography.lineHeight.100}",
|
|
3772
|
-
$
|
|
3773
|
-
$value: "2.75rem",
|
|
4336
|
+
$value: "3rem",
|
|
3774
4337
|
filePath: "packages/theme/tokens/typography.json",
|
|
3775
4338
|
isSource: !0,
|
|
4339
|
+
$type: "dimension",
|
|
3776
4340
|
original: {
|
|
3777
|
-
$
|
|
3778
|
-
|
|
4341
|
+
$value: {
|
|
4342
|
+
value: 3,
|
|
4343
|
+
unit: "rem"
|
|
4344
|
+
},
|
|
4345
|
+
$type: "dimension",
|
|
3779
4346
|
key: "{typography.lineHeight.100}"
|
|
3780
4347
|
},
|
|
3781
4348
|
name: "typographyLineHeight100",
|
|
@@ -3786,13 +4353,13 @@ const Oa = {
|
|
|
3786
4353
|
weight: {
|
|
3787
4354
|
thin: {
|
|
3788
4355
|
key: "{typography.weight.thin}",
|
|
3789
|
-
$type: "fontWeight",
|
|
3790
4356
|
$value: 100,
|
|
3791
4357
|
filePath: "packages/theme/tokens/typography.json",
|
|
3792
4358
|
isSource: !0,
|
|
4359
|
+
$type: "fontWeight",
|
|
3793
4360
|
original: {
|
|
3794
|
-
$type: "fontWeight",
|
|
3795
4361
|
$value: 100,
|
|
4362
|
+
$type: "fontWeight",
|
|
3796
4363
|
key: "{typography.weight.thin}"
|
|
3797
4364
|
},
|
|
3798
4365
|
name: "typographyWeightThin",
|
|
@@ -3801,13 +4368,13 @@ const Oa = {
|
|
|
3801
4368
|
},
|
|
3802
4369
|
extraLight: {
|
|
3803
4370
|
key: "{typography.weight.extraLight}",
|
|
3804
|
-
$type: "fontWeight",
|
|
3805
4371
|
$value: 200,
|
|
3806
4372
|
filePath: "packages/theme/tokens/typography.json",
|
|
3807
4373
|
isSource: !0,
|
|
4374
|
+
$type: "fontWeight",
|
|
3808
4375
|
original: {
|
|
3809
|
-
$type: "fontWeight",
|
|
3810
4376
|
$value: 200,
|
|
4377
|
+
$type: "fontWeight",
|
|
3811
4378
|
key: "{typography.weight.extraLight}"
|
|
3812
4379
|
},
|
|
3813
4380
|
name: "typographyWeightExtraLight",
|
|
@@ -3816,13 +4383,13 @@ const Oa = {
|
|
|
3816
4383
|
},
|
|
3817
4384
|
light: {
|
|
3818
4385
|
key: "{typography.weight.light}",
|
|
3819
|
-
$type: "fontWeight",
|
|
3820
4386
|
$value: 300,
|
|
3821
4387
|
filePath: "packages/theme/tokens/typography.json",
|
|
3822
4388
|
isSource: !0,
|
|
4389
|
+
$type: "fontWeight",
|
|
3823
4390
|
original: {
|
|
3824
|
-
$type: "fontWeight",
|
|
3825
4391
|
$value: 300,
|
|
4392
|
+
$type: "fontWeight",
|
|
3826
4393
|
key: "{typography.weight.light}"
|
|
3827
4394
|
},
|
|
3828
4395
|
name: "typographyWeightLight",
|
|
@@ -3831,13 +4398,13 @@ const Oa = {
|
|
|
3831
4398
|
},
|
|
3832
4399
|
regular: {
|
|
3833
4400
|
key: "{typography.weight.regular}",
|
|
3834
|
-
$type: "fontWeight",
|
|
3835
4401
|
$value: 400,
|
|
3836
4402
|
filePath: "packages/theme/tokens/typography.json",
|
|
3837
4403
|
isSource: !0,
|
|
4404
|
+
$type: "fontWeight",
|
|
3838
4405
|
original: {
|
|
3839
|
-
$type: "fontWeight",
|
|
3840
4406
|
$value: 400,
|
|
4407
|
+
$type: "fontWeight",
|
|
3841
4408
|
key: "{typography.weight.regular}"
|
|
3842
4409
|
},
|
|
3843
4410
|
name: "typographyWeightRegular",
|
|
@@ -3846,13 +4413,13 @@ const Oa = {
|
|
|
3846
4413
|
},
|
|
3847
4414
|
medium: {
|
|
3848
4415
|
key: "{typography.weight.medium}",
|
|
3849
|
-
$type: "fontWeight",
|
|
3850
4416
|
$value: 500,
|
|
3851
4417
|
filePath: "packages/theme/tokens/typography.json",
|
|
3852
4418
|
isSource: !0,
|
|
4419
|
+
$type: "fontWeight",
|
|
3853
4420
|
original: {
|
|
3854
|
-
$type: "fontWeight",
|
|
3855
4421
|
$value: 500,
|
|
4422
|
+
$type: "fontWeight",
|
|
3856
4423
|
key: "{typography.weight.medium}"
|
|
3857
4424
|
},
|
|
3858
4425
|
name: "typographyWeightMedium",
|
|
@@ -3861,13 +4428,13 @@ const Oa = {
|
|
|
3861
4428
|
},
|
|
3862
4429
|
semiBold: {
|
|
3863
4430
|
key: "{typography.weight.semiBold}",
|
|
3864
|
-
$type: "fontWeight",
|
|
3865
4431
|
$value: 600,
|
|
3866
4432
|
filePath: "packages/theme/tokens/typography.json",
|
|
3867
4433
|
isSource: !0,
|
|
4434
|
+
$type: "fontWeight",
|
|
3868
4435
|
original: {
|
|
3869
|
-
$type: "fontWeight",
|
|
3870
4436
|
$value: 600,
|
|
4437
|
+
$type: "fontWeight",
|
|
3871
4438
|
key: "{typography.weight.semiBold}"
|
|
3872
4439
|
},
|
|
3873
4440
|
name: "typographyWeightSemiBold",
|
|
@@ -3876,13 +4443,13 @@ const Oa = {
|
|
|
3876
4443
|
},
|
|
3877
4444
|
bold: {
|
|
3878
4445
|
key: "{typography.weight.bold}",
|
|
3879
|
-
$type: "fontWeight",
|
|
3880
4446
|
$value: 700,
|
|
3881
4447
|
filePath: "packages/theme/tokens/typography.json",
|
|
3882
4448
|
isSource: !0,
|
|
4449
|
+
$type: "fontWeight",
|
|
3883
4450
|
original: {
|
|
3884
|
-
$type: "fontWeight",
|
|
3885
4451
|
$value: 700,
|
|
4452
|
+
$type: "fontWeight",
|
|
3886
4453
|
key: "{typography.weight.bold}"
|
|
3887
4454
|
},
|
|
3888
4455
|
name: "typographyWeightBold",
|
|
@@ -3891,13 +4458,13 @@ const Oa = {
|
|
|
3891
4458
|
},
|
|
3892
4459
|
extraBold: {
|
|
3893
4460
|
key: "{typography.weight.extraBold}",
|
|
3894
|
-
$type: "fontWeight",
|
|
3895
4461
|
$value: 800,
|
|
3896
4462
|
filePath: "packages/theme/tokens/typography.json",
|
|
3897
4463
|
isSource: !0,
|
|
4464
|
+
$type: "fontWeight",
|
|
3898
4465
|
original: {
|
|
3899
|
-
$type: "fontWeight",
|
|
3900
4466
|
$value: 800,
|
|
4467
|
+
$type: "fontWeight",
|
|
3901
4468
|
key: "{typography.weight.extraBold}"
|
|
3902
4469
|
},
|
|
3903
4470
|
name: "typographyWeightExtraBold",
|
|
@@ -3906,13 +4473,13 @@ const Oa = {
|
|
|
3906
4473
|
},
|
|
3907
4474
|
black: {
|
|
3908
4475
|
key: "{typography.weight.black}",
|
|
3909
|
-
$type: "fontWeight",
|
|
3910
4476
|
$value: 900,
|
|
3911
4477
|
filePath: "packages/theme/tokens/typography.json",
|
|
3912
4478
|
isSource: !0,
|
|
4479
|
+
$type: "fontWeight",
|
|
3913
4480
|
original: {
|
|
3914
|
-
$type: "fontWeight",
|
|
3915
4481
|
$value: 900,
|
|
4482
|
+
$type: "fontWeight",
|
|
3916
4483
|
key: "{typography.weight.black}"
|
|
3917
4484
|
},
|
|
3918
4485
|
name: "typographyWeightBlack",
|
|
@@ -3998,269 +4565,290 @@ const Oa = {
|
|
|
3998
4565
|
path: ["zIndex", "skipToContent"]
|
|
3999
4566
|
}
|
|
4000
4567
|
}
|
|
4001
|
-
}, e = "480px",
|
|
4568
|
+
}, e = "480px", t = "768px", o = "1024px", a = "1280px", r = "(max-width: calc(480px - 1px))", i = "(min-width: 480px)", n = "(min-width: 768px)", l = "(min-width: 1024px)", s = "(min-width: 1280px)", c = "light-dark(#143c50, #2e7ca5)", g = "light-dark(#25607f, #25607f)", u = "light-dark(#2e7ca5, #143c50)", p = "light-dark(#fff, #171717)", y = "light-dark(#e6e6e6, #212121)", k = "light-dark(#d9d9d9, #262626)", d = "light-dark(#0000000d, #ffffff21)", h = "light-dark(#d9d9d9, #262626)", $ = "light-dark(#e62323, #e62323)", m = "light-dark(#bc1d1d, #bc1d1d)", f = "light-dark(#7d1313, #7d1313)", b = "light-dark(#f2f2f2, #262626)", v = "light-dark(#143c50, #f2f2f2)", S = "light-dark(#0000000d, #ffffff21)", j = "light-dark(#00000033, #ffffff33)", P = "#000", w = "#0d0d0d", z = "#0000000d", B = "#fff", x = "#e6e6e6", H = "#ffffff21", R = "#f2f2f2", Y = "#e6e6e6", I = "#d9d9d9", A = "#ccc", C = "#bfbfbf", G = "#b3b3b3", W = "#a6a6a6", F = "#999", D = "#8c8c8c", T = "#808080", L = "#737373", O = "#666", M = "#5d5d5d", E = "#525252", K = "#474747", X = "#383838", _ = "#333", N = "#262626", V = "#212121", q = "#171717", J = "#eaf2f6", Q = "#d5e5ed", U = "#abcbdb", Z = "#94BCD1", ee = "#82b0c9", te = "#6CA3C0", oe = "#5897b8", ae = "#4289ad", re = "#2e7ca5", ie = "#2C7399", ne = "#29698C", le = "#25607f", se = "#143c50", ce = "#b46ab4", ge = "#954b95", ue = "#b90835", pe = "#eaf2f6", ye = "#d5e5ed", ke = "#06c", de = "#d5f2d9", he = "#bae5c5", $e = "#008d3c", me = "#194B33", fe = "#fff8e2", be = "#fff1cd", ve = "#ffeab8", Se = "#ffe3a3", je = "#ffdc8b", Pe = "#ffd47b", we = "#fdcd5d", ze = "#fbc640", Be = "#fabf1b", xe = "#fab900", He = "#daa105", Re = "#bd8c1e", Ye = "#a17927", Ie = "#88672a", Ae = "#70562b", Ce = "#5a4629", Ge = "#453826", We = "#322a20", Fe = "#201c18", De = "#0f0e0e", Te = "#ffefef", Le = "#ffdfdf", Oe = "#fcc8c8", Me = "#f9b0b0", Ee = "#f69999", Ke = "#f38181", Xe = "#ef6a6a", _e = "#EC5252", Ne = "#e93b3b", Ve = "#e62323", qe = "#d12020", Je = "#bc1d1d", Qe = "#a71919", Ue = "#921616", Ze = "#7d1313", et = "#691010", tt = "#540d0d", ot = "#3f0a0a", at = "#2a0606", rt = "#150303", it = "light-dark(#fff, #171717)", nt = "light-dark(#e6e6e6, #212121)", lt = "light-dark(#171717, #f2f2f2)", st = "light-dark(#f2f2f2, #262626)", ct = "light-dark(#e6e6e6, #333)", gt = "light-dark(#d9d9d9, #383838)", ut = "light-dark(#ccc, #474747)", pt = "light-dark(#fff, #383838)", yt = "light-dark(#e6e6e6, #474747)", kt = "light-dark(#d9d9d9, #525252)", dt = "light-dark(#ccc, #5d5d5d)", ht = "light-dark(#d9d9d9, #383838)", $t = "light-dark(#ccc, #474747)", mt = "light-dark(#bfbfbf, #525252)", ft = "light-dark(#f2f2f2, #262626)", bt = "light-dark(#e6e6e6, #333)", vt = "light-dark(#d9d9d9, #383838)", St = "light-dark(#b90835, #b90835)", jt = "light-dark(#171717, #f2f2f2)", Pt = "light-dark(#737373, #8c8c8c)", wt = "light-dark(#bfbfbf, #383838)", zt = "light-dark(#143c50, #2e7ca5)", Bt = "light-dark(#bfbfbf, #525252)", xt = "1px", Ht = "light-dark(#f2f2f2, #262626)", Rt = "light-dark(#e6e6e6, #333)", Yt = "light-dark(#d9d9d9, #383838)", It = "light-dark(#fff, #383838)", At = "light-dark(#e6e6e6, #474747)", Ct = "light-dark(#d9d9d9, #525252)", Gt = "light-dark(#f2f2f2, #262626)", Wt = "light-dark(#f2f2f2, #262626)", Ft = "light-dark(#d9d9d9, #383838)", Dt = "light-dark(#171717, #f2f2f2)", Tt = "light-dark(#525252, #a6a6a6)", Lt = "light-dark(#143c50, #f2f2f2)", Ot = "light-dark(#fff, #171717)", Mt = "light-dark(#fff, #fff)", Et = "light-dark(#bfbfbf, #525252)", Kt = "light-dark(#008d3c, #008d3c)", Xt = "light-dark(#06c, #06c)", _t = "light-dark(#e62323, #e62323)", Nt = "light-dark(#fab900, #fab900)", Vt = "light-dark(#29698C, #6CA3C0)", qt = "light-dark(#143c50, #94BCD1)", Jt = "light-dark(#171717, #abcbdb)", Qt = "light-dark(#954b95, #b46ab4)", Ut = "light-dark(#008d3c, #008d3c)", Zt = "light-dark(#06c, #06c)", eo = "light-dark(#fab900, #fab900)", to = "light-dark(#e62323, #e62323)", oo = "light-dark(#d5f2d9, #262626)", ao = "light-dark(#bae5c5, #333)", ro = "light-dark(#eaf2f6, #262626)", io = "light-dark(#d5e5ed, #333)", no = "light-dark(#fff8e2, #262626)", lo = "light-dark(#fff1cd, #333)", so = "light-dark(#ffdfdf, #262626)", co = "light-dark(#fcc8c8, #333)", go = "light-dark(#171717, #f2f2f2)", uo = "light-dark(#525252, #a6a6a6)", po = "light-dark(#143c50, #f2f2f2)", yo = "light-dark(#fff, #fff)", ko = "light-dark(#f2f2f2, #171717)", ho = "light-dark(#bfbfbf, #525252)", $o = "light-dark(#e62323, #EC5252)", mo = "light-dark(#a6a6a6, #525252)", fo = "light-dark(#e62323, #e62323)", bo = "light-dark(#0000001a, #ffffff1a)", vo = "light-dark(#143c50, #5897b8)", So = "light-dark(#143c50, #5897b8)", jo = "light-dark(#d5e5ed, #143c50)", Po = "light-dark(#143c50, #5897b8)", wo = "light-dark(#b90835, #fff)", zo = "light-dark(#e6e6e6, #212121)", Bo = "light-dark(#f2f2f2, #262626)", xo = "light-dark(#525252, #a6a6a6)", Ho = "0.125rem", Ro = "0.188rem", Yo = "0.25rem", Io = "0.375rem", Ao = "0.5rem", Co = "0.625rem", Go = "0.75rem", Wo = "0.875rem", Fo = "0.938rem", Do = "1rem", To = "1.25rem", Lo = "1.5rem", Oo = "1.75rem", Mo = "2rem", Eo = "2.5rem", Ko = "2.75rem", Xo = "3rem", _o = "0rem", No = "0.063rem", Vo = "0.125rem", qo = "0.25rem", Jo = "0.5rem", Qo = "0.75rem", Uo = "1rem", Zo = "1.5rem", ea = "2rem", ta = "2.5rem", oa = "3rem", aa = "4rem", ra = "5rem", ia = "6rem", na = "0.25rem", la = "0.5rem", sa = "1rem", ca = "1.5rem", ga = "2rem", ua = "0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white)", pa = "inset 0 0 0 2px light-dark(black, white), inset 0 0 0 4px light-dark(white, black)", ya = "2px", ka = "2px", da = "500ms", ha = "300ms", $a = "250ms", ma = [0, 0, 0.58, 1], fa = [0.42, 0, 1, 1], ba = {
|
|
4569
|
+
delay: 0,
|
|
4570
|
+
duration: "300ms",
|
|
4571
|
+
timingFunction: [0, 0, 0.58, 1]
|
|
4572
|
+
}, va = {
|
|
4573
|
+
delay: 0,
|
|
4574
|
+
duration: "300ms",
|
|
4575
|
+
timingFunction: [0.42, 0, 1, 1]
|
|
4576
|
+
}, Sa = "Inter, sans-serif", ja = "0.75rem", Pa = "0.875rem", wa = "1rem", za = "1.125rem", Ba = "1.25rem", xa = "1.5rem", Ha = "1.625rem", Ra = "2rem", Ya = "2.25rem", Ia = "2.625rem", Aa = "1rem", Ca = "1.125rem", Ga = "1.25rem", Wa = "1.375rem", Fa = "1.5rem", Da = "1.75rem", Ta = "2rem", La = "2.25rem", Oa = "2.5rem", Ma = "3rem", Ea = 100, Ka = 200, Xa = 300, _a = 400, Na = 500, Va = 600, qa = 700, Ja = 800, Qa = 900, Ua = 1, Za = 10, er = 1e3, tr = 1100, or = 1200, rr = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
4002
4577
|
__proto__: null,
|
|
4003
|
-
backgroundBase:
|
|
4004
|
-
backgroundHover:
|
|
4005
|
-
backgroundInverse:
|
|
4006
|
-
badgeBackground:
|
|
4007
|
-
borderColorDisabled:
|
|
4008
|
-
borderColorPrimary:
|
|
4009
|
-
borderColorSecondary:
|
|
4010
|
-
borderColorSubtle:
|
|
4011
|
-
borderColorTertiary:
|
|
4012
|
-
borderWidth:
|
|
4013
|
-
brandPrimary:
|
|
4014
|
-
breakpointsLg:
|
|
4015
|
-
breakpointsMd:
|
|
4578
|
+
backgroundBase: it,
|
|
4579
|
+
backgroundHover: nt,
|
|
4580
|
+
backgroundInverse: lt,
|
|
4581
|
+
badgeBackground: fo,
|
|
4582
|
+
borderColorDisabled: Bt,
|
|
4583
|
+
borderColorPrimary: jt,
|
|
4584
|
+
borderColorSecondary: Pt,
|
|
4585
|
+
borderColorSubtle: wt,
|
|
4586
|
+
borderColorTertiary: zt,
|
|
4587
|
+
borderWidth: xt,
|
|
4588
|
+
brandPrimary: St,
|
|
4589
|
+
breakpointsLg: l,
|
|
4590
|
+
breakpointsMd: n,
|
|
4016
4591
|
breakpointsSm: i,
|
|
4017
4592
|
breakpointsXl: s,
|
|
4018
4593
|
breakpointsXs: r,
|
|
4019
|
-
buttonBackgroundDangerActive:
|
|
4020
|
-
buttonBackgroundDangerBase:
|
|
4021
|
-
buttonBackgroundDangerHover:
|
|
4022
|
-
buttonBackgroundDisabled:
|
|
4023
|
-
buttonBackgroundPrimaryActive:
|
|
4024
|
-
buttonBackgroundPrimaryBase:
|
|
4025
|
-
buttonBackgroundPrimaryHover:
|
|
4026
|
-
buttonBackgroundSecondaryActive:
|
|
4027
|
-
buttonBackgroundSecondaryBase:
|
|
4028
|
-
buttonBackgroundSecondaryHover:
|
|
4029
|
-
buttonBackgroundTertiaryActive:
|
|
4030
|
-
buttonBackgroundTertiaryHover:
|
|
4031
|
-
buttonBorderSecondary:
|
|
4032
|
-
buttonIconActive:
|
|
4033
|
-
buttonIconHover:
|
|
4034
|
-
calendarDateBackgroundEndRange:
|
|
4035
|
-
calendarDateBackgroundHover:
|
|
4036
|
-
calendarDateBackgroundInRange:
|
|
4037
|
-
calendarDateBackgroundSelected:
|
|
4038
|
-
calendarDateBackgroundStartRange:
|
|
4039
|
-
colorBlackBase:
|
|
4040
|
-
colorBlackHover:
|
|
4041
|
-
|
|
4042
|
-
|
|
4043
|
-
|
|
4044
|
-
|
|
4045
|
-
|
|
4046
|
-
|
|
4047
|
-
|
|
4048
|
-
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
|
|
4053
|
-
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
|
|
4071
|
-
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
|
|
4086
|
-
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
4093
|
-
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
|
|
4099
|
-
|
|
4100
|
-
|
|
4101
|
-
|
|
4102
|
-
|
|
4103
|
-
|
|
4104
|
-
|
|
4105
|
-
|
|
4106
|
-
|
|
4107
|
-
|
|
4108
|
-
|
|
4109
|
-
|
|
4110
|
-
|
|
4111
|
-
|
|
4112
|
-
|
|
4113
|
-
|
|
4114
|
-
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4164
|
-
|
|
4165
|
-
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
|
|
4196
|
-
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
|
|
4212
|
-
|
|
4213
|
-
|
|
4214
|
-
|
|
4215
|
-
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
|
|
4219
|
-
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
|
|
4230
|
-
|
|
4231
|
-
|
|
4232
|
-
|
|
4233
|
-
|
|
4234
|
-
|
|
4235
|
-
|
|
4236
|
-
|
|
4237
|
-
|
|
4238
|
-
|
|
4239
|
-
|
|
4240
|
-
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
|
|
4249
|
-
|
|
4250
|
-
|
|
4251
|
-
|
|
4252
|
-
|
|
4253
|
-
|
|
4254
|
-
|
|
4594
|
+
buttonBackgroundDangerActive: f,
|
|
4595
|
+
buttonBackgroundDangerBase: $,
|
|
4596
|
+
buttonBackgroundDangerHover: m,
|
|
4597
|
+
buttonBackgroundDisabled: b,
|
|
4598
|
+
buttonBackgroundPrimaryActive: u,
|
|
4599
|
+
buttonBackgroundPrimaryBase: c,
|
|
4600
|
+
buttonBackgroundPrimaryHover: g,
|
|
4601
|
+
buttonBackgroundSecondaryActive: k,
|
|
4602
|
+
buttonBackgroundSecondaryBase: p,
|
|
4603
|
+
buttonBackgroundSecondaryHover: y,
|
|
4604
|
+
buttonBackgroundTertiaryActive: h,
|
|
4605
|
+
buttonBackgroundTertiaryHover: d,
|
|
4606
|
+
buttonBorderSecondary: v,
|
|
4607
|
+
buttonIconActive: j,
|
|
4608
|
+
buttonIconHover: S,
|
|
4609
|
+
calendarDateBackgroundEndRange: Po,
|
|
4610
|
+
calendarDateBackgroundHover: bo,
|
|
4611
|
+
calendarDateBackgroundInRange: jo,
|
|
4612
|
+
calendarDateBackgroundSelected: vo,
|
|
4613
|
+
calendarDateBackgroundStartRange: So,
|
|
4614
|
+
colorBlackBase: P,
|
|
4615
|
+
colorBlackHover: w,
|
|
4616
|
+
colorBlackOpacity5: z,
|
|
4617
|
+
colorBlue10: J,
|
|
4618
|
+
colorBlue100: re,
|
|
4619
|
+
colorBlue110: ie,
|
|
4620
|
+
colorBlue120: ne,
|
|
4621
|
+
colorBlue130: le,
|
|
4622
|
+
colorBlue150: se,
|
|
4623
|
+
colorBlue20: Q,
|
|
4624
|
+
colorBlue40: U,
|
|
4625
|
+
colorBlue50: Z,
|
|
4626
|
+
colorBlue60: ee,
|
|
4627
|
+
colorBlue70: te,
|
|
4628
|
+
colorBlue80: oe,
|
|
4629
|
+
colorBlue90: ae,
|
|
4630
|
+
colorGray10: R,
|
|
4631
|
+
colorGray100: T,
|
|
4632
|
+
colorGray110: L,
|
|
4633
|
+
colorGray120: O,
|
|
4634
|
+
colorGray130: M,
|
|
4635
|
+
colorGray140: E,
|
|
4636
|
+
colorGray150: K,
|
|
4637
|
+
colorGray160: X,
|
|
4638
|
+
colorGray170: _,
|
|
4639
|
+
colorGray180: N,
|
|
4640
|
+
colorGray190: V,
|
|
4641
|
+
colorGray20: Y,
|
|
4642
|
+
colorGray200: q,
|
|
4643
|
+
colorGray30: I,
|
|
4644
|
+
colorGray40: A,
|
|
4645
|
+
colorGray50: C,
|
|
4646
|
+
colorGray60: G,
|
|
4647
|
+
colorGray70: W,
|
|
4648
|
+
colorGray80: F,
|
|
4649
|
+
colorGray90: D,
|
|
4650
|
+
colorPurple110: ge,
|
|
4651
|
+
colorPurple80: ce,
|
|
4652
|
+
colorRed100: ue,
|
|
4653
|
+
colorSignalBlue10: pe,
|
|
4654
|
+
colorSignalBlue100: ke,
|
|
4655
|
+
colorSignalBlue20: ye,
|
|
4656
|
+
colorSignalGreen100: $e,
|
|
4657
|
+
colorSignalGreen150: me,
|
|
4658
|
+
colorSignalGreen20: de,
|
|
4659
|
+
colorSignalGreen30: he,
|
|
4660
|
+
colorSignalRed10: Te,
|
|
4661
|
+
colorSignalRed100: Ve,
|
|
4662
|
+
colorSignalRed110: qe,
|
|
4663
|
+
colorSignalRed120: Je,
|
|
4664
|
+
colorSignalRed130: Qe,
|
|
4665
|
+
colorSignalRed140: Ue,
|
|
4666
|
+
colorSignalRed150: Ze,
|
|
4667
|
+
colorSignalRed160: et,
|
|
4668
|
+
colorSignalRed170: tt,
|
|
4669
|
+
colorSignalRed180: ot,
|
|
4670
|
+
colorSignalRed190: at,
|
|
4671
|
+
colorSignalRed20: Le,
|
|
4672
|
+
colorSignalRed200: rt,
|
|
4673
|
+
colorSignalRed30: Oe,
|
|
4674
|
+
colorSignalRed40: Me,
|
|
4675
|
+
colorSignalRed50: Ee,
|
|
4676
|
+
colorSignalRed60: Ke,
|
|
4677
|
+
colorSignalRed70: Xe,
|
|
4678
|
+
colorSignalRed80: _e,
|
|
4679
|
+
colorSignalRed90: Ne,
|
|
4680
|
+
colorSignalYellow10: fe,
|
|
4681
|
+
colorSignalYellow100: xe,
|
|
4682
|
+
colorSignalYellow110: He,
|
|
4683
|
+
colorSignalYellow120: Re,
|
|
4684
|
+
colorSignalYellow130: Ye,
|
|
4685
|
+
colorSignalYellow140: Ie,
|
|
4686
|
+
colorSignalYellow150: Ae,
|
|
4687
|
+
colorSignalYellow160: Ce,
|
|
4688
|
+
colorSignalYellow170: Ge,
|
|
4689
|
+
colorSignalYellow180: We,
|
|
4690
|
+
colorSignalYellow190: Fe,
|
|
4691
|
+
colorSignalYellow20: be,
|
|
4692
|
+
colorSignalYellow200: De,
|
|
4693
|
+
colorSignalYellow30: ve,
|
|
4694
|
+
colorSignalYellow40: Se,
|
|
4695
|
+
colorSignalYellow50: je,
|
|
4696
|
+
colorSignalYellow60: Pe,
|
|
4697
|
+
colorSignalYellow70: we,
|
|
4698
|
+
colorSignalYellow80: ze,
|
|
4699
|
+
colorSignalYellow90: Be,
|
|
4700
|
+
colorWhiteBase: B,
|
|
4701
|
+
colorWhiteHover: x,
|
|
4702
|
+
colorWhiteOpacity13: H,
|
|
4703
|
+
field01Active: Yt,
|
|
4704
|
+
field01Base: Ht,
|
|
4705
|
+
field01Hover: Rt,
|
|
4706
|
+
field02Active: Ct,
|
|
4707
|
+
field02Base: It,
|
|
4708
|
+
field02Hover: At,
|
|
4709
|
+
fieldDisabled: Gt,
|
|
4710
|
+
iconDisabled: Et,
|
|
4711
|
+
iconImportant: Nt,
|
|
4712
|
+
iconInfo: Xt,
|
|
4713
|
+
iconInverse: Ot,
|
|
4714
|
+
iconOnColor: Mt,
|
|
4715
|
+
iconPrimary: Dt,
|
|
4716
|
+
iconSecondary: Tt,
|
|
4717
|
+
iconSuccess: Kt,
|
|
4718
|
+
iconTertiary: Lt,
|
|
4719
|
+
iconWarning: _t,
|
|
4720
|
+
layer01Base: st,
|
|
4721
|
+
layer01Hover: ct,
|
|
4722
|
+
layer01Selected: gt,
|
|
4723
|
+
layer01SelectedHover: ut,
|
|
4724
|
+
layer02Base: pt,
|
|
4725
|
+
layer02Hover: yt,
|
|
4726
|
+
layer02Selected: kt,
|
|
4727
|
+
layer02SelectedHover: dt,
|
|
4728
|
+
layerAccent01Base: ht,
|
|
4729
|
+
layerAccent01Hover: $t,
|
|
4730
|
+
layerAccent01Selected: mt,
|
|
4731
|
+
layerAccent02Base: ft,
|
|
4732
|
+
layerAccent02Hover: bt,
|
|
4733
|
+
layerAccent02Selected: vt,
|
|
4734
|
+
linkEnabled: Vt,
|
|
4735
|
+
linkHover: qt,
|
|
4736
|
+
linkPressed: Jt,
|
|
4737
|
+
linkVisited: Qt,
|
|
4738
|
+
logoPrimary: wo,
|
|
4739
|
+
menuItemBackgroundHover: zo,
|
|
4740
|
+
menuItemBackgroundSelected: Bo,
|
|
4741
|
+
menuTextSectionHeader: xo,
|
|
4742
|
+
size00: _o,
|
|
4743
|
+
size05: No,
|
|
4744
|
+
size10: Ho,
|
|
4745
|
+
size100: Lo,
|
|
4746
|
+
size110: Oo,
|
|
4747
|
+
size120: Mo,
|
|
4748
|
+
size130: Eo,
|
|
4749
|
+
size140: Ko,
|
|
4750
|
+
size15: Ro,
|
|
4751
|
+
size150: Xo,
|
|
4752
|
+
size20: Yo,
|
|
4753
|
+
size30: Io,
|
|
4754
|
+
size40: Ao,
|
|
4755
|
+
size50: Co,
|
|
4756
|
+
size60: Go,
|
|
4757
|
+
size70: Wo,
|
|
4758
|
+
size75: Fo,
|
|
4759
|
+
size80: Do,
|
|
4760
|
+
size90: To,
|
|
4761
|
+
skeleton01: Wt,
|
|
4762
|
+
skeleton02: Ft,
|
|
4763
|
+
spacing10: Vo,
|
|
4764
|
+
spacing100: aa,
|
|
4765
|
+
spacing110: ra,
|
|
4766
|
+
spacing120: ia,
|
|
4767
|
+
spacing20: qo,
|
|
4768
|
+
spacing30: Jo,
|
|
4769
|
+
spacing40: Qo,
|
|
4770
|
+
spacing50: Uo,
|
|
4771
|
+
spacing60: Zo,
|
|
4772
|
+
spacing70: ea,
|
|
4773
|
+
spacing80: ta,
|
|
4774
|
+
spacing90: oa,
|
|
4775
|
+
spacingLarge: ca,
|
|
4776
|
+
spacingMedium: sa,
|
|
4777
|
+
spacingSmall: la,
|
|
4778
|
+
spacingXlarge: ga,
|
|
4779
|
+
spacingXsmall: na,
|
|
4780
|
+
stateFocus: ua,
|
|
4781
|
+
stateFocusContrastModeOffset: ka,
|
|
4782
|
+
stateFocusContrastModeOutline: ya,
|
|
4783
|
+
stateFocusInset: pa,
|
|
4784
|
+
supportBackgroundImportant: no,
|
|
4785
|
+
supportBackgroundImportantHover: lo,
|
|
4786
|
+
supportBackgroundInfo: ro,
|
|
4787
|
+
supportBackgroundInfoHover: io,
|
|
4788
|
+
supportBackgroundSuccess: oo,
|
|
4789
|
+
supportBackgroundSuccessHover: ao,
|
|
4790
|
+
supportBackgroundWarning: so,
|
|
4791
|
+
supportBackgroundWarningHover: co,
|
|
4792
|
+
supportBorderImportant: eo,
|
|
4793
|
+
supportBorderInfo: Zt,
|
|
4794
|
+
supportBorderSuccess: Ut,
|
|
4795
|
+
supportBorderWarning: to,
|
|
4796
|
+
textDisabled: ho,
|
|
4797
|
+
textInverse: ko,
|
|
4798
|
+
textOnColor: yo,
|
|
4799
|
+
textPlaceholder: mo,
|
|
4800
|
+
textPrimary: go,
|
|
4801
|
+
textSecondary: uo,
|
|
4802
|
+
textTertiary: po,
|
|
4803
|
+
textWarning: $o,
|
|
4804
|
+
transitionDurationFast: $a,
|
|
4805
|
+
transitionDurationNormal: ha,
|
|
4806
|
+
transitionDurationSlow: da,
|
|
4807
|
+
transitionPanelCollapse: ba,
|
|
4808
|
+
transitionPanelExpand: va,
|
|
4809
|
+
transitionTimingEaseIn: fa,
|
|
4810
|
+
transitionTimingEaseOut: ma,
|
|
4811
|
+
typographyFontFamily: Sa,
|
|
4812
|
+
typographyFontSize10: ja,
|
|
4813
|
+
typographyFontSize100: Ia,
|
|
4814
|
+
typographyFontSize20: Pa,
|
|
4815
|
+
typographyFontSize30: wa,
|
|
4816
|
+
typographyFontSize40: za,
|
|
4817
|
+
typographyFontSize50: Ba,
|
|
4818
|
+
typographyFontSize60: xa,
|
|
4819
|
+
typographyFontSize70: Ha,
|
|
4820
|
+
typographyFontSize80: Ra,
|
|
4821
|
+
typographyFontSize90: Ya,
|
|
4822
|
+
typographyLineHeight10: Aa,
|
|
4823
|
+
typographyLineHeight100: Ma,
|
|
4824
|
+
typographyLineHeight20: Ca,
|
|
4825
|
+
typographyLineHeight30: Ga,
|
|
4826
|
+
typographyLineHeight40: Wa,
|
|
4827
|
+
typographyLineHeight50: Fa,
|
|
4828
|
+
typographyLineHeight60: Da,
|
|
4829
|
+
typographyLineHeight70: Ta,
|
|
4830
|
+
typographyLineHeight80: La,
|
|
4831
|
+
typographyLineHeight90: Oa,
|
|
4832
|
+
typographyWeightBlack: Qa,
|
|
4833
|
+
typographyWeightBold: qa,
|
|
4834
|
+
typographyWeightExtraBold: Ja,
|
|
4835
|
+
typographyWeightExtraLight: Ka,
|
|
4836
|
+
typographyWeightLight: Xa,
|
|
4837
|
+
typographyWeightMedium: Na,
|
|
4838
|
+
typographyWeightRegular: _a,
|
|
4839
|
+
typographyWeightSemiBold: Va,
|
|
4840
|
+
typographyWeightThin: Ea,
|
|
4841
|
+
windowSizesLg: o,
|
|
4842
|
+
windowSizesMd: t,
|
|
4255
4843
|
windowSizesSm: e,
|
|
4256
4844
|
windowSizesXl: a,
|
|
4257
|
-
zIndexAbove:
|
|
4258
|
-
zIndexBase:
|
|
4259
|
-
zIndexModal:
|
|
4260
|
-
zIndexSkipToContent:
|
|
4261
|
-
zIndexToast:
|
|
4845
|
+
zIndexAbove: Za,
|
|
4846
|
+
zIndexBase: Ua,
|
|
4847
|
+
zIndexModal: er,
|
|
4848
|
+
zIndexSkipToContent: or,
|
|
4849
|
+
zIndexToast: tr
|
|
4262
4850
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
4263
4851
|
export {
|
|
4264
|
-
|
|
4265
|
-
|
|
4852
|
+
ar as tokenDictionary,
|
|
4853
|
+
rr as variables
|
|
4266
4854
|
};
|