@servicetitan/hammer-token 2.5.0 → 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 +56 -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 -239
  24. package/build/web/core/semantic.d.ts +221 -0
  25. package/build/web/core/semantic.js +1613 -347
  26. package/build/web/core/semantic.scss +219 -137
  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 -229
  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 -439
  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 -341
@@ -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"
128
+ }
129
+ }
130
+ }
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"
7
227
  }
8
228
  }
9
229
  }
10
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: {
24
332
  appearance: {
25
333
  dark: {
26
- value: "#444445"
334
+ value: "#545454"
27
335
  }
28
336
  }
29
337
  }
30
338
  };
339
+ /**
340
+ * @type {TokenWithAppearance}
341
+ */
342
+ export const BackgroundColorStrongerActive = {
343
+ value: "#dfdfdf",
344
+ extensions: {
345
+ appearance: {
346
+ dark: {
347
+ value: "#707070"
348
+ }
349
+ }
350
+ }
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: {
34
371
  appearance: {
35
372
  dark: {
36
- value: "#737475"
373
+ value: "#8b8b8b"
37
374
  }
38
375
  }
39
376
  }
40
377
  };
378
+ /**
379
+ * @type {TokenWithAppearance}
380
+ */
381
+ export const BackgroundColorStrongestActive = {
382
+ value: "#8b8b8b",
383
+ extensions: {
384
+ appearance: {
385
+ dark: {
386
+ value: "#a8a8a8"
387
+ }
388
+ }
389
+ }
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: {
54
436
  appearance: {
55
437
  dark: {
56
- value: "#78BBFA33"
438
+ value: "#70b1ff"
57
439
  }
58
440
  }
59
441
  }
60
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: {
501
+ appearance: {
502
+ dark: {
503
+ value: "#1d4ca3"
504
+ }
505
+ }
506
+ }
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"
67
517
  }
68
518
  }
69
519
  }
70
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"
543
+ }
544
+ }
545
+ }
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: {
592
+ appearance: {
593
+ dark: {
594
+ value: "#010f0a"
595
+ }
596
+ }
597
+ }
598
+ };
599
+ /**
600
+ * @type {TokenWithAppearance}
601
+ */
602
+ export const BackgroundColorSuccessFaintHover = {
603
+ value: "#d3fded",
604
+ extensions: {
74
605
  appearance: {
75
606
  dark: {
76
- value: "#49CC9333"
607
+ value: "#04482e"
77
608
  }
78
609
  }
79
610
  }
80
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"
634
+ }
635
+ }
636
+ }
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"
87
660
  }
88
661
  }
89
662
  }
90
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: {
709
+ appearance: {
710
+ dark: {
711
+ value: "#0a0200"
712
+ }
713
+ }
714
+ }
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: {
94
735
  appearance: {
95
736
  dark: {
96
- value: "#ff745f33"
737
+ value: "#a31900"
97
738
  }
98
739
  }
99
740
  }
100
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,168 @@ 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: {
878
+ appearance: {
879
+ dark: {
880
+ value: "#f9f9f9"
881
+ }
882
+ }
883
+ }
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: {
124
904
  appearance: {
125
905
  dark: {
126
- value: "#fafafa"
906
+ value: "#f9f9f9"
127
907
  }
128
908
  }
129
909
  }
130
910
  };
911
+ /**
912
+ * @type {TokenWithAppearance}
913
+ */
131
914
  export const BackgroundColorInvertedStrong = {
132
- value: "#141414",
133
- attributes: {
915
+ value: "#1a1a1a",
916
+ extensions: {
134
917
  appearance: {
135
918
  dark: {
136
919
  value: "#ffffff"
@@ -138,78 +921,165 @@ export const BackgroundColorInvertedStrong = {
138
921
  }
139
922
  }
140
923
  };
141
- export const BorderRadiusNone = { value: "0" };
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: {
943
+ appearance: {
944
+ dark: {
945
+ value: "#ffffff"
946
+ }
947
+ }
948
+ }
949
+ };
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"
196
1047
  }
197
1048
  }
198
1049
  }
199
1050
  };
1051
+ /**
1052
+ * @type {TokenWithAppearance}
1053
+ */
1054
+ export const BorderColorWarning = {
1055
+ value: "#c98600",
1056
+ extensions: {
1057
+ appearance: {
1058
+ dark: {
1059
+ value: "#fff0b1"
1060
+ }
1061
+ }
1062
+ }
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 ChartsMonochrome1 = {
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 ChartsMonochrome1 = {
217
1087
  }
218
1088
  }
219
1089
  };
