@servicetitan/hammer-token 2.5.1 → 3.0.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.
Files changed (147) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/README.md +332 -0
  3. package/build/web/core/component-variables.scss +1088 -131
  4. package/build/web/core/component.d.ts +558 -0
  5. package/build/web/core/component.js +6685 -249
  6. package/build/web/core/component.scss +557 -69
  7. package/build/web/core/css-utils/a2-border.css +47 -45
  8. package/build/web/core/css-utils/a2-color.css +443 -227
  9. package/build/web/core/css-utils/a2-font.css +0 -2
  10. package/build/web/core/css-utils/a2-spacing.css +476 -478
  11. package/build/web/core/css-utils/a2-utils.css +992 -772
  12. package/build/web/core/css-utils/border.css +47 -45
  13. package/build/web/core/css-utils/color.css +443 -227
  14. package/build/web/core/css-utils/font.css +0 -2
  15. package/build/web/core/css-utils/spacing.css +476 -478
  16. package/build/web/core/css-utils/utils.css +992 -772
  17. package/build/web/core/index.d.ts +6 -0
  18. package/build/web/core/index.js +1 -1
  19. package/build/web/core/primitive-variables.scss +148 -65
  20. package/build/web/core/primitive.d.ts +209 -0
  21. package/build/web/core/primitive.js +779 -61
  22. package/build/web/core/primitive.scss +207 -124
  23. package/build/web/core/semantic-variables.scss +363 -245
  24. package/build/web/core/semantic.d.ts +221 -0
  25. package/build/web/core/semantic.js +1592 -347
  26. package/build/web/core/semantic.scss +219 -140
  27. package/build/web/index.d.ts +3 -4
  28. package/build/web/index.js +0 -1
  29. package/build/web/types.d.ts +17 -0
  30. package/config.js +121 -497
  31. package/eslint.config.mjs +11 -1
  32. package/package.json +15 -5
  33. package/src/global/primitive/breakpoint.tokens.json +54 -0
  34. package/src/global/primitive/color.tokens.json +1092 -0
  35. package/src/global/primitive/duration.tokens.json +44 -0
  36. package/src/global/primitive/font.tokens.json +151 -0
  37. package/src/global/primitive/radius.tokens.json +94 -0
  38. package/src/global/primitive/size.tokens.json +174 -0
  39. package/src/global/primitive/transition.tokens.json +32 -0
  40. package/src/theme/core/background.tokens.json +1312 -0
  41. package/src/theme/core/border.tokens.json +192 -0
  42. package/src/theme/core/chart.tokens.json +982 -0
  43. package/src/theme/core/component/ai-mark.tokens.json +20 -0
  44. package/src/theme/core/component/alert.tokens.json +261 -0
  45. package/src/theme/core/component/announcement.tokens.json +460 -0
  46. package/src/theme/core/component/avatar.tokens.json +137 -0
  47. package/src/theme/core/component/badge.tokens.json +42 -0
  48. package/src/theme/core/component/breadcrumb.tokens.json +42 -0
  49. package/src/theme/core/component/button-toggle.tokens.json +428 -0
  50. package/src/theme/core/component/button.tokens.json +941 -0
  51. package/src/theme/core/component/calendar.tokens.json +391 -0
  52. package/src/theme/core/component/card.tokens.json +107 -0
  53. package/src/theme/core/component/checkbox.tokens.json +631 -0
  54. package/src/theme/core/component/chip.tokens.json +169 -0
  55. package/src/theme/core/component/combobox.tokens.json +269 -0
  56. package/src/theme/core/component/details.tokens.json +152 -0
  57. package/src/theme/core/component/dialog.tokens.json +87 -0
  58. package/src/theme/core/component/divider.tokens.json +23 -0
  59. package/src/theme/core/component/dnd.tokens.json +208 -0
  60. package/src/theme/core/component/drawer.tokens.json +61 -0
  61. package/src/theme/core/component/drilldown.tokens.json +61 -0
  62. package/src/theme/core/component/edit-card.tokens.json +381 -0
  63. package/src/theme/core/component/field-label.tokens.json +42 -0
  64. package/src/theme/core/component/field-message.tokens.json +74 -0
  65. package/src/theme/core/component/icon.tokens.json +42 -0
  66. package/src/theme/core/component/link.tokens.json +108 -0
  67. package/src/theme/core/component/list-view.tokens.json +82 -0
  68. package/src/theme/core/component/listbox.tokens.json +283 -0
  69. package/src/theme/core/component/menu.tokens.json +230 -0
  70. package/src/theme/core/component/overflow.tokens.json +84 -0
  71. package/src/theme/core/component/page.tokens.json +377 -0
  72. package/src/theme/core/component/pagination.tokens.json +63 -0
  73. package/src/theme/core/component/popover.tokens.json +122 -0
  74. package/src/theme/core/component/progress-bar.tokens.json +133 -0
  75. package/src/theme/core/component/radio.tokens.json +631 -0
  76. package/src/theme/core/component/segmented-control.tokens.json +175 -0
  77. package/src/theme/core/component/select-card.tokens.json +943 -0
  78. package/src/theme/core/component/side-nav.tokens.json +349 -0
  79. package/src/theme/core/component/skeleton.tokens.json +42 -0
  80. package/src/theme/core/component/spinner.tokens.json +96 -0
  81. package/src/theme/core/component/status-icon.tokens.json +164 -0
  82. package/src/theme/core/component/stepper.tokens.json +484 -0
  83. package/src/theme/core/component/switch.tokens.json +285 -0
  84. package/src/theme/core/component/tab.tokens.json +192 -0
  85. package/src/theme/core/component/text-field.tokens.json +160 -0
  86. package/src/theme/core/component/text.tokens.json +59 -0
  87. package/src/theme/core/component/toast.tokens.json +343 -0
  88. package/src/theme/core/component/toolbar.tokens.json +114 -0
  89. package/src/theme/core/component/tooltip.tokens.json +61 -0
  90. package/src/theme/core/focus.tokens.json +56 -0
  91. package/src/theme/core/foreground.tokens.json +416 -0
  92. package/src/theme/core/gradient.tokens.json +41 -0
  93. package/src/theme/core/opacity.tokens.json +25 -0
  94. package/src/theme/core/shadow.tokens.json +81 -0
  95. package/src/theme/core/status.tokens.json +74 -0
  96. package/src/theme/core/typography.tokens.json +163 -0
  97. package/src/utils/__tests__/css-utils-format-utils.test.js +312 -0
  98. package/src/utils/__tests__/sd-build-configs.test.js +306 -0
  99. package/src/utils/__tests__/sd-formats.test.js +950 -0
  100. package/src/utils/__tests__/sd-transforms.test.js +336 -0
  101. package/src/utils/__tests__/token-helpers.test.js +1160 -0
  102. package/src/utils/copy-css-utils-cli.js +13 -1
  103. package/src/utils/css-utils-format-utils.js +105 -176
  104. package/src/utils/figma/__tests__/sync-gradient.test.js +561 -0
  105. package/src/utils/figma/__tests__/token-conversion.test.js +117 -0
  106. package/src/utils/figma/__tests__/token-resolution.test.js +231 -0
  107. package/src/utils/figma/auth.js +355 -0
  108. package/src/utils/figma/constants.js +22 -0
  109. package/src/utils/figma/errors.js +80 -0
  110. package/src/utils/figma/figma-api.js +1069 -0
  111. package/src/utils/figma/get-token.js +348 -0
  112. package/src/utils/figma/sync-components.js +909 -0
  113. package/src/utils/figma/sync-main.js +692 -0
  114. package/src/utils/figma/sync-orchestration.js +683 -0
  115. package/src/utils/figma/sync-primitives.js +230 -0
  116. package/src/utils/figma/sync-semantic.js +1056 -0
  117. package/src/utils/figma/token-conversion.js +340 -0
  118. package/src/utils/figma/token-parsing.js +186 -0
  119. package/src/utils/figma/token-resolution.js +569 -0
  120. package/src/utils/figma/utils.js +199 -0
  121. package/src/utils/sd-build-configs.js +305 -0
  122. package/src/utils/sd-formats.js +965 -0
  123. package/src/utils/sd-transforms.js +165 -0
  124. package/src/utils/token-helpers.js +848 -0
  125. package/tsconfig.json +18 -0
  126. package/vitest.config.js +17 -0
  127. package/.turbo/turbo-build.log +0 -37
  128. package/build/web/core/raw.js +0 -234
  129. package/src/global/primitive/breakpoint.js +0 -19
  130. package/src/global/primitive/color.js +0 -231
  131. package/src/global/primitive/duration.js +0 -16
  132. package/src/global/primitive/font.js +0 -60
  133. package/src/global/primitive/radius.js +0 -31
  134. package/src/global/primitive/size.js +0 -55
  135. package/src/global/primitive/transition.js +0 -16
  136. package/src/theme/core/background.js +0 -170
  137. package/src/theme/core/border.js +0 -103
  138. package/src/theme/core/charts.js +0 -464
  139. package/src/theme/core/component/button.js +0 -708
  140. package/src/theme/core/component/checkbox.js +0 -405
  141. package/src/theme/core/focus.js +0 -35
  142. package/src/theme/core/foreground.js +0 -148
  143. package/src/theme/core/overlay.js +0 -137
  144. package/src/theme/core/shadow.js +0 -29
  145. package/src/theme/core/status.js +0 -49
  146. package/src/theme/core/typography.js +0 -82
  147. package/type/types.ts +0 -344