220
- export const ChartsMonochrome1Stroke = {
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 ChartsMonochrome1Pattern = { value: "solid" };
231
- export const ChartsMonochrome2 = {
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 ChartsMonochrome2 = {
238
1121
  }
239
1122
  }
240
1123
  };
241
- export const ChartsMonochrome2Stroke = {
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 ChartsMonochrome2Pattern = { value: "solid" };
252
- export const ChartsMonochrome3 = {
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 ChartsMonochrome3 = {
259
1155
  }
260
1156
  }
261
1157
  };
262
- export const ChartsMonochrome3Stroke = {
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 ChartsMonochrome3Stroke = {
269
1172
  }
270
1173
  }
271
1174
  };
272
- export const ChartsMonochrome3Pattern = { value: "striped" };
273
- export const ChartsMonochrome4 = {
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 ChartsMonochrome4Stroke = {
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,622 +1206,972 @@ export const ChartsMonochrome4Stroke = {
290
1206
  }
291
1207
  }
292
1208
  };
293
- export const ChartsMonochrome4Pattern = { value: "solid" };
294
- export const ChartsCategorical1 = {
295
- value: "#3892F3",
296
- attributes: {
297
- appearance: {
298
- dark: {
299
- value: "#3892F3"
300
- }
301
- }
302
- }
303
- };
304
- export const ChartsCategorical1Stroke = {
305
- value: "transparent",
306
- 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: {
307
1219
  appearance: {
308
1220
  dark: {
309
- value: "transparent"
1221
+ value: "#D99078"
310
1222
  }
311
1223
  }
312
1224
  }
313
1225
  };
314
- export const ChartsCategorical1Pattern = { value: "solid" };
315
- export const ChartsCategorical2 = {
316
- value: "#0FA2B8",
317
- 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: {
318
1236
  appearance: {
319
1237
  dark: {
320
- value: "#C6F6FF"
1238
+ value: "rgba(0, 0, 0, 0)"
321
1239
  }
322
1240
  }
323
1241
  }
324
1242
  };
325
- export const ChartsCategorical2Stroke = {
326
- value: "transparent",
327
- 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: {
328
1253
  appearance: {
329
1254
  dark: {
330
- value: "transparent"
1255
+ value: "#3892f3"
331
1256
  }
332
1257
  }
333
1258
  }
334
1259
  };
335
- export const ChartsCategorical2Pattern = { value: "solid" };
336
- export const ChartsCategorical3 = {
337
- value: "#907AF5",
338
- 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: {
339
1270
  appearance: {
340
1271
  dark: {
341
- value: "#C6B8F4"
1272
+ value: "rgba(0, 0, 0, 0)"
342
1273
  }
343
1274
  }
344
1275
  }
345
1276
  };
346
- export const ChartsCategorical3Stroke = {
347
- value: "transparent",
348
- attributes: {
1277
+ /**
1278
+ * @type {TokenValue}
1279
+ */
1280
+ export const ChartCategorical01StrokeStyle = { value: "solid" };
1281
+ /**
1282
+ * @type {TokenWithAppearance}
1283
+ */
1284
+ export const ChartCategorical02FillColor = {
1285
+ value: "#08389c",
1286
+ extensions: {
349
1287
  appearance: {
350
1288
  dark: {
351
- value: "transparent"
1289
+ value: "#3476FF"
352
1290
  }
353
1291
  }
354
1292
  }
355
1293
  };
356
- export const ChartsCategorical3Pattern = { value: "solid" };
357
- export const ChartsCategorical4 = {
358
- value: "#DE52CE",
359
- 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: {
360
1304
  appearance: {
361
1305
  dark: {
362
- value: "#D949A9"
1306
+ value: "rgba(0, 0, 0, 0)"
363
1307
  }
364
1308
  }
365
1309
  }
366
1310
  };
367
- export const ChartsCategorical4Stroke = {
368
- value: "transparent",
369
- 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: {
370
1321
  appearance: {
371
1322
  dark: {
372
- value: "transparent"
1323
+ value: "#C6F6FF"
373
1324
  }
374
1325
  }
375
1326
  }
376
1327
  };
377
- export const ChartsCategorical4Pattern = { value: "solid" };
378
- export const ChartsCategorical5 = {
379
- value: "#C2185B",
380
- 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: {
381
1338
  appearance: {
382
1339
  dark: {
383
- value: "#ED1369"
1340
+ value: "rgba(0, 0, 0, 0)"
384
1341
  }
385
1342
  }
386
1343
  }
387
1344
  };
388
- export const ChartsCategorical5Stroke = {
389
- value: "transparent",
390
- 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: {
391
1355
  appearance: {
392
1356
  dark: {
393
- value: "transparent"
1357
+ value: "#C6B8F4"
394
1358
  }
395
1359
  }
396
1360
  }
397
1361
  };
398
- export const ChartsCategorical5Pattern = { value: "solid" };
399
- export const ChartsCategorical6 = {
400
- value: "#759E15",
401
- 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: {
402
1372
  appearance: {
403
1373
  dark: {
404
- value: "#8CC30B"
1374
+ value: "rgba(0, 0, 0, 0)"
405
1375
  }
406
1376
  }
407
1377
  }
408
1378
  };
409
- export const ChartsCategorical6Stroke = {
410
- value: "transparent",
411
- 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: {
412
1389
  appearance: {
413
1390
  dark: {
414
- value: "transparent"
1391
+ value: "#D949A9"
415
1392
  }
416
1393
  }
417
1394
  }
418
1395
  };
419
- export const ChartsCategorical6Pattern = { value: "solid" };
420
- export const ChartsCategorical7 = {
421
- value: "#AC6400",
422
- 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: {
423
1406
  appearance: {
424
1407
  dark: {
425
- value: "#B36800"
1408
+ value: "rgba(0, 0, 0, 0)"
426
1409
  }
427
1410
  }
428
1411
  }
429
1412
  };
430
- export const ChartsCategorical7Stroke = {
431
- value: "transparent",
432
- 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: {
433
1423
  appearance: {
434
1424
  dark: {
435
- value: "transparent"
1425
+ value: "#ED1369"
436
1426
  }
437
1427
  }
438
1428
  }
439
1429
  };
440
- export const ChartsCategorical7Pattern = { value: "solid" };
441
- export const ChartsCategorical8 = {
442
- value: "#EB7200",
443
- 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: {
444
1440
  appearance: {
445
1441
  dark: {
446
- value: "#FFA037"
1442
+ value: "rgba(0, 0, 0, 0)"
447
1443
  }
448
1444
  }
449
1445
  }
450
1446
  };
451
- export const ChartsCategorical8Stroke = {
452
- value: "transparent",
453
- 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: {
454
1457
  appearance: {
455
1458
  dark: {
456
- value: "transparent"
1459
+ value: "#8CC30B"
457
1460
  }
458
1461
  }
459
1462
  }
460
1463
  };
461
- export const ChartsCategorical8Pattern = { value: "solid" };
462
- export const ChartsCategorical9 = {
463
- value: "#D57A5C",
464
- 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: {
465
1474
  appearance: {
466
1475
  dark: {
467
- value: "#D99078"
1476
+ value: "rgba(0, 0, 0, 0)"
468
1477
  }
469
1478
  }
470
1479
  }
471
1480
  };
472
- export const ChartsCategorical9Stroke = {
473
- value: "transparent",
474
- 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: {
475
1491
  appearance: {
476
1492
  dark: {
477
- value: "transparent"
1493
+ value: "#B36800"
478
1494
  }
479
1495
  }
480
1496
  }
481
1497
  };
482
- export const ChartsCategorical9Pattern = { value: "solid" };
483
- export const ChartsStatusSuccess = {
484
- value: "#007A4D",
485
- 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: {
486
1508
  appearance: {
487
1509
  dark: {
488
- value: "#49CC93"
1510
+ value: "rgba(0, 0, 0, 0)"
489
1511
  }
490
1512
  }
491
1513
  }
492
1514
  };
493
- export const ChartsStatusSuccessStroke = {
494
- value: "transparent",
495
- 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: {
496
1525
  appearance: {
497
1526
  dark: {
498
- value: "transparent"
1527
+ value: "#FFA037"
499
1528
  }
500
1529
  }
501
1530
  }
502
1531
  };
503
- export const ChartsStatusSuccessPattern = { value: "solid" };
504
- export const ChartsStatusWarning = {
505
- value: "#ffbe00",
506
- 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: {
507
1542
  appearance: {
508
1543
  dark: {
509
- value: "#ffe278"
1544
+ value: "rgba(0, 0, 0, 0)"
510
1545
  }
511
1546
  }
512
1547
  }
513
1548
  };
514
- export const ChartsStatusWarningStroke = {
515
- value: "transparent",
516
- 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: {
517
1559
  appearance: {
518
1560
  dark: {
519
- value: "transparent"
1561
+ value: "#49CC93"
520
1562
  }
521
1563
  }
522
1564
  }
523
1565
  };
524
- export const ChartsStatusWarningPattern = { value: "solid" };
525
- export const ChartsStatusDanger = {
526
- value: "#e13212",
527
- 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: {
528
1576
  appearance: {
529
1577
  dark: {
530
- value: "#ff745f"
1578
+ value: "rgba(0, 0, 0, 0)"
531
1579
  }
532
1580
  }
533
1581
  }
534
1582
  };
535
- export const ChartsStatusDangerStroke = {
536
- value: "transparent",
537
- attributes: {
1583
+ /**
1584
+ * @type {TokenValue}
1585
+ */
1586
+ export const ChartStatusSuccessStrokeStyle = { value: "solid" };
1587
+ /**
1588
+ * @type {TokenWithAppearance}
1589
+ */
1590
+ export const ChartStatusWarningFillColor = {
1591
+ value: "#ffbe00",
1592
+ extensions: {
538
1593
  appearance: {
539
1594
  dark: {
540
- value: "transparent"
1595
+ value: "#ffe278"
541
1596
  }
542
1597
  }
543
1598
  }
544
1599
  };
545
- export const ChartsStatusDangerPattern = { value: "solid" };
546
- export const ChartsStatusNeutral = {
547
- value: "#ffffff",
548
- 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: {
549
1610
  appearance: {
550
1611
  dark: {
551
- value: "#141414"
1612
+ value: "rgba(0, 0, 0, 0)"
552
1613
  }
553
1614
  }
554
1615
  }
555
1616
  };
556
- export const ChartsStatusNeutralStroke = {
557
- value: "#8C9CA5",
558
- attributes: {
1617
+ /**
1618
+ * @type {TokenValue}
1619
+ */
1620
+ export const ChartStatusWarningStrokeStyle = { value: "solid" };
1621
+ /**
1622
+ * @type {TokenWithAppearance}
1623
+ */
1624
+ export const ChartStatusDangerFillColor = {
1625
+ value: "#e13212",
1626
+ extensions: {
559
1627
  appearance: {
560
1628
  dark: {
561
- value: "#B4C1C8"
1629
+ value: "#ff745f"
562
1630
  }
563
1631
  }
564
1632
  }
565
1633
  };
566
- export const ChartsStatusNeutralPattern = { value: "striped" };
567
- export const FocusRingColor = {
568
- value: "#0265DC",
569
- 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: {
570
1644
  appearance: {
571
1645
  dark: {
572
- value: "#78BBFA"
1646
+ value: "rgba(0, 0, 0, 0)"
573
1647
  }
574
1648
  }
575
1649
  }
576
1650
  };
577
- export const FocusRingColorDanger = {
578
- value: "#e13212",
579
- attributes: {
1651
+ /**
1652
+ * @type {TokenValue}
1653
+ */
1654
+ export const ChartStatusDangerStrokeStyle = { value: "solid" };
1655
+ /**
1656
+ * @type {TokenWithAppearance}
1657
+ */
1658
+ export const ChartStatusNeutralFillColor = {
1659
+ value: "#ffffff",
1660
+ extensions: {
580
1661
  appearance: {
581
1662
  dark: {
582
- value: "#ff745f"
1663
+ value: "#141414"
583
1664
  }
584
1665
  }
585
1666
  }
586
1667
  };
587
- export const FocusRingWidth = { value: "0.25rem" };
588
- export const ForegroundColor = {
589
- value: "#141414",
590
- attributes: {
1668
+ /**
1669
+ * @type {TokenWithAppearance}
1670
+ */
1671
+ export const ChartStatusNeutralStrokeColor = {
1672
+ value: "#8c9ca5",
1673
+ extensions: {
591
1674
  appearance: {
592
1675
  dark: {
593
- value: "#ffffff"
1676
+ value: "#B4C1C8"
594
1677
  }
595
1678
  }
596
1679
  }
597
1680
  };
598
- export const ForegroundColorSubdued = {
599
- value: "#737475",
600
- 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: {
601
1691
  appearance: {
602
1692
  dark: {
603
- value: "#bcbcbd"
1693
+ value: "#70b1ff"
604
1694
  }
605
1695
  }
606
1696
  }
607
1697
  };
608
- export const ForegroundColorPrimary = {
609
- value: "#0265DC",
610
- attributes: {
1698
+ /**
1699
+ * @type {TokenWithAppearance}
1700
+ */
1701
+ export const FocusRingColorDanger = {
1702
+ value: "#d62100",
1703
+ extensions: {
611
1704
  appearance: {
612
1705
  dark: {
613
- value: "#78BBFA"
1706
+ value: "#ff5b3d"
614
1707
  }
615
1708
  }
616
1709
  }
617
1710
  };
618
- export const ForegroundColorDanger = {
619
- value: "#e13212",
620
- attributes: {
1711
+ /**
1712
+ * @type {TokenValue}
1713
+ */
1714
+ export const FocusRingWidth = { value: "0.25rem" };
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: {
621
1725
  appearance: {
622
1726
  dark: {
623
- value: "#ff745f"
1727
+ value: "#ffffff"
624
1728
  }
625
1729
  }
626
1730
  }
627
1731
  };
628
- export const ForegroundColorInverted = {
629
- value: "#ffffff",
630
- attributes: {
1732
+ /**
1733
+ * @type {TokenWithAppearance}
1734
+ */
1735
+ export const ForegroundColorDefaultHover = {
1736
+ value: "#040404",
1737
+ extensions: {
631
1738
  appearance: {
632
1739
  dark: {
633
- value: "#141414"
1740
+ value: "#ffffff"
634
1741
  }
635
1742
  }
636
1743
  }
637
1744
  };
638
- export const ForegroundColorOnPrimary = {
639
- value: "#ffffff",
640
- attributes: {
1745
+ /**
1746
+ * @type {TokenWithAppearance}
1747
+ */
1748
+ export const ForegroundColorDefaultActive = {
1749
+ value: "#040404",
1750
+ extensions: {
641
1751
  appearance: {
642
1752
  dark: {
643
- value: "#141414"
1753
+ value: "#ffffff"
644
1754
  }
645
1755
  }
646
1756
  }
647
1757
  };
648
- export const ForegroundColorOnDanger = {
649
- value: "#ffffff",
650
- attributes: {
1758
+ /**
1759
+ * @type {TokenWithAppearance}
1760
+ */
1761
+ export const ForegroundColorSubdued = {
1762
+ value: "#707070",
1763
+ extensions: {
651
1764
  appearance: {
652
1765
  dark: {
653
- value: "#141414"
1766
+ value: "#c4c4c4"
654
1767
  }
655
1768
  }
656
1769
  }
657
1770
  };
658
- export const ForegroundColorOnDangerSubdued = {
659
- value: "#bf2a00",
660
- attributes: {
1771
+ /**
1772
+ * @type {TokenWithAppearance}
1773
+ */
1774
+ export const ForegroundColorSubduedHover = {
1775
+ value: "#707070",
1776
+ extensions: {
661
1777
  appearance: {
662
1778
  dark: {
663
- value: "#ffffff"
1779
+ value: "#c4c4c4"
664
1780
  }
665
1781
  }
666
1782
  }
667
1783
  };
668
- export const ForegroundColorOnWarning = {
669
- value: "#141414",
670
- attributes: {
1784
+ /**
1785
+ * @type {TokenWithAppearance}
1786
+ */
1787
+ export const ForegroundColorSubduedActive = {
1788
+ value: "#545454",
1789
+ extensions: {
671
1790
  appearance: {
672
1791
  dark: {
673
- value: "#141414"
1792
+ value: "#dfdfdf"
674
1793
  }
675
1794
  }
676
1795
  }
677
1796
  };
678
- export const ForegroundColorActivePrimary = {
679
- value: "#004491",
680
- attributes: {
1797
+ /**
1798
+ * @type {TokenWithAppearance}
1799
+ */
1800
+ export const ForegroundColorPrimary = {
1801
+ value: "#0265dc",
1802
+ extensions: {
681
1803
  appearance: {
682
1804
  dark: {
683
- value: "#B5DEFF"
1805
+ value: "#70b1ff"
684
1806
  }
685
1807
  }
686
1808
  }
687
1809
  };
688
- export const ForegroundColorActiveDanger = {
689
- value: "#bf2a00",
690
- attributes: {
1810
+ /**
1811
+ * @type {TokenWithAppearance}
1812
+ */
1813
+ export const ForegroundColorPrimaryHover = {
1814
+ value: "#1d4ca3",
1815
+ extensions: {
691
1816
  appearance: {
692
1817
  dark: {
693
- value: "#ff745f"
1818
+ value: "#9ecaff"
694
1819
  }
695
1820
  }
696
1821
  }
697
1822
  };
698
- export const ForegroundColorHoverPrimary = {
699
- value: "#004491",
700
- attributes: {
1823
+ /**
1824
+ * @type {TokenWithAppearance}
1825
+ */
1826
+ export const ForegroundColorPrimaryActive = {
1827
+ value: "#003472",
1828
+ extensions: {
701
1829
  appearance: {
702
1830
  dark: {
703
- value: "#B5DEFF"
1831
+ value: "#9ecaff"
704
1832
  }
705
1833
  }
706
1834
  }
707
1835
  };
708
- export const ForegroundColorHoverDanger = {
709
- value: "#bf2a00",
710
- attributes: {
1836
+ /**
1837
+ * @type {TokenWithAppearance}
1838
+ */
1839
+ export const ForegroundColorDanger = {
1840
+ value: "#d62100",
1841
+ extensions: {
711
1842
  appearance: {
712
1843
  dark: {
713
- value: "#ff745f"
1844
+ value: "#ff5b3d"
714
1845
  }
715
1846
  }
716
1847
  }
717
1848
  };
718
- export const OverlayColorActive = {
719
- value: "#14141429",
720
- attributes: {
1849
+ /**
1850
+ * @type {TokenWithAppearance}
1851
+ */
1852
+ export const ForegroundColorDangerHover = {
1853
+ value: "#a31900",
1854
+ extensions: {
721
1855
  appearance: {
722
1856
  dark: {
723
- value: "#ffffff29"
1857
+ value: "#ff8670"
724
1858
  }
725
1859
  }
726
1860
  }
727
1861
  };
728
- export const OverlayColorActivePrimary = {
729
- value: "#0265DC4D",
730
- attributes: {
1862
+ /**
1863
+ * @type {TokenWithAppearance}
1864
+ */
1865
+ export const ForegroundColorDangerActive = {
1866
+ value: "#731100",
1867
+ extensions: {
731
1868
  appearance: {
732
1869
  dark: {
733
- value: "#78BBFA40"
1870
+ value: "#ffac9e"
734
1871
  }
735
1872
  }
736
1873
  }
737
1874
  };
738
- export const OverlayColorActiveDanger = {
739
- value: "#e132124D",
740
- attributes: {
1875
+ /**
1876
+ * @type {TokenWithAppearance}
1877
+ */
1878
+ export const ForegroundColorInverted = {
1879
+ value: "#ffffff",
1880
+ extensions: {
741
1881
  appearance: {
742
1882
  dark: {
743
- value: "#f94d3240"
1883
+ value: "#1a1a1a"
744
1884
  }
745
1885
  }
746
1886
  }
747
1887
  };
748
- export const OverlayColorActiveOn = {
749
- value: "#14141429",
750
- attributes: {
1888
+ /**
1889
+ * @type {TokenWithAppearance}
1890
+ */
1891
+ export const ForegroundColorOnPrimary = {
1892
+ value: "#ffffff",
1893
+ extensions: {
751
1894
  appearance: {
752
1895
  dark: {
753
- value: "#14141429"
1896
+ value: "#1a1a1a"
754
1897
  }
755
1898
  }
756
1899
  }
757
1900
  };
758
- export const OverlayColorActiveOnPrimary = {
759
- value: "#14141466",
760
- attributes: {
1901
+ /**
1902
+ * @type {TokenWithAppearance}
1903
+ */
1904
+ export const ForegroundColorOnPrimaryHover = {
1905
+ value: "#ffffff",
1906
+ extensions: {
761
1907
  appearance: {
762
1908
  dark: {
763
- value: "#14141429"
1909
+ value: "#1a1a1a"
764
1910
  }
765
1911
  }
766
1912
  }
767
1913
  };
768
- export const OverlayColorActiveOnDanger = {
769
- value: "#14141466",
770
- attributes: {
1914
+ /**
1915
+ * @type {TokenWithAppearance}
1916
+ */
1917
+ export const ForegroundColorOnPrimaryActive = {
1918
+ value: "#ffffff",
1919
+ extensions: {
771
1920
  appearance: {
772
1921
  dark: {
773
- value: "#14141429"
1922
+ value: "#1a1a1a"
774
1923
  }
775
1924
  }
776
1925
  }
777
1926
  };
778
- export const OverlayColorHover = {
779
- value: "#14141414",
780
- attributes: {
1927
+ /**
1928
+ * @type {TokenWithAppearance}
1929
+ */
1930
+ export const ForegroundColorOnSuccess = {
1931
+ value: "#ffffff",
1932
+ extensions: {
781
1933
  appearance: {
782
1934
  dark: {
783
- value: "#ffffff14"
1935
+ value: "#1a1a1a"
784
1936
  }
785
1937
  }
786
1938
  }
787
1939
  };
788
- export const OverlayColorHoverPrimary = {
789
- value: "#0265DC1A",
790
- attributes: {
1940
+ /**
1941
+ * @type {TokenWithAppearance}
1942
+ */
1943
+ export const ForegroundColorOnDanger = {
1944
+ value: "#ffffff",
1945
+ extensions: {
791
1946
  appearance: {
792
1947
  dark: {
793
- value: "#78BBFA1A"
1948
+ value: "#1a1a1a"
794
1949
  }
795
1950
  }
796
1951
  }
797
1952
  };
798
- export const OverlayColorHoverDanger = {
799
- value: "#e132121A",
800
- attributes: {
1953
+ /**
1954
+ * @type {TokenWithAppearance}
1955
+ */
1956
+ export const ForegroundColorOnDangerSubdued = {
1957
+ value: "#a31900",
1958
+ extensions: {
801
1959
  appearance: {
802
1960
  dark: {
803
- value: "#f94d3226"
1961
+ value: "#ffffff"
804
1962
  }
805
1963
  }
806
1964
  }
807
1965
  };
808
- export const OverlayColorHoverOn = {
809
- value: "#14141414",
810
- attributes: {
1966
+ /**
1967
+ * @type {TokenWithAppearance}
1968
+ */
1969
+ export const ForegroundColorOnDangerSubduedHover = {
1970
+ value: "#731100",
1971
+ extensions: {
811
1972
  appearance: {
812
1973
  dark: {
813
- value: "#ffffff14"
1974
+ value: "#ffffff"
814
1975
  }
815
1976
  }
816
1977
  }
817
1978
  };
818
- export const OverlayColorHoverOnPrimary = {
819
- value: "#14141433",
820
- attributes: {
1979
+ /**
1980
+ * @type {TokenWithAppearance}
1981
+ */
1982
+ export const ForegroundColorOnDangerSubduedActive = {
1983
+ value: "#470b00",
1984
+ extensions: {
821
1985
  appearance: {
822
1986
  dark: {
823
- value: "#ffffff29"
1987
+ value: "#ffffff"
824
1988
  }
825
1989
  }
826
1990
  }
827
1991
  };
828
- export const OverlayColorHoverOnDanger = {
829
- value: "#14141433",
830
- attributes: {
1992
+ /**
1993
+ * @type {TokenWithAppearance}
1994
+ */
1995
+ export const ForegroundColorOnDangerHover = {
1996
+ value: "#ffffff",
1997
+ extensions: {
831
1998
  appearance: {
832
1999
  dark: {
833
- value: "#ffffff29"
2000
+ value: "#1a1a1a"
834
2001
  }
835
2002
  }
836
2003
  }
837
2004
  };
838
- export const ShadowColor = {
839
- value: "#14141414",
840
- attributes: {
2005
+ /**
2006
+ * @type {TokenWithAppearance}
2007
+ */
2008
+ export const ForegroundColorOnDangerActive = {
2009
+ value: "#ffffff",
2010
+ extensions: {
841
2011
  appearance: {
842
2012
  dark: {
843
- value: "#ffffff14"
2013
+ value: "#1a1a1a"
844
2014
  }
845
2015
  }
846
2016
  }
847
2017
  };
848
- export const ShadowSizeFlat = { value: "0rem 0rem 0rem" };
849
- export const ShadowSizeFloat = { value: "0rem 0.125rem 0.5rem" };
850
- export const ShadowSizeOverlay = { value: "0rem 0.5rem 1.5rem" };
851
- export const StatusColorInfo = {
852
- value: "#0265DC",
853
- attributes: {
2018
+ /**
2019
+ * @type {TokenWithAppearance}
2020
+ */
2021
+ export const ForegroundColorOnWarning = {
2022
+ value: "#1a1a1a",
2023
+ extensions: {
854
2024
  appearance: {
855
2025
  dark: {
856
- value: "#78BBFA"
2026
+ value: "#1a1a1a"
857
2027
  }
858
2028
  }
859
2029
  }
860
2030
  };
861
- export const StatusColorDanger = {
862
- value: "#e13212",
863
- 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: {
864
2037
  appearance: {
865
2038
  dark: {
866
- value: "#ff745f"
2039
+ value: "linear-gradient(90deg, var(--color-cyan-300, #45d8f2) 0%, var(--color-cyan-50, #daf7fc) 100%)"
867
2040
  }
868
2041
  }
869
2042
  }
870
2043
  };
871
- export const StatusColorSuccess = {
872
- value: "#007A4D",
873
- 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: {
874
2062
  appearance: {
875
2063
  dark: {
876
- value: "#49CC93"
2064
+ value: "#ffffff"
877
2065
  }
878
2066
  }
879
2067
  }
880
2068
  };
881
- export const StatusColorWarning = {
882
- value: "#ffbe00",
883
- attributes: {
2069
+ /**
2070
+ * @type {TokenWithAppearance}
2071
+ */
2072
+ export const ShadowColorStrong = {
2073
+ value: "#040404",
2074
+ extensions: {
884
2075
  appearance: {
885
2076
  dark: {
886
- value: "#ffe278"
2077
+ value: "#ffffff"
887
2078
  }
888
2079
  }
889
2080
  }
890
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
+ */
891
2097
  export const TypographyParagraphSizeXsmall = { value: "0.75rem" };
2098
+ /**
2099
+ * @type {TokenValue}
2100
+ */
892
2101
  export const TypographyParagraphSizeSmall = { value: "0.875rem" };
893
- export const TypographyParagraphSize = { value: "1rem" };
2102
+ /**
2103
+ * @type {TokenValue}
2104
+ */
2105
+ export const TypographyParagraphSizeDefault = { value: "1rem" };
2106
+ /**
2107
+ * @type {TokenValue}
2108
+ */
894
2109
  export const TypographyParagraphSizeLarge = { value: "1.25rem" };
2110
+ /**
2111
+ * @type {TokenValue}
2112
+ */
895
2113
  export const TypographyParagraphSizeXlarge = { value: "1.5rem" };
2114
+ /**
2115
+ * @type {TokenValue}
2116
+ */
896
2117
  export const TypographyParagraphFontWeight = { value: "400" };
2118
+ /**
2119
+ * @type {TokenValue}
2120
+ */
897
2121
  export const TypographyParagraphFontFamily = { value: "'Nunito Sans', sans-serif" };
2122
+ /**
2123
+ * @type {TokenValue}
2124
+ */
898
2125
  export const TypographyHeadingSizeXsmall = { value: "0.875rem" };
2126
+ /**
2127
+ * @type {TokenValue}
2128
+ */
899
2129
  export const TypographyHeadingSizeSmall = { value: "1rem" };
900
- export const TypographyHeadingSize = { value: "1.25rem" };
2130
+ /**
2131
+ * @type {TokenValue}
2132
+ */
2133
+ export const TypographyHeadingSizeDefault = { value: "1.25rem" };
2134
+ /**
2135
+ * @type {TokenValue}
2136
+ */
901
2137
  export const TypographyHeadingSizeLarge = { value: "1.5rem" };
2138
+ /**
2139
+ * @type {TokenValue}
2140
+ */
902
2141
  export const TypographyHeadingSizeXlarge = { value: "2rem" };
2142
+ /**
2143
+ * @type {TokenValue}
2144
+ */
903
2145
  export const TypographyHeadingFontWeight = { value: "700" };
2146
+ /**
2147
+ * @type {TokenValue}
2148
+ */
904
2149
  export const TypographyHeadingFontFamily = { value: "'Sofia Pro', SofiaPro, sans-serif" };
2150
+ /**
2151
+ * @type {TokenValue}
2152
+ */
905
2153
  export const TypographyLabelSizeXsmall = { value: "0.625rem" };
2154
+ /**
2155
+ * @type {TokenValue}
2156
+ */
906
2157
  export const TypographyLabelSizeSmall = { value: "0.75rem" };
907
- export const TypographyLabelSize = { value: "0.875rem" };
2158
+ /**
2159
+ * @type {TokenValue}
2160
+ */
2161
+ export const TypographyLabelSizeDefault = { value: "0.875rem" };
2162
+ /**
2163
+ * @type {TokenValue}
2164
+ */
908
2165
  export const TypographyLabelSizeLarge = { value: "1rem" };
2166
+ /**
2167
+ * @type {TokenValue}
2168
+ */
909
2169
  export const TypographyLabelSizeXlarge = { value: "1.25rem" };
2170
+ /**
2171
+ * @type {TokenValue}
2172
+ */
910
2173
  export const TypographyLabelFontWeight = { value: "600" };
2174
+ /**
2175
+ * @type {TokenValue}
2176
+ */
911
2177
  export const TypographyLabelFontFamily = { value: "'Nunito Sans', sans-serif" };