@@ -1,106 +1,750 @@
1
- export const BackgroundColor = {
1
+ /**
2
+ * @typedef {Object} TokenValue
3
+ * @property {string} value
4
+ */
5
+
6
+ /**
7
+ * @typedef {Object} TokenWithAppearance
8
+ * @property {string} value
9
+ * @property {Object} extensions
10
+ * @property {Object} extensions.appearance
11
+ * @property {Object} extensions.appearance.dark
12
+ * @property {string} extensions.appearance.dark.value
13
+ */
14
+
15
+ /**
16
+ * @type {TokenWithAppearance}
17
+ */
18
+ export const StatusColorInfo = {
19
+ value: "#0265dc",
20
+ extensions: {
21
+ appearance: {
22
+ dark: {
23
+ value: "#70b1ff"
24
+ }
25
+ }
26
+ }
27
+ };
28
+ /**
29
+ * @type {TokenWithAppearance}
30
+ */
31
+ export const StatusColorDanger = {
32
+ value: "#d62100",
33
+ extensions: {
34
+ appearance: {
35
+ dark: {
36
+ value: "#ff5b3d"
37
+ }
38
+ }
39
+ }
40
+ };
41
+ /**
42
+ * @type {TokenWithAppearance}
43
+ */
44
+ export const StatusColorSuccess = {
45
+ value: "#077e50",
46
+ extensions: {
47
+ appearance: {
48
+ dark: {
49
+ value: "#0bd085"
50
+ }
51
+ }
52
+ }
53
+ };
54
+ /**
55
+ * @type {TokenWithAppearance}
56
+ */
57
+ export const StatusColorWarning = {
58
+ value: "#ffbe00",
59
+ extensions: {
60
+ appearance: {
61
+ dark: {
62
+ value: "#ffe278"
63
+ }
64
+ }
65
+ }
66
+ };
67
+ /**
68
+ * @type {TokenWithAppearance}
69
+ */
70
+ export const BackgroundColorDefault = {
2
71
  value: "#ffffff",
3
- attributes: {
72
+ extensions: {
4
73
  appearance: {
5
74
  dark: {
6
- value: "#141414"
75
+ value: "#1a1a1a"
76
+ }
77
+ }
78
+ }
79
+ };
80
+ /**
81
+ * @type {TokenWithAppearance}
82
+ */
83
+ export const BackgroundColorDefaultHover = {
84
+ value: "#f9f9f9",
85
+ extensions: {
86
+ appearance: {
87
+ dark: {
88
+ value: "#292929"
89
+ }
90
+ }
91
+ }
92
+ };
93
+ /**
94
+ * @type {TokenWithAppearance}
95
+ */
96
+ export const BackgroundColorDefaultActive = {
97
+ value: "#f1f1f1",
98
+ extensions: {
99
+ appearance: {
100
+ dark: {
101
+ value: "#404040"
102
+ }
103
+ }
104
+ }
105
+ };
106
+ /**
107
+ * @type {TokenWithAppearance}
108
+ */
109
+ export const BackgroundColorSecondary = {
110
+ value: "#040404",
111
+ extensions: {
112
+ appearance: {
113
+ dark: {
114
+ value: "#ffffff"
115
+ }
116
+ }
117
+ }
118
+ };
119
+ /**
120
+ * @type {TokenWithAppearance}
121
+ */
122
+ export const BackgroundColorSecondaryHover = {
123
+ value: "#040404",
124
+ extensions: {
125
+ appearance: {
126
+ dark: {
127
+ value: "#ffffff"
7
128
  }
8
129
  }
9
130
  }
10
131
  };
132
+ /**
133
+ * @type {TokenWithAppearance}
134
+ */
135
+ export const BackgroundColorSecondaryActive = {
136
+ value: "#040404",
137
+ extensions: {
138
+ appearance: {
139
+ dark: {
140
+ value: "#ffffff"
141
+ }
142
+ }
143
+ }
144
+ };
145
+ /**
146
+ * @type {TokenWithAppearance}
147
+ */
148
+ export const BackgroundColorSecondaryStrong = {
149
+ value: "#040404",
150
+ extensions: {
151
+ appearance: {
152
+ dark: {
153
+ value: "#ffffff"
154
+ }
155
+ }
156
+ }
157
+ };
158
+ /**
159
+ * @type {TokenWithAppearance}
160
+ */
161
+ export const BackgroundColorSecondaryStrongHover = {
162
+ value: "#040404",
163
+ extensions: {
164
+ appearance: {
165
+ dark: {
166
+ value: "#ffffff"
167
+ }
168
+ }
169
+ }
170
+ };
171
+ /**
172
+ * @type {TokenWithAppearance}
173
+ */
174
+ export const BackgroundColorSecondaryStrongActive = {
175
+ value: "#040404",
176
+ extensions: {
177
+ appearance: {
178
+ dark: {
179
+ value: "#ffffff"
180
+ }
181
+ }
182
+ }
183
+ };
184
+ /**
185
+ * @type {TokenValue}
186
+ */
187
+ export const BackgroundColorTransparentDefault = { value: "rgba(0, 0, 0, 0)" };
188
+ /**
189
+ * @type {TokenWithAppearance}
190
+ */
191
+ export const BackgroundColorTransparentDefaultHover = {
192
+ value: "#8b8b8b",
193
+ extensions: {
194
+ appearance: {
195
+ dark: {
196
+ value: "#ffffff"
197
+ }
198
+ }
199
+ }
200
+ };
201
+ /**
202
+ * @type {TokenWithAppearance}
203
+ */
204
+ export const BackgroundColorTransparentDefaultActive = {
205
+ value: "#8b8b8b",
206
+ extensions: {
207
+ appearance: {
208
+ dark: {
209
+ value: "#ffffff"
210
+ }
211
+ }
212
+ }
213
+ };
214
+ /**
215
+ * @type {TokenValue}
216
+ */
217
+ export const BackgroundColorTransparentPrimary = { value: "rgba(0, 0, 0, 0)" };
218
+ /**
219
+ * @type {TokenWithAppearance}
220
+ */
221
+ export const BackgroundColorTransparentPrimaryHover = {
222
+ value: "#1a82ff",
223
+ extensions: {
224
+ appearance: {
225
+ dark: {
226
+ value: "#70b1ff"
227
+ }
228
+ }
229
+ }
230
+ };
231
+ /**
232
+ * @type {TokenWithAppearance}
233
+ */
234
+ export const BackgroundColorTransparentPrimaryActive = {
235
+ value: "#1a82ff",
236
+ extensions: {
237
+ appearance: {
238
+ dark: {
239
+ value: "#70b1ff"
240
+ }
241
+ }
242
+ }
243
+ };
244
+ /**
245
+ * @type {TokenValue}
246
+ */
247
+ export const BackgroundColorTransparentDanger = { value: "rgba(0, 0, 0, 0)" };
248
+ /**
249
+ * @type {TokenWithAppearance}
250
+ */
251
+ export const BackgroundColorTransparentDangerHover = {
252
+ value: "#ff3914",
253
+ extensions: {
254
+ appearance: {
255
+ dark: {
256
+ value: "#ff8670"
257
+ }
258
+ }
259
+ }
260
+ };
261
+ /**
262
+ * @type {TokenWithAppearance}
263
+ */
264
+ export const BackgroundColorTransparentDangerActive = {
265
+ value: "#ff3914",
266
+ extensions: {
267
+ appearance: {
268
+ dark: {
269
+ value: "#ff8670"
270
+ }
271
+ }
272
+ }
273
+ };
274
+ /**
275
+ * @type {TokenWithAppearance}
276
+ */
11
277
  export const BackgroundColorStrong = {
12
- value: "#f7f7f7",
13
- attributes: {
278
+ value: "#f9f9f9",
279
+ extensions: {
280
+ appearance: {
281
+ dark: {
282
+ value: "#292929"
283
+ }
284
+ }
285
+ }
286
+ };
287
+ /**
288
+ * @type {TokenWithAppearance}
289
+ */
290
+ export const BackgroundColorStrongHover = {
291
+ value: "#eeeeee",
292
+ extensions: {
293
+ appearance: {
294
+ dark: {
295
+ value: "#404040"
296
+ }
297
+ }
298
+ }
299
+ };
300
+ /**
301
+ * @type {TokenWithAppearance}
302
+ */
303
+ export const BackgroundColorStrongActive = {
304
+ value: "#e8e8e8",
305
+ extensions: {
14
306
  appearance: {
15
307
  dark: {
16
- value: "#2d2e31"
308
+ value: "#545454"
17
309
  }
18
310
  }
19
311
  }
20
312
  };
313
+ /**
314
+ * @type {TokenWithAppearance}
315
+ */
21
316
  export const BackgroundColorStronger = {
22
317
  value: "#eeeeee",
23
- attributes: {
318
+ extensions: {
319
+ appearance: {
320
+ dark: {
321
+ value: "#404040"
322
+ }
323
+ }
324
+ }
325
+ };
326
+ /**
327
+ * @type {TokenWithAppearance}
328
+ */
329
+ export const BackgroundColorStrongerHover = {
330
+ value: "#e5e5e5",
331
+ extensions: {
332
+ appearance: {
333
+ dark: {
334
+ value: "#545454"
335
+ }
336
+ }
337
+ }
338
+ };
339
+ /**
340
+ * @type {TokenWithAppearance}
341
+ */
342
+ export const BackgroundColorStrongerActive = {
343
+ value: "#dfdfdf",
344
+ extensions: {
24
345
  appearance: {
25
346
  dark: {
26
- value: "#444445"
347
+ value: "#707070"
27
348
  }
28
349
  }
29
350
  }
30
351
  };
352
+ /**
353
+ * @type {TokenWithAppearance}
354
+ */
31
355
  export const BackgroundColorStrongest = {
32
- value: "#bcbcbd",
33
- attributes: {
356
+ value: "#c4c4c4",
357
+ extensions: {
358
+ appearance: {
359
+ dark: {
360
+ value: "#707070"
361
+ }
362
+ }
363
+ }
364
+ };
365
+ /**
366
+ * @type {TokenWithAppearance}
367
+ */
368
+ export const BackgroundColorStrongestHover = {
369
+ value: "#a8a8a8",
370
+ extensions: {
371
+ appearance: {
372
+ dark: {
373
+ value: "#8b8b8b"
374
+ }
375
+ }
376
+ }
377
+ };
378
+ /**
379
+ * @type {TokenWithAppearance}
380
+ */
381
+ export const BackgroundColorStrongestActive = {
382
+ value: "#8b8b8b",
383
+ extensions: {
34
384
  appearance: {
35
385
  dark: {
36
- value: "#737475"
386
+ value: "#a8a8a8"
37
387
  }
38
388
  }
39
389
  }
40
390
  };
391
+ /**
392
+ * @type {TokenWithAppearance}
393
+ */
41
394
  export const BackgroundColorPrimary = {
42
- value: "#0265DC",
43
- attributes: {
395
+ value: "#0265dc",
396
+ extensions: {
397
+ appearance: {
398
+ dark: {
399
+ value: "#70b1ff"
400
+ }
401
+ }
402
+ }
403
+ };
404
+ /**
405
+ * @type {TokenWithAppearance}
406
+ */
407
+ export const BackgroundColorPrimaryHover = {
408
+ value: "#1d4ca3",
409
+ extensions: {
410
+ appearance: {
411
+ dark: {
412
+ value: "#9ecaff"
413
+ }
414
+ }
415
+ }
416
+ };
417
+ /**
418
+ * @type {TokenWithAppearance}
419
+ */
420
+ export const BackgroundColorPrimaryActive = {
421
+ value: "#003472",
422
+ extensions: {
44
423
  appearance: {
45
424
  dark: {
46
- value: "#78BBFA"
425
+ value: "#cce3ff"
47
426
  }
48
427
  }
49
428
  }
50
429
  };
430
+ /**
431
+ * @type {TokenWithAppearance}
432
+ */
51
433
  export const BackgroundColorPrimarySubdued = {
52
- value: "#E0F2FF",
53
- attributes: {
434
+ value: "#e6f1ff",
435
+ extensions: {
436
+ appearance: {
437
+ dark: {
438
+ value: "#70b1ff"
439
+ }
440
+ }
441
+ }
442
+ };
443
+ /**
444
+ * @type {TokenWithAppearance}
445
+ */
446
+ export const BackgroundColorPrimarySubduedHover = {
447
+ value: "#cce3ff",
448
+ extensions: {
449
+ appearance: {
450
+ dark: {
451
+ value: "#70b1ff"
452
+ }
453
+ }
454
+ }
455
+ };
456
+ /**
457
+ * @type {TokenWithAppearance}
458
+ */
459
+ export const BackgroundColorPrimarySubduedActive = {
460
+ value: "#9ecaff",
461
+ extensions: {
462
+ appearance: {
463
+ dark: {
464
+ value: "#70b1ff"
465
+ }
466
+ }
467
+ }
468
+ };
469
+ /**
470
+ * @type {TokenWithAppearance}
471
+ */
472
+ export const BackgroundColorPrimaryFaint = {
473
+ value: "#fafcff",
474
+ extensions: {
475
+ appearance: {
476
+ dark: {
477
+ value: "#000b19"
478
+ }
479
+ }
480
+ }
481
+ };
482
+ /**
483
+ * @type {TokenWithAppearance}
484
+ */
485
+ export const BackgroundColorPrimaryFaintHover = {
486
+ value: "#e6f1ff",
487
+ extensions: {
488
+ appearance: {
489
+ dark: {
490
+ value: "#003472"
491
+ }
492
+ }
493
+ }
494
+ };
495
+ /**
496
+ * @type {TokenWithAppearance}
497
+ */
498
+ export const BackgroundColorPrimaryFaintActive = {
499
+ value: "#cce3ff",
500
+ extensions: {
54
501
  appearance: {
55
502
  dark: {
56
- value: "#78BBFA33"
503
+ value: "#1d4ca3"
57
504
  }
58
505
  }
59
506
  }
60
507
  };
508
+ /**
509
+ * @type {TokenWithAppearance}
510
+ */
61
511
  export const BackgroundColorSuccess = {
62
- value: "#007A4D",
63
- attributes: {
512
+ value: "#077e50",
513
+ extensions: {
64
514
  appearance: {
65
515
  dark: {
66
- value: "#49CC93"
516
+ value: "#0bd085"
517
+ }
518
+ }
519
+ }
520
+ };
521
+ /**
522
+ * @type {TokenWithAppearance}
523
+ */
524
+ export const BackgroundColorSuccessHover = {
525
+ value: "#05613e",
526
+ extensions: {
527
+ appearance: {
528
+ dark: {
529
+ value: "#3be3a2"
530
+ }
531
+ }
532
+ }
533
+ };
534
+ /**
535
+ * @type {TokenWithAppearance}
536
+ */
537
+ export const BackgroundColorSuccessActive = {
538
+ value: "#04482e",
539
+ extensions: {
540
+ appearance: {
541
+ dark: {
542
+ value: "#d3fded"
67
543
  }
68
544
  }
69
545
  }
70
546
  };
547
+ /**
548
+ * @type {TokenWithAppearance}
549
+ */
71
550
  export const BackgroundColorSuccessSubdued = {
72
- value: "#CEF8E0",
73
- attributes: {
551
+ value: "#d3fded",
552
+ extensions: {
553
+ appearance: {
554
+ dark: {
555
+ value: "#3be3a2"
556
+ }
557
+ }
558
+ }
559
+ };
560
+ /**
561
+ * @type {TokenWithAppearance}
562
+ */
563
+ export const BackgroundColorSuccessSubduedHover = {
564
+ value: "#b8f5dd",
565
+ extensions: {
566
+ appearance: {
567
+ dark: {
568
+ value: "#3be3a2"
569
+ }
570
+ }
571
+ }
572
+ };
573
+ /**
574
+ * @type {TokenWithAppearance}
575
+ */
576
+ export const BackgroundColorSuccessSubduedActive = {
577
+ value: "#70ebbc",
578
+ extensions: {
579
+ appearance: {
580
+ dark: {
581
+ value: "#3be3a2"
582
+ }
583
+ }
584
+ }
585
+ };
586
+ /**
587
+ * @type {TokenWithAppearance}
588
+ */
589
+ export const BackgroundColorSuccessFaint = {
590
+ value: "#f5fefb",
591
+ extensions: {
74
592
  appearance: {
75
593
  dark: {
76
- value: "#49CC9333"
594
+ value: "#010f0a"
77
595
  }
78
596
  }
79
597
  }
80
598
  };
599
+ /**
600
+ * @type {TokenWithAppearance}
601
+ */
602
+ export const BackgroundColorSuccessFaintHover = {
603
+ value: "#d3fded",
604
+ extensions: {
605
+ appearance: {
606
+ dark: {
607
+ value: "#04482e"
608
+ }
609
+ }
610
+ }
611
+ };
612
+ /**
613
+ * @type {TokenWithAppearance}
614
+ */
615
+ export const BackgroundColorSuccessFaintActive = {
616
+ value: "#b8f5dd",
617
+ extensions: {
618
+ appearance: {
619
+ dark: {
620
+ value: "#05613e"
621
+ }
622
+ }
623
+ }
624
+ };
625
+ /**
626
+ * @type {TokenWithAppearance}
627
+ */
81
628
  export const BackgroundColorDanger = {
82
- value: "#e13212",
83
- attributes: {
629
+ value: "#d62100",
630
+ extensions: {
84
631
  appearance: {
85
632
  dark: {
86
- value: "#ff745f"
633
+ value: "#ff5b3d"
87
634
  }
88
635
  }
89
636
  }
90
637
  };
638
+ /**
639
+ * @type {TokenWithAppearance}
640
+ */
641
+ export const BackgroundColorDangerHover = {
642
+ value: "#a31900",
643
+ extensions: {
644
+ appearance: {
645
+ dark: {
646
+ value: "#ff8670"
647
+ }
648
+ }
649
+ }
650
+ };
651
+ /**
652
+ * @type {TokenWithAppearance}
653
+ */
654
+ export const BackgroundColorDangerActive = {
655
+ value: "#731100",
656
+ extensions: {
657
+ appearance: {
658
+ dark: {
659
+ value: "#ffac9e"
660
+ }
661
+ }
662
+ }
663
+ };
664
+ /**
665
+ * @type {TokenWithAppearance}
666
+ */
91
667
  export const BackgroundColorDangerSubdued = {
92
- value: "#ffece9",
93
- attributes: {
668
+ value: "#ffe9e5",
669
+ extensions: {
670
+ appearance: {
671
+ dark: {
672
+ value: "#ff8670"
673
+ }
674
+ }
675
+ }
676
+ };
677
+ /**
678
+ * @type {TokenWithAppearance}
679
+ */
680
+ export const BackgroundColorDangerSubduedHover = {
681
+ value: "#ffd4cc",
682
+ extensions: {
683
+ appearance: {
684
+ dark: {
685
+ value: "#ff8670"
686
+ }
687
+ }
688
+ }
689
+ };
690
+ /**
691
+ * @type {TokenWithAppearance}
692
+ */
693
+ export const BackgroundColorDangerSubduedActive = {
694
+ value: "#ffac9e",
695
+ extensions: {
696
+ appearance: {
697
+ dark: {
698
+ value: "#ff8670"
699
+ }
700
+ }
701
+ }
702
+ };
703
+ /**
704
+ * @type {TokenWithAppearance}
705
+ */
706
+ export const BackgroundColorDangerFaint = {
707
+ value: "#fffbfa",
708
+ extensions: {
94
709
  appearance: {
95
710
  dark: {
96
- value: "#ff745f33"
711
+ value: "#0a0200"
97
712
  }
98
713
  }
99
714
  }
100
715
  };
716
+ /**
717
+ * @type {TokenWithAppearance}
718
+ */
719
+ export const BackgroundColorDangerFaintHover = {
720
+ value: "#ffe9e5",
721
+ extensions: {
722
+ appearance: {
723
+ dark: {
724
+ value: "#731100"
725
+ }
726
+ }
727
+ }
728
+ };
729
+ /**
730
+ * @type {TokenWithAppearance}
731
+ */
732
+ export const BackgroundColorDangerFaintActive = {
733
+ value: "#ffd4cc",
734
+ extensions: {
735
+ appearance: {
736
+ dark: {
737
+ value: "#a31900"
738
+ }
739
+ }
740
+ }
741
+ };
742
+ /**
743
+ * @type {TokenWithAppearance}
744
+ */
101
745
  export const BackgroundColorWarning = {
102
746
  value: "#ffbe00",
103
- attributes: {
747
+ extensions: {
104
748
  appearance: {
105
749
  dark: {
106
750
  value: "#ffe278"
@@ -108,29 +752,194 @@ export const BackgroundColorWarning = {
108
752
  }
109
753
  }
110
754
  };
755
+ /**
756
+ * @type {TokenWithAppearance}
757
+ */
758
+ export const BackgroundColorWarningHover = {
759
+ value: "#de9500",
760
+ extensions: {
761
+ appearance: {
762
+ dark: {
763
+ value: "#fff9e2"
764
+ }
765
+ }
766
+ }
767
+ };
768
+ /**
769
+ * @type {TokenWithAppearance}
770
+ */
771
+ export const BackgroundColorWarningActive = {
772
+ value: "#de9500",
773
+ extensions: {
774
+ appearance: {
775
+ dark: {
776
+ value: "#fff9e2"
777
+ }
778
+ }
779
+ }
780
+ };
781
+ /**
782
+ * @type {TokenWithAppearance}
783
+ */
784
+ export const BackgroundColorWarningSubdued = {
785
+ value: "#fff9e2",
786
+ extensions: {
787
+ appearance: {
788
+ dark: {
789
+ value: "#ffc902"
790
+ }
791
+ }
792
+ }
793
+ };
794
+ /**
795
+ * @type {TokenWithAppearance}
796
+ */
797
+ export const BackgroundColorWarningSubduedHover = {
798
+ value: "#fff0b1",
799
+ extensions: {
800
+ appearance: {
801
+ dark: {
802
+ value: "#ffc902"
803
+ }
804
+ }
805
+ }
806
+ };
807
+ /**
808
+ * @type {TokenWithAppearance}
809
+ */
810
+ export const BackgroundColorWarningSubduedActive = {
811
+ value: "#ffe278",
812
+ extensions: {
813
+ appearance: {
814
+ dark: {
815
+ value: "#ffc902"
816
+ }
817
+ }
818
+ }
819
+ };
820
+ /**
821
+ * @type {TokenWithAppearance}
822
+ */
823
+ export const BackgroundColorWarningFaint = {
824
+ value: "#fffef8",
825
+ extensions: {
826
+ appearance: {
827
+ dark: {
828
+ value: "#191100"
829
+ }
830
+ }
831
+ }
832
+ };
833
+ /**
834
+ * @type {TokenWithAppearance}
835
+ */
836
+ export const BackgroundColorWarningFaintHover = {
837
+ value: "#fffcf0",
838
+ extensions: {
839
+ appearance: {
840
+ dark: {
841
+ value: "#704b00"
842
+ }
843
+ }
844
+ }
845
+ };
846
+ /**
847
+ * @type {TokenWithAppearance}
848
+ */
849
+ export const BackgroundColorWarningFaintActive = {
850
+ value: "#fff9e2",
851
+ extensions: {
852
+ appearance: {
853
+ dark: {
854
+ value: "#c98600"
855
+ }
856
+ }
857
+ }
858
+ };
859
+ /**
860
+ * @type {TokenWithAppearance}
861
+ */
111
862
  export const BackgroundColorDisabled = {
112
- value: "#606162",
113
- attributes: {
863
+ value: "#545454",
864
+ extensions: {
114
865
  appearance: {
115
866
  dark: {
116
- value: "#606162"
867
+ value: "#707070"
117
868
  }
118
869
  }
119
870
  }
120
871
  };
872
+ /**
873
+ * @type {TokenWithAppearance}
874
+ */
121
875
  export const BackgroundColorInverted = {
122
- value: "#2d2e31",
123
- attributes: {
876
+ value: "#292929",
877
+ extensions: {
124
878
  appearance: {
125
879
  dark: {
126
- value: "#fafafa"
880
+ value: "#f9f9f9"
127
881
  }
128
882
  }
129
883
  }
130
884
  };
885
+ /**
886
+ * @type {TokenWithAppearance}
887
+ */
888
+ export const BackgroundColorInvertedHover = {
889
+ value: "#292929",
890
+ extensions: {
891
+ appearance: {
892
+ dark: {
893
+ value: "#f9f9f9"
894
+ }
895
+ }
896
+ }
897
+ };
898
+ /**
899
+ * @type {TokenWithAppearance}
900
+ */
901
+ export const BackgroundColorInvertedActive = {
902
+ value: "#292929",
903
+ extensions: {
904
+ appearance: {
905
+ dark: {
906
+ value: "#f9f9f9"
907
+ }
908
+ }
909
+ }
910
+ };
911
+ /**
912
+ * @type {TokenWithAppearance}
913
+ */
131
914
  export const BackgroundColorInvertedStrong = {
132
- value: "#141414",
133
- attributes: {
915
+ value: "#1a1a1a",
916
+ extensions: {
917
+ appearance: {
918
+ dark: {
919
+ value: "#ffffff"
920
+ }
921
+ }
922
+ }
923
+ };
924
+ /**
925
+ * @type {TokenWithAppearance}
926
+ */
927
+ export const BackgroundColorInvertedStrongHover = {
928
+ value: "#1a1a1a",
929
+ extensions: {
930
+ appearance: {
931
+ dark: {
932
+ value: "#ffffff"
933
+ }
934
+ }
935
+ }
936
+ };
937
+ /**
938
+ * @type {TokenWithAppearance}
939
+ */
940
+ export const BackgroundColorInvertedStrongActive = {
941
+ value: "#1a1a1a",
942
+ extensions: {
134
943
  appearance: {
135
944
  dark: {
136
945
  value: "#ffffff"
@@ -138,78 +947,139 @@ export const BackgroundColorInvertedStrong = {
138
947
  }
139
948
  }
140
949
  };
141
- export const BorderRadiusNone = { value: "0" };
950
+ /**
951
+ * @type {TokenValue}
952
+ */
953
+ export const BorderRadiusNone = { value: "0rem" };
954
+ /**
955
+ * @type {TokenValue}
956
+ */
142
957
  export const BorderRadiusSmall = { value: "0.1875rem" };
958
+ /**
959
+ * @type {TokenValue}
960
+ */
143
961
  export const BorderRadiusMedium = { value: "0.375rem" };
962
+ /**
963
+ * @type {TokenValue}
964
+ */
144
965
  export const BorderRadiusLarge = { value: "0.75rem" };
966
+ /**
967
+ * @type {TokenValue}
968
+ */
145
969
  export const BorderRadiusXlarge = { value: "1.5rem" };
970
+ /**
971
+ * @type {TokenValue}
972
+ */
146
973
  export const BorderRadiusCircular = { value: "100%" };
974
+ /**
975
+ * @type {TokenValue}
976
+ */
147
977
  export const BorderWidthNone = { value: "0rem" };
148
- export const BorderWidth = { value: "0.0625rem" };
978
+ /**
979
+ * @type {TokenValue}
980
+ */
981
+ export const BorderWidthDefault = { value: "0.0625rem" };
982
+ /**
983
+ * @type {TokenValue}
984
+ */
149
985
  export const BorderWidthStrong = { value: "0.125rem" };
150
- export const BorderColor = {
151
- value: "#949596",
152
- attributes: {
986
+ /**
987
+ * @type {TokenWithAppearance}
988
+ */
989
+ export const BorderColorDefault = {
990
+ value: "#8b8b8b",
991
+ extensions: {
153
992
  appearance: {
154
993
  dark: {
155
- value: "#606162"
994
+ value: "#545454"
156
995
  }
157
996
  }
158
997
  }
159
998
  };
999
+ /**
1000
+ * @type {TokenWithAppearance}
1001
+ */
160
1002
  export const BorderColorSubdued = {
161
- value: "#dfe0e1",
162
- attributes: {
1003
+ value: "#e6e6e6",
1004
+ extensions: {
163
1005
  appearance: {
164
1006
  dark: {
165
- value: "#444445"
1007
+ value: "#404040"
166
1008
  }
167
1009
  }
168
1010
  }
169
1011
  };
1012
+ /**
1013
+ * @type {TokenWithAppearance}
1014
+ */
170
1015
  export const BorderColorStrong = {
171
- value: "#444445",
172
- attributes: {
1016
+ value: "#404040",
1017
+ extensions: {
173
1018
  appearance: {
174
1019
  dark: {
175
- value: "#dfe0e1"
1020
+ value: "#e6e6e6"
176
1021
  }
177
1022
  }
178
1023
  }
179
1024
  };
1025
+ /**
1026
+ * @type {TokenWithAppearance}
1027
+ */
180
1028
  export const BorderColorPrimary = {
181
- value: "#0265DC",
182
- attributes: {
1029
+ value: "#0265dc",
1030
+ extensions: {
183
1031
  appearance: {
184
1032
  dark: {
185
- value: "#78BBFA"
1033
+ value: "#9ecaff"
186
1034
  }
187
1035
  }
188
1036
  }
189
1037
  };
1038
+ /**
1039
+ * @type {TokenWithAppearance}
1040
+ */
190
1041
  export const BorderColorSuccess = {
191
- value: "#007A4D",
192
- attributes: {
1042
+ value: "#077e50",
1043
+ extensions: {
193
1044
  appearance: {
194
1045
  dark: {
195
- value: "#49CC93"
1046
+ value: "#70ebbc"
1047
+ }
1048
+ }
1049
+ }
1050
+ };
1051
+ /**
1052
+ * @type {TokenWithAppearance}
1053
+ */
1054
+ export const BorderColorWarning = {
1055
+ value: "#c98600",
1056
+ extensions: {
1057
+ appearance: {
1058
+ dark: {
1059
+ value: "#fff0b1"
196
1060
  }
197
1061
  }
198
1062
  }
199
1063
  };
1064
+ /**
1065
+ * @type {TokenWithAppearance}
1066
+ */
200
1067
  export const BorderColorDanger = {
201
- value: "#e13212",
202
- attributes: {
1068
+ value: "#d62100",
1069
+ extensions: {
203
1070
  appearance: {
204
1071
  dark: {
205
- value: "#ff745f"
1072
+ value: "#ffac9e"
206
1073
  }
207
1074
  }
208
1075
  }
209
1076
  };
210
- export const ChartsMonochrome01Color = {
211
- value: "#3892F3",
212
- attributes: {
1077
+ /**
1078
+ * @type {TokenWithAppearance}
1079
+ */
1080
+ export const ChartMonochrome01FillColor = {
1081
+ value: "#3892f3",
1082
+ extensions: {
213
1083
  appearance: {
214
1084
  dark: {
215
1085
  value: "#8AC3FF"
@@ -217,20 +1087,33 @@ export const ChartsMonochrome01Color = {
217
1087
  }
218
1088
  }
219
1089
  };
220
- export const ChartsMonochrome01Stroke = {
221
- value: "transparent",
222
- attributes: {
1090
+ /**
1091
+ * @type {TokenValue}
1092
+ */
1093
+ export const ChartMonochrome01FillPattern = { value: "solid" };
1094
+ /**
1095
+ * @type {TokenWithAppearance}
1096
+ */
1097
+ export const ChartMonochrome01StrokeColor = {
1098
+ value: "rgba(0, 0, 0, 0)",
1099
+ extensions: {
223
1100
  appearance: {
224
1101
  dark: {
225
- value: "transparent"
1102
+ value: "rgba(0, 0, 0, 0)"
226
1103
  }
227
1104
  }
228
1105
  }
229
1106
  };
230
- export const ChartsMonochrome01Pattern = { value: "solid" };
231
- export const ChartsMonochrome02Color = {
1107
+ /**
1108
+ * @type {TokenValue}
1109
+ */
1110
+ export const ChartMonochrome01StrokeStyle = { value: "solid" };
1111
+ /**
1112
+ * @type {TokenWithAppearance}
1113
+ */
1114
+ export const ChartMonochrome02FillColor = {
232
1115
  value: "#08389c",
233
- attributes: {
1116
+ extensions: {
234
1117
  appearance: {
235
1118
  dark: {
236
1119
  value: "#3476FF"
@@ -238,20 +1121,33 @@ export const ChartsMonochrome02Color = {
238
1121
  }
239
1122
  }
240
1123
  };
241
- export const ChartsMonochrome02Stroke = {
242
- value: "transparent",
243
- attributes: {
1124
+ /**
1125
+ * @type {TokenValue}
1126
+ */
1127
+ export const ChartMonochrome02FillPattern = { value: "solid" };
1128
+ /**
1129
+ * @type {TokenWithAppearance}
1130
+ */
1131
+ export const ChartMonochrome02StrokeColor = {
1132
+ value: "rgba(0, 0, 0, 0)",
1133
+ extensions: {
244
1134
  appearance: {
245
1135
  dark: {
246
- value: "transparent"
1136
+ value: "rgba(0, 0, 0, 0)"
247
1137
  }
248
1138
  }
249
1139
  }
250
1140
  };
251
- export const ChartsMonochrome02Pattern = { value: "solid" };
252
- export const ChartsMonochrome03Color = {
253
- value: "#F2F9FF",
254
- attributes: {
1141
+ /**
1142
+ * @type {TokenValue}
1143
+ */
1144
+ export const ChartMonochrome02StrokeStyle = { value: "solid" };
1145
+ /**
1146
+ * @type {TokenWithAppearance}
1147
+ */
1148
+ export const ChartMonochrome03FillColor = {
1149
+ value: "#f2f9ff",
1150
+ extensions: {
255
1151
  appearance: {
256
1152
  dark: {
257
1153
  value: "#141414"
@@ -259,9 +1155,16 @@ export const ChartsMonochrome03Color = {
259
1155
  }
260
1156
  }
261
1157
  };
262
- export const ChartsMonochrome03Stroke = {
263
- value: "#3892F3",
264
- attributes: {
1158
+ /**
1159
+ * @type {TokenValue}
1160
+ */
1161
+ export const ChartMonochrome03FillPattern = { value: "striped" };
1162
+ /**
1163
+ * @type {TokenWithAppearance}
1164
+ */
1165
+ export const ChartMonochrome03StrokeColor = {
1166
+ value: "#3892f3",
1167
+ extensions: {
265
1168
  appearance: {
266
1169
  dark: {
267
1170
  value: "#8AC3FF"
@@ -269,20 +1172,33 @@ export const ChartsMonochrome03Stroke = {
269
1172
  }
270
1173
  }
271
1174
  };
272
- export const ChartsMonochrome03Pattern = { value: "striped" };
273
- export const ChartsMonochrome04Color = {
274
- value: "#F2F9FF",
275
- attributes: {
1175
+ /**
1176
+ * @type {TokenValue}
1177
+ */
1178
+ export const ChartMonochrome03StrokeStyle = { value: "solid" };
1179
+ /**
1180
+ * @type {TokenWithAppearance}
1181
+ */
1182
+ export const ChartMonochrome04FillColor = {
1183
+ value: "#f2f9ff",
1184
+ extensions: {
276
1185
  appearance: {
277
1186
  dark: {
278
- value: "#F2F9FF"
1187
+ value: "#f2f9ff"
279
1188
  }
280
1189
  }
281
1190
  }
282
1191
  };
283
- export const ChartsMonochrome04Stroke = {
284
- value: "#3892F3",
285
- attributes: {
1192
+ /**
1193
+ * @type {TokenValue}
1194
+ */
1195
+ export const ChartMonochrome04FillPattern = { value: "solid" };
1196
+ /**
1197
+ * @type {TokenWithAppearance}
1198
+ */
1199
+ export const ChartMonochrome04StrokeColor = {
1200
+ value: "#3892f3",
1201
+ extensions: {
286
1202
  appearance: {
287
1203
  dark: {
288
1204
  value: "#8AC3FF"
@@ -290,10 +1206,16 @@ export const ChartsMonochrome04Stroke = {
290
1206
  }
291
1207
  }
292
1208
  };
293
- export const ChartsMonochrome04Pattern = { value: "solid" };
294
- export const ChartsCategorical10Color = {
295
- value: "#D57A5C",
296
- attributes: {
1209
+ /**
1210
+ * @type {TokenValue}
1211
+ */
1212
+ export const ChartMonochrome04StrokeStyle = { value: "solid" };
1213
+ /**
1214
+ * @type {TokenWithAppearance}
1215
+ */
1216
+ export const ChartCategorical10FillColor = {
1217
+ value: "#d57a5c",
1218
+ extensions: {
297
1219
  appearance: {
298
1220
  dark: {
299
1221
  value: "#D99078"
@@ -301,41 +1223,67 @@ export const ChartsCategorical10Color = {
301
1223
  }
302
1224
  }
303
1225
  };
304
- export const ChartsCategorical10Stroke = {
305
- value: "transparent",
306
- attributes: {
1226
+ /**
1227
+ * @type {TokenValue}
1228
+ */
1229
+ export const ChartCategorical10FillPattern = { value: "solid" };
1230
+ /**
1231
+ * @type {TokenWithAppearance}
1232
+ */
1233
+ export const ChartCategorical10StrokeColor = {
1234
+ value: "rgba(0, 0, 0, 0)",
1235
+ extensions: {
307
1236
  appearance: {
308
1237
  dark: {
309
- value: "transparent"
1238
+ value: "rgba(0, 0, 0, 0)"
310
1239
  }
311
1240
  }
312
1241
  }
313
1242
  };
314
- export const ChartsCategorical10Pattern = { value: "solid" };
315
- export const ChartsCategorical01Color = {
316
- value: "#3892F3",
317
- attributes: {
1243
+ /**
1244
+ * @type {TokenValue}
1245
+ */
1246
+ export const ChartCategorical10StrokeStyle = { value: "solid" };
1247
+ /**
1248
+ * @type {TokenWithAppearance}
1249
+ */
1250
+ export const ChartCategorical01FillColor = {
1251
+ value: "#3892f3",
1252
+ extensions: {
318
1253
  appearance: {
319
1254
  dark: {
320
- value: "#3892F3"
1255
+ value: "#3892f3"
321
1256
  }
322
1257
  }
323
1258
  }
324
1259
  };
325
- export const ChartsCategorical01Stroke = {
326
- value: "transparent",
327
- attributes: {
1260
+ /**
1261
+ * @type {TokenValue}
1262
+ */
1263
+ export const ChartCategorical01FillPattern = { value: "solid" };
1264
+ /**
1265
+ * @type {TokenWithAppearance}
1266
+ */
1267
+ export const ChartCategorical01StrokeColor = {
1268
+ value: "rgba(0, 0, 0, 0)",
1269
+ extensions: {
328
1270
  appearance: {
329
1271
  dark: {
330
- value: "transparent"
1272
+ value: "rgba(0, 0, 0, 0)"
331
1273
  }
332
1274
  }
333
1275
  }
334
1276
  };
335
- export const ChartsCategorical01Pattern = { value: "solid" };
336
- export const ChartsCategorical02Color = {
1277
+ /**
1278
+ * @type {TokenValue}
1279
+ */
1280
+ export const ChartCategorical01StrokeStyle = { value: "solid" };
1281
+ /**
1282
+ * @type {TokenWithAppearance}
1283
+ */
1284
+ export const ChartCategorical02FillColor = {
337
1285
  value: "#08389c",
338
- attributes: {
1286
+ extensions: {
339
1287
  appearance: {
340
1288
  dark: {
341
1289
  value: "#3476FF"
@@ -343,20 +1291,33 @@ export const ChartsCategorical02Color = {
343
1291
  }
344
1292
  }
345
1293
  };
346
- export const ChartsCategorical02Stroke = {
347
- value: "transparent",
348
- attributes: {
1294
+ /**
1295
+ * @type {TokenValue}
1296
+ */
1297
+ export const ChartCategorical02FillPattern = { value: "solid" };
1298
+ /**
1299
+ * @type {TokenWithAppearance}
1300
+ */
1301
+ export const ChartCategorical02StrokeColor = {
1302
+ value: "rgba(0, 0, 0, 0)",
1303
+ extensions: {
349
1304
  appearance: {
350
1305
  dark: {
351
- value: "transparent"
1306
+ value: "rgba(0, 0, 0, 0)"
352
1307
  }
353
1308
  }
354
1309
  }
355
1310
  };
356
- export const ChartsCategorical02Pattern = { value: "solid" };
357
- export const ChartsCategorical03Color = {
358
- value: "#0FA2B8",
359
- attributes: {
1311
+ /**
1312
+ * @type {TokenValue}
1313
+ */
1314
+ export const ChartCategorical02StrokeStyle = { value: "solid" };
1315
+ /**
1316
+ * @type {TokenWithAppearance}
1317
+ */
1318
+ export const ChartCategorical03FillColor = {
1319
+ value: "#0fa2b8",
1320
+ extensions: {
360
1321
  appearance: {
361
1322
  dark: {
362
1323
  value: "#C6F6FF"
@@ -364,20 +1325,33 @@ export const ChartsCategorical03Color = {
364
1325
  }
365
1326
  }
366
1327
  };
367
- export const ChartsCategorical03Stroke = {
368
- value: "transparent",
369
- attributes: {
1328
+ /**
1329
+ * @type {TokenValue}
1330
+ */
1331
+ export const ChartCategorical03FillPattern = { value: "solid" };
1332
+ /**
1333
+ * @type {TokenWithAppearance}
1334
+ */
1335
+ export const ChartCategorical03StrokeColor = {
1336
+ value: "rgba(0, 0, 0, 0)",
1337
+ extensions: {
370
1338
  appearance: {
371
1339
  dark: {
372
- value: "transparent"
1340
+ value: "rgba(0, 0, 0, 0)"
373
1341
  }
374
1342
  }
375
1343
  }
376
1344
  };
377
- export const ChartsCategorical03Pattern = { value: "solid" };
378
- export const ChartsCategorical04Color = {
379
- value: "#907AF5",
380
- attributes: {
1345
+ /**
1346
+ * @type {TokenValue}
1347
+ */
1348
+ export const ChartCategorical03StrokeStyle = { value: "solid" };
1349
+ /**
1350
+ * @type {TokenWithAppearance}
1351
+ */
1352
+ export const ChartCategorical04FillColor = {
1353
+ value: "#907af5",
1354
+ extensions: {
381
1355
  appearance: {
382
1356
  dark: {
383
1357
  value: "#C6B8F4"
@@ -385,20 +1359,33 @@ export const ChartsCategorical04Color = {
385
1359
  }
386
1360
  }
387
1361
  };
388
- export const ChartsCategorical04Stroke = {
389
- value: "transparent",
390
- attributes: {
1362
+ /**
1363
+ * @type {TokenValue}
1364
+ */
1365
+ export const ChartCategorical04FillPattern = { value: "solid" };
1366
+ /**
1367
+ * @type {TokenWithAppearance}
1368
+ */
1369
+ export const ChartCategorical04StrokeColor = {
1370
+ value: "rgba(0, 0, 0, 0)",
1371
+ extensions: {
391
1372
  appearance: {
392
1373
  dark: {
393
- value: "transparent"
1374
+ value: "rgba(0, 0, 0, 0)"
394
1375
  }
395
1376
  }
396
1377
  }
397
1378
  };
398
- export const ChartsCategorical04Pattern = { value: "solid" };
399
- export const ChartsCategorical05Color = {
400
- value: "#DE52CE",
401
- attributes: {
1379
+ /**
1380
+ * @type {TokenValue}
1381
+ */
1382
+ export const ChartCategorical04StrokeStyle = { value: "solid" };
1383
+ /**
1384
+ * @type {TokenWithAppearance}
1385
+ */
1386
+ export const ChartCategorical05FillColor = {
1387
+ value: "#de52ce",
1388
+ extensions: {
402
1389
  appearance: {
403
1390
  dark: {
404
1391
  value: "#D949A9"
@@ -406,20 +1393,33 @@ export const ChartsCategorical05Color = {
406
1393
  }
407
1394
  }
408
1395
  };
409
- export const ChartsCategorical05Stroke = {
410
- value: "transparent",
411
- attributes: {
1396
+ /**
1397
+ * @type {TokenValue}
1398
+ */
1399
+ export const ChartCategorical05FillPattern = { value: "solid" };
1400
+ /**
1401
+ * @type {TokenWithAppearance}
1402
+ */
1403
+ export const ChartCategorical05StrokeColor = {
1404
+ value: "rgba(0, 0, 0, 0)",
1405
+ extensions: {
412
1406
  appearance: {
413
1407
  dark: {
414
- value: "transparent"
1408
+ value: "rgba(0, 0, 0, 0)"
415
1409
  }
416
1410
  }
417
1411
  }
418
1412
  };
419
- export const ChartsCategorical05Pattern = { value: "solid" };
420
- export const ChartsCategorical06Color = {
421
- value: "#C2185B",
422
- attributes: {
1413
+ /**
1414
+ * @type {TokenValue}
1415
+ */
1416
+ export const ChartCategorical05StrokeStyle = { value: "solid" };
1417
+ /**
1418
+ * @type {TokenWithAppearance}
1419
+ */
1420
+ export const ChartCategorical06FillColor = {
1421
+ value: "#c2185b",
1422
+ extensions: {
423
1423
  appearance: {
424
1424
  dark: {
425
1425
  value: "#ED1369"
@@ -427,20 +1427,33 @@ export const ChartsCategorical06Color = {
427
1427
  }
428
1428
  }
429
1429
  };
430
- export const ChartsCategorical06Stroke = {
431
- value: "transparent",
432
- attributes: {
1430
+ /**
1431
+ * @type {TokenValue}
1432
+ */
1433
+ export const ChartCategorical06FillPattern = { value: "solid" };
1434
+ /**
1435
+ * @type {TokenWithAppearance}
1436
+ */
1437
+ export const ChartCategorical06StrokeColor = {
1438
+ value: "rgba(0, 0, 0, 0)",
1439
+ extensions: {
433
1440
  appearance: {
434
1441
  dark: {
435
- value: "transparent"
1442
+ value: "rgba(0, 0, 0, 0)"
436
1443
  }
437
1444
  }
438
1445
  }
439
1446
  };
440
- export const ChartsCategorical06Pattern = { value: "solid" };
441
- export const ChartsCategorical07Color = {
442
- value: "#759E15",
443
- attributes: {
1447
+ /**
1448
+ * @type {TokenValue}
1449
+ */
1450
+ export const ChartCategorical06StrokeStyle = { value: "solid" };
1451
+ /**
1452
+ * @type {TokenWithAppearance}
1453
+ */
1454
+ export const ChartCategorical07FillColor = {
1455
+ value: "#759e15",
1456
+ extensions: {
444
1457
  appearance: {
445
1458
  dark: {
446
1459
  value: "#8CC30B"
@@ -448,20 +1461,33 @@ export const ChartsCategorical07Color = {
448
1461
  }
449
1462
  }
450
1463
  };
451
- export const ChartsCategorical07Stroke = {
452
- value: "transparent",
453
- attributes: {
1464
+ /**
1465
+ * @type {TokenValue}
1466
+ */
1467
+ export const ChartCategorical07FillPattern = { value: "solid" };
1468
+ /**
1469
+ * @type {TokenWithAppearance}
1470
+ */
1471
+ export const ChartCategorical07StrokeColor = {
1472
+ value: "rgba(0, 0, 0, 0)",
1473
+ extensions: {
454
1474
  appearance: {
455
1475
  dark: {
456
- value: "transparent"
1476
+ value: "rgba(0, 0, 0, 0)"
457
1477
  }
458
1478
  }
459
1479
  }
460
1480
  };
461
- export const ChartsCategorical07Pattern = { value: "solid" };
462
- export const ChartsCategorical08Color = {
463
- value: "#AC6400",
464
- attributes: {
1481
+ /**
1482
+ * @type {TokenValue}
1483
+ */
1484
+ export const ChartCategorical07StrokeStyle = { value: "solid" };
1485
+ /**
1486
+ * @type {TokenWithAppearance}
1487
+ */
1488
+ export const ChartCategorical08FillColor = {
1489
+ value: "#ac6400",
1490
+ extensions: {
465
1491
  appearance: {
466
1492
  dark: {
467
1493
  value: "#B36800"
@@ -469,20 +1495,33 @@ export const ChartsCategorical08Color = {
469
1495
  }
470
1496
  }
471
1497
  };
472
- export const ChartsCategorical08Stroke = {
473
- value: "transparent",
474
- attributes: {
1498
+ /**
1499
+ * @type {TokenValue}
1500
+ */
1501
+ export const ChartCategorical08FillPattern = { value: "solid" };
1502
+ /**
1503
+ * @type {TokenWithAppearance}
1504
+ */
1505
+ export const ChartCategorical08StrokeColor = {
1506
+ value: "rgba(0, 0, 0, 0)",
1507
+ extensions: {
475
1508
  appearance: {
476
1509
  dark: {
477
- value: "transparent"
1510
+ value: "rgba(0, 0, 0, 0)"
478
1511
  }
479
1512
  }
480
1513
  }
481
1514
  };
482
- export const ChartsCategorical08Pattern = { value: "solid" };
483
- export const ChartsCategorical09Color = {
484
- value: "#EB7200",
485
- attributes: {
1515
+ /**
1516
+ * @type {TokenValue}
1517
+ */
1518
+ export const ChartCategorical08StrokeStyle = { value: "solid" };
1519
+ /**
1520
+ * @type {TokenWithAppearance}
1521
+ */
1522
+ export const ChartCategorical09FillColor = {
1523
+ value: "#eb7200",
1524
+ extensions: {
486
1525
  appearance: {
487
1526
  dark: {
488
1527
  value: "#FFA037"
@@ -490,20 +1529,33 @@ export const ChartsCategorical09Color = {
490
1529
  }
491
1530
  }
492
1531
  };
493
- export const ChartsCategorical09Stroke = {
494
- value: "transparent",
495
- attributes: {
1532
+ /**
1533
+ * @type {TokenValue}
1534
+ */
1535
+ export const ChartCategorical09FillPattern = { value: "solid" };
1536
+ /**
1537
+ * @type {TokenWithAppearance}
1538
+ */
1539
+ export const ChartCategorical09StrokeColor = {
1540
+ value: "rgba(0, 0, 0, 0)",
1541
+ extensions: {
496
1542
  appearance: {
497
1543
  dark: {
498
- value: "transparent"
1544
+ value: "rgba(0, 0, 0, 0)"
499
1545
  }
500
1546
  }
501
1547
  }
502
1548
  };
503
- export const ChartsCategorical09Pattern = { value: "solid" };
504
- export const ChartsStatusSuccessColor = {
505
- value: "#007A4D",
506
- attributes: {
1549
+ /**
1550
+ * @type {TokenValue}
1551
+ */
1552
+ export const ChartCategorical09StrokeStyle = { value: "solid" };
1553
+ /**
1554
+ * @type {TokenWithAppearance}
1555
+ */
1556
+ export const ChartStatusSuccessFillColor = {
1557
+ value: "#007a4d",
1558
+ extensions: {
507
1559
  appearance: {
508
1560
  dark: {
509
1561
  value: "#49CC93"
@@ -511,20 +1563,33 @@ export const ChartsStatusSuccessColor = {
511
1563
  }
512
1564
  }
513
1565
  };
514
- export const ChartsStatusSuccessStroke = {
515
- value: "transparent",
516
- attributes: {
1566
+ /**
1567
+ * @type {TokenValue}
1568
+ */
1569
+ export const ChartStatusSuccessFillPattern = { value: "solid" };
1570
+ /**
1571
+ * @type {TokenWithAppearance}
1572
+ */
1573
+ export const ChartStatusSuccessStrokeColor = {
1574
+ value: "rgba(0, 0, 0, 0)",
1575
+ extensions: {
517
1576
  appearance: {
518
1577
  dark: {
519
- value: "transparent"
1578
+ value: "rgba(0, 0, 0, 0)"
520
1579
  }
521
1580
  }
522
1581
  }
523
1582
  };
524
- export const ChartsStatusSuccessPattern = { value: "solid" };
525
- export const ChartsStatusWarningColor = {
1583
+ /**
1584
+ * @type {TokenValue}
1585
+ */
1586
+ export const ChartStatusSuccessStrokeStyle = { value: "solid" };
1587
+ /**
1588
+ * @type {TokenWithAppearance}
1589
+ */
1590
+ export const ChartStatusWarningFillColor = {
526
1591
  value: "#ffbe00",
527
- attributes: {
1592
+ extensions: {
528
1593
  appearance: {
529
1594
  dark: {
530
1595
  value: "#ffe278"
@@ -532,20 +1597,33 @@ export const ChartsStatusWarningColor = {
532
1597
  }
533
1598
  }
534
1599
  };
535
- export const ChartsStatusWarningStroke = {
536
- value: "transparent",
537
- attributes: {
1600
+ /**
1601
+ * @type {TokenValue}
1602
+ */
1603
+ export const ChartStatusWarningFillPattern = { value: "solid" };
1604
+ /**
1605
+ * @type {TokenWithAppearance}
1606
+ */
1607
+ export const ChartStatusWarningStrokeColor = {
1608
+ value: "rgba(0, 0, 0, 0)",
1609
+ extensions: {
538
1610
  appearance: {
539
1611
  dark: {
540
- value: "transparent"
1612
+ value: "rgba(0, 0, 0, 0)"
541
1613
  }
542
1614
  }
543
1615
  }
544
1616
  };
545
- export const ChartsStatusWarningPattern = { value: "solid" };
546
- export const ChartsStatusDangerColor = {
1617
+ /**
1618
+ * @type {TokenValue}
1619
+ */
1620
+ export const ChartStatusWarningStrokeStyle = { value: "solid" };
1621
+ /**
1622
+ * @type {TokenWithAppearance}
1623
+ */
1624
+ export const ChartStatusDangerFillColor = {
547
1625
  value: "#e13212",
548
- attributes: {
1626
+ extensions: {
549
1627
  appearance: {
550
1628
  dark: {
551
1629
  value: "#ff745f"
@@ -553,20 +1631,33 @@ export const ChartsStatusDangerColor = {
553
1631
  }
554
1632
  }
555
1633
  };
556
- export const ChartsStatusDangerStroke = {
557
- value: "transparent",
558
- attributes: {
1634
+ /**
1635
+ * @type {TokenValue}
1636
+ */
1637
+ export const ChartStatusDangerFillPattern = { value: "solid" };
1638
+ /**
1639
+ * @type {TokenWithAppearance}
1640
+ */
1641
+ export const ChartStatusDangerStrokeColor = {
1642
+ value: "rgba(0, 0, 0, 0)",
1643
+ extensions: {
559
1644
  appearance: {
560
1645
  dark: {
561
- value: "transparent"
1646
+ value: "rgba(0, 0, 0, 0)"
562
1647
  }
563
1648
  }
564
1649
  }
565
1650
  };
566
- export const ChartsStatusDangerPattern = { value: "solid" };
567
- export const ChartsStatusNeutralColor = {
1651
+ /**
1652
+ * @type {TokenValue}
1653
+ */
1654
+ export const ChartStatusDangerStrokeStyle = { value: "solid" };
1655
+ /**
1656
+ * @type {TokenWithAppearance}
1657
+ */
1658
+ export const ChartStatusNeutralFillColor = {
568
1659
  value: "#ffffff",
569
- attributes: {
1660
+ extensions: {
570
1661
  appearance: {
571
1662
  dark: {
572
1663
  value: "#141414"
@@ -574,9 +1665,12 @@ export const ChartsStatusNeutralColor = {
574
1665
  }
575
1666
  }
576
1667
  };
577
- export const ChartsStatusNeutralStroke = {
578
- value: "#8C9CA5",
579
- attributes: {
1668
+ /**
1669
+ * @type {TokenWithAppearance}
1670
+ */
1671
+ export const ChartStatusNeutralStrokeColor = {
1672
+ value: "#8c9ca5",
1673
+ extensions: {
580
1674
  appearance: {
581
1675
  dark: {
582
1676
  value: "#B4C1C8"
@@ -584,31 +1678,50 @@ export const ChartsStatusNeutralStroke = {
584
1678
  }
585
1679
  }
586
1680
  };
587
- export const ChartsStatusNeutralPattern = { value: "striped" };
588
- export const FocusRingColor = {
589
- value: "#0265DC",
590
- attributes: {
1681
+ /**
1682
+ * @type {TokenValue}
1683
+ */
1684
+ export const ChartStatusNeutralStrokeStyle = { value: "solid" };
1685
+ /**
1686
+ * @type {TokenWithAppearance}
1687
+ */
1688
+ export const FocusRingColorDefault = {
1689
+ value: "#0265dc",
1690
+ extensions: {
591
1691
  appearance: {
592
1692
  dark: {
593
- value: "#78BBFA"
1693
+ value: "#70b1ff"
594
1694
  }
595
1695
  }
596
1696
  }
597
1697
  };
1698
+ /**
1699
+ * @type {TokenWithAppearance}
1700
+ */
598
1701
  export const FocusRingColorDanger = {
599
- value: "#e13212",
600
- attributes: {
1702
+ value: "#d62100",
1703
+ extensions: {
601
1704
  appearance: {
602
1705
  dark: {
603
- value: "#ff745f"
1706
+ value: "#ff5b3d"
604
1707
  }
605
1708
  }
606
1709
  }
607
1710
  };
1711
+ /**
1712
+ * @type {TokenValue}
1713
+ */
608
1714
  export const FocusRingWidth = { value: "0.25rem" };
609
- export const ForegroundColor = {
610
- value: "#141414",
611
- attributes: {
1715
+ /**
1716
+ * @type {TokenValue}
1717
+ */
1718
+ export const FocusRingStyle = { value: "solid" };
1719
+ /**
1720
+ * @type {TokenWithAppearance}
1721
+ */
1722
+ export const ForegroundColorDefault = {
1723
+ value: "#040404",
1724
+ extensions: {
612
1725
  appearance: {
613
1726
  dark: {
614
1727
  value: "#ffffff"
@@ -616,317 +1729,449 @@ export const ForegroundColor = {
616
1729
  }
617
1730
  }
618
1731
  };
619
- export const ForegroundColorSubdued = {
620
- value: "#737475",
621
- attributes: {
622
- appearance: {
623
- dark: {
624
- value: "#bcbcbd"
625
- }
626
- }
627
- }
628
- };
629
- export const ForegroundColorPrimary = {
630
- value: "#0265DC",
631
- attributes: {
632
- appearance: {
633
- dark: {
634
- value: "#78BBFA"
635
- }
636
- }
637
- }
638
- };
639
- export const ForegroundColorDanger = {
640
- value: "#e13212",
641
- attributes: {
642
- appearance: {
643
- dark: {
644
- value: "#ff745f"
645
- }
646
- }
647
- }
648
- };
649
- export const ForegroundColorInverted = {
650
- value: "#ffffff",
651
- attributes: {
1732
+ /**
1733
+ * @type {TokenWithAppearance}
1734
+ */
1735
+ export const ForegroundColorDefaultHover = {
1736
+ value: "#040404",
1737
+ extensions: {
652
1738
  appearance: {
653
1739
  dark: {
654
- value: "#141414"
1740
+ value: "#ffffff"
655
1741
  }
656
1742
  }
657
1743
  }
658
1744
  };
659
- export const ForegroundColorOnPrimary = {
660
- value: "#ffffff",
661
- attributes: {
1745
+ /**
1746
+ * @type {TokenWithAppearance}
1747
+ */
1748
+ export const ForegroundColorDefaultActive = {
1749
+ value: "#040404",
1750
+ extensions: {
662
1751
  appearance: {
663
1752
  dark: {
664
- value: "#141414"
1753
+ value: "#ffffff"
665
1754
  }
666
1755
  }
667
1756
  }
668
1757
  };
669
- export const ForegroundColorOnDanger = {
670
- value: "#ffffff",
671
- attributes: {
1758
+ /**
1759
+ * @type {TokenWithAppearance}
1760
+ */
1761
+ export const ForegroundColorSubdued = {
1762
+ value: "#707070",
1763
+ extensions: {
672
1764
  appearance: {
673
1765
  dark: {
674
- value: "#141414"
1766
+ value: "#c4c4c4"
675
1767
  }
676
1768
  }
677
1769
  }
678
1770
  };
679
- export const ForegroundColorOnDangerSubdued = {
680
- value: "#bf2a00",
681
- attributes: {
1771
+ /**
1772
+ * @type {TokenWithAppearance}
1773
+ */
1774
+ export const ForegroundColorSubduedHover = {
1775
+ value: "#707070",
1776
+ extensions: {
682
1777
  appearance: {
683
1778
  dark: {
684
- value: "#ffffff"
1779
+ value: "#c4c4c4"
685
1780
  }
686
1781
  }
687
1782
  }
688
1783
  };
689
- export const ForegroundColorOnWarning = {
690
- value: "#141414",
691
- attributes: {
1784
+ /**
1785
+ * @type {TokenWithAppearance}
1786
+ */
1787
+ export const ForegroundColorSubduedActive = {
1788
+ value: "#545454",
1789
+ extensions: {
692
1790
  appearance: {
693
1791
  dark: {
694
- value: "#141414"
1792
+ value: "#dfdfdf"
695
1793
  }
696
1794
  }
697
1795
  }
698
1796
  };
699
- export const ForegroundColorActivePrimary = {
700
- value: "#004491",
701
- attributes: {
1797
+ /**
1798
+ * @type {TokenWithAppearance}
1799
+ */
1800
+ export const ForegroundColorPrimary = {
1801
+ value: "#0265dc",
1802
+ extensions: {
702
1803
  appearance: {
703
1804
  dark: {
704
- value: "#B5DEFF"
1805
+ value: "#70b1ff"
705
1806
  }
706
1807
  }
707
1808
  }
708
1809
  };
709
- export const ForegroundColorActiveDanger = {
710
- value: "#bf2a00",
711
- attributes: {
1810
+ /**
1811
+ * @type {TokenWithAppearance}
1812
+ */
1813
+ export const ForegroundColorPrimaryHover = {
1814
+ value: "#1d4ca3",
1815
+ extensions: {
712
1816
  appearance: {
713
1817
  dark: {
714
- value: "#ff745f"
1818
+ value: "#9ecaff"
715
1819
  }
716
1820
  }
717
1821
  }
718
1822
  };
719
- export const ForegroundColorHoverPrimary = {
720
- value: "#004491",
721
- attributes: {
1823
+ /**
1824
+ * @type {TokenWithAppearance}
1825
+ */
1826
+ export const ForegroundColorPrimaryActive = {
1827
+ value: "#003472",
1828
+ extensions: {
722
1829
  appearance: {
723
1830
  dark: {
724
- value: "#B5DEFF"
1831
+ value: "#9ecaff"
725
1832
  }
726
1833
  }
727
1834
  }
728
1835
  };
729
- export const ForegroundColorHoverDanger = {
730
- value: "#bf2a00",
731
- attributes: {
1836
+ /**
1837
+ * @type {TokenWithAppearance}
1838
+ */
1839
+ export const ForegroundColorDanger = {
1840
+ value: "#d62100",
1841
+ extensions: {
732
1842
  appearance: {
733
1843
  dark: {
734
- value: "#ff745f"
1844
+ value: "#ff5b3d"
735
1845
  }
736
1846
  }
737
1847
  }
738
1848
  };
739
- export const OverlayColorActive = {
740
- value: "#14141429",
741
- attributes: {
1849
+ /**
1850
+ * @type {TokenWithAppearance}
1851
+ */
1852
+ export const ForegroundColorDangerHover = {
1853
+ value: "#a31900",
1854
+ extensions: {
742
1855
  appearance: {
743
1856
  dark: {
744
- value: "#ffffff29"
1857
+ value: "#ff8670"
745
1858
  }
746
1859
  }
747
1860
  }
748
1861
  };
749
- export const OverlayColorActivePrimary = {
750
- value: "#0265DC4D",
751
- attributes: {
1862
+ /**
1863
+ * @type {TokenWithAppearance}
1864
+ */
1865
+ export const ForegroundColorDangerActive = {
1866
+ value: "#731100",
1867
+ extensions: {
752
1868
  appearance: {
753
1869
  dark: {
754
- value: "#78BBFA40"
1870
+ value: "#ffac9e"
755
1871
  }
756
1872
  }
757
1873
  }
758
1874
  };
759
- export const OverlayColorActiveDanger = {
760
- value: "#e132124D",
761
- attributes: {
1875
+ /**
1876
+ * @type {TokenWithAppearance}
1877
+ */
1878
+ export const ForegroundColorInverted = {
1879
+ value: "#ffffff",
1880
+ extensions: {
762
1881
  appearance: {
763
1882
  dark: {
764
- value: "#f94d3240"
1883
+ value: "#1a1a1a"
765
1884
  }
766
1885
  }
767
1886
  }
768
1887
  };
769
- export const OverlayColorActiveOn = {
770
- value: "#14141429",
771
- attributes: {
1888
+ /**
1889
+ * @type {TokenWithAppearance}
1890
+ */
1891
+ export const ForegroundColorOnPrimary = {
1892
+ value: "#ffffff",
1893
+ extensions: {
772
1894
  appearance: {
773
1895
  dark: {
774
- value: "#14141429"
1896
+ value: "#1a1a1a"
775
1897
  }
776
1898
  }
777
1899
  }
778
1900
  };
779
- export const OverlayColorActiveOnPrimary = {
780
- value: "#14141466",
781
- attributes: {
1901
+ /**
1902
+ * @type {TokenWithAppearance}
1903
+ */
1904
+ export const ForegroundColorOnPrimaryHover = {
1905
+ value: "#ffffff",
1906
+ extensions: {
782
1907
  appearance: {
783
1908
  dark: {
784
- value: "#14141429"
1909
+ value: "#1a1a1a"
785
1910
  }
786
1911
  }
787
1912
  }
788
1913
  };
789
- export const OverlayColorActiveOnDanger = {
790
- value: "#14141466",
791
- attributes: {
1914
+ /**
1915
+ * @type {TokenWithAppearance}
1916
+ */
1917
+ export const ForegroundColorOnPrimaryActive = {
1918
+ value: "#ffffff",
1919
+ extensions: {
792
1920
  appearance: {
793
1921
  dark: {
794
- value: "#14141429"
1922
+ value: "#1a1a1a"
795
1923
  }
796
1924
  }
797
1925
  }
798
1926
  };
799
- export const OverlayColorHover = {
800
- value: "#14141414",
801
- attributes: {
1927
+ /**
1928
+ * @type {TokenWithAppearance}
1929
+ */
1930
+ export const ForegroundColorOnSuccess = {
1931
+ value: "#ffffff",
1932
+ extensions: {
802
1933
  appearance: {
803
1934
  dark: {
804
- value: "#ffffff14"
1935
+ value: "#1a1a1a"
805
1936
  }
806
1937
  }
807
1938
  }
808
1939
  };
809
- export const OverlayColorHoverPrimary = {
810
- value: "#0265DC1A",
811
- attributes: {
1940
+ /**
1941
+ * @type {TokenWithAppearance}
1942
+ */
1943
+ export const ForegroundColorOnDanger = {
1944
+ value: "#ffffff",
1945
+ extensions: {
812
1946
  appearance: {
813
1947
  dark: {
814
- value: "#78BBFA1A"
1948
+ value: "#1a1a1a"
815
1949
  }
816
1950
  }
817
1951
  }
818
1952
  };
819
- export const OverlayColorHoverDanger = {
820
- value: "#e132121A",
821
- attributes: {
1953
+ /**
1954
+ * @type {TokenWithAppearance}
1955
+ */
1956
+ export const ForegroundColorOnDangerSubdued = {
1957
+ value: "#a31900",
1958
+ extensions: {
822
1959
  appearance: {
823
1960
  dark: {
824
- value: "#f94d3226"
1961
+ value: "#ffffff"
825
1962
  }
826
1963
  }
827
1964
  }
828
1965
  };
829
- export const OverlayColorHoverOn = {
830
- value: "#14141414",
831
- attributes: {
1966
+ /**
1967
+ * @type {TokenWithAppearance}
1968
+ */
1969
+ export const ForegroundColorOnDangerSubduedHover = {
1970
+ value: "#731100",
1971
+ extensions: {
832
1972
  appearance: {
833
1973
  dark: {
834
- value: "#ffffff14"
1974
+ value: "#ffffff"
835
1975
  }
836
1976
  }
837
1977
  }
838
1978
  };
839
- export const OverlayColorHoverOnPrimary = {
840
- value: "#14141433",
841
- attributes: {
1979
+ /**
1980
+ * @type {TokenWithAppearance}
1981
+ */
1982
+ export const ForegroundColorOnDangerSubduedActive = {
1983
+ value: "#470b00",
1984
+ extensions: {
842
1985
  appearance: {
843
1986
  dark: {
844
- value: "#ffffff29"
1987
+ value: "#ffffff"
845
1988
  }
846
1989
  }
847
1990
  }
848
1991
  };
849
- export const OverlayColorHoverOnDanger = {
850
- value: "#14141433",
851
- attributes: {
1992
+ /**
1993
+ * @type {TokenWithAppearance}
1994
+ */
1995
+ export const ForegroundColorOnDangerHover = {
1996
+ value: "#ffffff",
1997
+ extensions: {
852
1998
  appearance: {
853
1999
  dark: {
854
- value: "#ffffff29"
2000
+ value: "#1a1a1a"
855
2001
  }
856
2002
  }
857
2003
  }
858
2004
  };
859
- export const ShadowColor = {
860
- value: "#14141414",
861
- attributes: {
2005
+ /**
2006
+ * @type {TokenWithAppearance}
2007
+ */
2008
+ export const ForegroundColorOnDangerActive = {
2009
+ value: "#ffffff",
2010
+ extensions: {
862
2011
  appearance: {
863
2012
  dark: {
864
- value: "#ffffff14"
2013
+ value: "#1a1a1a"
865
2014
  }
866
2015
  }
867
2016
  }
868
2017
  };
869
- export const ShadowSizeFlat = { value: "0rem 0rem 0rem" };
870
- export const ShadowSizeFloat = { value: "0rem 0.125rem 0.5rem" };
871
- export const ShadowSizeOverlay = { value: "0rem 0.5rem 1.5rem" };
872
- export const StatusColorInfo = {
873
- value: "#0265DC",
874
- attributes: {
2018
+ /**
2019
+ * @type {TokenWithAppearance}
2020
+ */
2021
+ export const ForegroundColorOnWarning = {
2022
+ value: "#1a1a1a",
2023
+ extensions: {
875
2024
  appearance: {
876
2025
  dark: {
877
- value: "#78BBFA"
2026
+ value: "#1a1a1a"
878
2027
  }
879
2028
  }
880
2029
  }
881
2030
  };
882
- export const StatusColorDanger = {
883
- value: "#e13212",
884
- attributes: {
2031
+ /**
2032
+ * @type {TokenWithAppearance}
2033
+ */
2034
+ export const GradientPrimary = {
2035
+ value: "linear-gradient(90deg, var(--color-blue-600, #0265dc) 0%, var(--color-cyan-300, #45d8f2) 100%)",
2036
+ extensions: {
885
2037
  appearance: {
886
2038
  dark: {
887
- value: "#ff745f"
2039
+ value: "linear-gradient(90deg, var(--color-cyan-300, #45d8f2) 0%, var(--color-cyan-50, #daf7fc) 100%)"
888
2040
  }
889
2041
  }
890
2042
  }
891
2043
  };
892
- export const StatusColorSuccess = {
893
- value: "#007A4D",
894
- attributes: {
2044
+ /**
2045
+ * @type {TokenValue}
2046
+ */
2047
+ export const OpacityDisabled = { value: "0.6" };
2048
+ /**
2049
+ * @type {TokenValue}
2050
+ */
2051
+ export const OpacityDisabledStrong = { value: "0.4" };
2052
+ /**
2053
+ * @type {TokenValue}
2054
+ */
2055
+ export const OpacityDisabledStronger = { value: "0.2" };
2056
+ /**
2057
+ * @type {TokenWithAppearance}
2058
+ */
2059
+ export const ShadowColorDefault = {
2060
+ value: "#1a1a1a",
2061
+ extensions: {
895
2062
  appearance: {
896
2063
  dark: {
897
- value: "#49CC93"
2064
+ value: "#ffffff"
898
2065
  }
899
2066
  }
900
2067
  }
901
2068
  };
902
- export const StatusColorWarning = {
903
- value: "#ffbe00",
904
- attributes: {
2069
+ /**
2070
+ * @type {TokenWithAppearance}
2071
+ */
2072
+ export const ShadowColorStrong = {
2073
+ value: "#040404",
2074
+ extensions: {
905
2075
  appearance: {
906
2076
  dark: {
907
- value: "#ffe278"
2077
+ value: "#ffffff"
908
2078
  }
909
2079
  }
910
2080
  }
911
2081
  };
2082
+ /**
2083
+ * @type {TokenValue}
2084
+ */
2085
+ export const ShadowSizeFlat = { value: "0rem 0rem 0rem" };
2086
+ /**
2087
+ * @type {TokenValue}
2088
+ */
2089
+ export const ShadowSizeFloat = { value: "0rem 0.125rem 0.5rem" };
2090
+ /**
2091
+ * @type {TokenValue}
2092
+ */
2093
+ export const ShadowSizeOverlay = { value: "0rem 0.5rem 1.5rem" };
2094
+ /**
2095
+ * @type {TokenValue}
2096
+ */
912
2097
  export const TypographyParagraphSizeXsmall = { value: "0.75rem" };
2098
+ /**
2099
+ * @type {TokenValue}
2100
+ */
913
2101
  export const TypographyParagraphSizeSmall = { value: "0.875rem" };
914
- export const TypographyParagraphSize = { value: "1rem" };
2102
+ /**
2103
+ * @type {TokenValue}
2104
+ */
2105
+ export const TypographyParagraphSizeDefault = { value: "1rem" };
2106
+ /**
2107
+ * @type {TokenValue}
2108
+ */
915
2109
  export const TypographyParagraphSizeLarge = { value: "1.25rem" };
2110
+ /**
2111
+ * @type {TokenValue}
2112
+ */
916
2113
  export const TypographyParagraphSizeXlarge = { value: "1.5rem" };
2114
+ /**
2115
+ * @type {TokenValue}
2116
+ */
917
2117
  export const TypographyParagraphFontWeight = { value: "400" };
2118
+ /**
2119
+ * @type {TokenValue}
2120
+ */
918
2121
  export const TypographyParagraphFontFamily = { value: "'Nunito Sans', sans-serif" };
2122
+ /**
2123
+ * @type {TokenValue}
2124
+ */
919
2125
  export const TypographyHeadingSizeXsmall = { value: "0.875rem" };
2126
+ /**
2127
+ * @type {TokenValue}
2128
+ */
920
2129
  export const TypographyHeadingSizeSmall = { value: "1rem" };
921
- export const TypographyHeadingSize = { value: "1.25rem" };
2130
+ /**
2131
+ * @type {TokenValue}
2132
+ */
2133
+ export const TypographyHeadingSizeDefault = { value: "1.25rem" };
2134
+ /**
2135
+ * @type {TokenValue}
2136
+ */
922
2137
  export const TypographyHeadingSizeLarge = { value: "1.5rem" };
2138
+ /**
2139
+ * @type {TokenValue}
2140
+ */
923
2141
  export const TypographyHeadingSizeXlarge = { value: "2rem" };
2142
+ /**
2143
+ * @type {TokenValue}
2144
+ */
924
2145
  export const TypographyHeadingFontWeight = { value: "700" };
2146
+ /**
2147
+ * @type {TokenValue}
2148
+ */
925
2149
  export const TypographyHeadingFontFamily = { value: "'Sofia Pro', SofiaPro, sans-serif" };
2150
+ /**
2151
+ * @type {TokenValue}
2152
+ */
926
2153
  export const TypographyLabelSizeXsmall = { value: "0.625rem" };
2154
+ /**
2155
+ * @type {TokenValue}
2156
+ */
927
2157
  export const TypographyLabelSizeSmall = { value: "0.75rem" };
928
- export const TypographyLabelSize = { value: "0.875rem" };
2158
+ /**
2159
+ * @type {TokenValue}
2160
+ */
2161
+ export const TypographyLabelSizeDefault = { value: "0.875rem" };
2162
+ /**
2163
+ * @type {TokenValue}
2164
+ */
929
2165
  export const TypographyLabelSizeLarge = { value: "1rem" };
2166
+ /**
2167
+ * @type {TokenValue}
2168
+ */
930
2169
  export const TypographyLabelSizeXlarge = { value: "1.25rem" };
2170
+ /**
2171
+ * @type {TokenValue}
2172
+ */
931
2173
  export const TypographyLabelFontWeight = { value: "600" };
2174
+ /**
2175
+ * @type {TokenValue}
2176
+ */
932
2177
  export const TypographyLabelFontFamily = { value: "'Nunito Sans', sans-serif" };