@servicetitan/hammer-token 0.0.0-rc-1.48.0-20251104214834 → 0.0.0-rc-3.0.0-20260127161418

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 (80) hide show
  1. package/CHANGELOG.md +37 -1
  2. package/README.md +222 -0
  3. package/build/web/core/component-variables.scss +176 -130
  4. package/build/web/core/component.d.ts +96 -0
  5. package/build/web/core/component.js +574 -252
  6. package/build/web/core/component.scss +94 -69
  7. package/build/web/core/css-utils/a2-border.css +39 -41
  8. package/build/web/core/css-utils/a2-color.css +367 -227
  9. package/build/web/core/css-utils/a2-font.css +0 -2
  10. package/build/web/core/css-utils/a2-spacing.css +0 -2
  11. package/build/web/core/css-utils/a2-utils.css +434 -292
  12. package/build/web/core/css-utils/border.css +39 -41
  13. package/build/web/core/css-utils/color.css +367 -227
  14. package/build/web/core/css-utils/font.css +0 -2
  15. package/build/web/core/css-utils/spacing.css +0 -2
  16. package/build/web/core/css-utils/utils.css +434 -292
  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 +130 -71
  20. package/build/web/core/primitive.d.ts +185 -0
  21. package/build/web/core/primitive.js +328 -72
  22. package/build/web/core/primitive.scss +183 -124
  23. package/build/web/core/semantic-variables.scss +295 -220
  24. package/build/web/core/semantic.d.ts +198 -0
  25. package/build/web/core/semantic.js +913 -341
  26. package/build/web/core/semantic.scss +196 -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 -496
  31. package/package.json +5 -4
  32. package/src/global/primitive/breakpoint.tokens.json +39 -0
  33. package/src/global/primitive/color.tokens.json +536 -0
  34. package/src/global/primitive/duration.tokens.json +32 -0
  35. package/src/global/primitive/font.tokens.json +103 -0
  36. package/src/global/primitive/radius.tokens.json +67 -0
  37. package/src/global/primitive/size.tokens.json +123 -0
  38. package/src/global/primitive/transition.tokens.json +20 -0
  39. package/src/theme/core/background.tokens.json +1058 -0
  40. package/src/theme/core/border.tokens.json +148 -0
  41. package/src/theme/core/charts.tokens.json +802 -0
  42. package/src/theme/core/component/alert.tokens.json +180 -0
  43. package/src/theme/core/component/announcement.tokens.json +186 -0
  44. package/src/theme/core/component/avatar.tokens.json +132 -0
  45. package/src/theme/core/component/badge.tokens.json +40 -0
  46. package/src/theme/core/component/button.tokens.json +752 -0
  47. package/src/theme/core/component/checkbox.tokens.json +292 -0
  48. package/src/theme/core/focus.tokens.json +48 -0
  49. package/src/theme/core/foreground.tokens.json +306 -0
  50. package/src/theme/core/shadow.tokens.json +43 -0
  51. package/src/theme/core/status.tokens.json +70 -0
  52. package/src/theme/core/typography.tokens.json +100 -0
  53. package/src/utils/copy-css-utils-cli.js +13 -0
  54. package/src/utils/css-utils-format-utils.js +98 -1
  55. package/src/utils/sd-build-configs.js +372 -0
  56. package/src/utils/sd-formats.js +752 -0
  57. package/src/utils/sd-transforms.js +126 -0
  58. package/src/utils/token-helpers.js +555 -0
  59. package/tsconfig.json +18 -0
  60. package/.turbo/turbo-build.log +0 -37
  61. package/build/web/core/raw.js +0 -234
  62. package/src/global/primitive/breakpoint.js +0 -19
  63. package/src/global/primitive/color.js +0 -231
  64. package/src/global/primitive/duration.js +0 -16
  65. package/src/global/primitive/font.js +0 -60
  66. package/src/global/primitive/radius.js +0 -31
  67. package/src/global/primitive/size.js +0 -55
  68. package/src/global/primitive/transition.js +0 -16
  69. package/src/theme/core/background.js +0 -170
  70. package/src/theme/core/border.js +0 -103
  71. package/src/theme/core/charts.js +0 -464
  72. package/src/theme/core/component/button.js +0 -708
  73. package/src/theme/core/component/checkbox.js +0 -405
  74. package/src/theme/core/focus.js +0 -35
  75. package/src/theme/core/foreground.js +0 -148
  76. package/src/theme/core/overlay.js +0 -137
  77. package/src/theme/core/shadow.js +0 -29
  78. package/src/theme/core/status.js +0 -49
  79. package/src/theme/core/typography.js +0 -82
  80. package/type/types.ts +0 -344
@@ -1,136 +1,643 @@
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
+ /** @type {TokenWithAppearance} */
16
+ export const StatusColorInfo = {
17
+ value: "#1a82ff",
18
+ extensions: {
19
+ appearance: {
20
+ dark: {
21
+ value: "#cce3ff"
22
+ }
23
+ }
24
+ }
25
+ };
26
+ /** @type {TokenWithAppearance} */
27
+ export const StatusColorDanger = {
28
+ value: "#ff3914",
29
+ extensions: {
30
+ appearance: {
31
+ dark: {
32
+ value: "#ffd4cc"
33
+ }
34
+ }
35
+ }
36
+ };
37
+ /** @type {TokenWithAppearance} */
38
+ export const StatusColorSuccess = {
39
+ value: "#09a569",
40
+ extensions: {
41
+ appearance: {
42
+ dark: {
43
+ value: "#b8f5dd"
44
+ }
45
+ }
46
+ }
47
+ };
48
+ /** @type {TokenWithAppearance} */
49
+ export const StatusColorWarning = {
50
+ value: "#d6a000",
51
+ extensions: {
52
+ appearance: {
53
+ dark: {
54
+ value: "#fff0c2"
55
+ }
56
+ }
57
+ }
58
+ };
59
+ /** @type {TokenWithAppearance} */
60
+ export const BackgroundColorDefault = {
2
61
  value: "#ffffff",
3
- attributes: {
62
+ extensions: {
4
63
  appearance: {
5
64
  dark: {
6
- value: "#141414"
65
+ value: "#8b8b8b"
66
+ }
67
+ }
68
+ }
69
+ };
70
+ /** @type {TokenWithAppearance} */
71
+ export const BackgroundColorDefaultHover = {
72
+ value: "#fcfcfc",
73
+ extensions: {
74
+ appearance: {
75
+ dark: {
76
+ value: "#f6f6f6"
77
+ }
78
+ }
79
+ }
80
+ };
81
+ /** @type {TokenWithAppearance} */
82
+ export const BackgroundColorDefaultActive = {
83
+ value: "#f6f6f6",
84
+ extensions: {
85
+ appearance: {
86
+ dark: {
87
+ value: "#fcfcfc"
88
+ }
89
+ }
90
+ }
91
+ };
92
+ /** @type {TokenWithAppearance} */
93
+ export const BackgroundColorSecondary = {
94
+ value: "#0404040F",
95
+ extensions: {
96
+ appearance: {
97
+ dark: {
98
+ value: "#ffffff0F"
99
+ }
100
+ }
101
+ }
102
+ };
103
+ /** @type {TokenWithAppearance} */
104
+ export const BackgroundColorSecondaryHover = {
105
+ value: "#04040414",
106
+ extensions: {
107
+ appearance: {
108
+ dark: {
109
+ value: "#ffffff14"
110
+ }
111
+ }
112
+ }
113
+ };
114
+ /** @type {TokenWithAppearance} */
115
+ export const BackgroundColorSecondaryActive = {
116
+ value: "#04040429",
117
+ extensions: {
118
+ appearance: {
119
+ dark: {
120
+ value: "#ffffff29"
121
+ }
122
+ }
123
+ }
124
+ };
125
+ /** @type {TokenWithAppearance} */
126
+ export const BackgroundColorSecondaryStrong = {
127
+ value: "#1a1a1a0F",
128
+ extensions: {
129
+ appearance: {
130
+ dark: {
131
+ value: "#ffffff0F"
7
132
  }
8
133
  }
9
134
  }
10
135
  };
136
+ /** @type {TokenWithAppearance} */
137
+ export const BackgroundColorSecondaryStrongHover = {
138
+ value: "#1a1a1a14",
139
+ extensions: {
140
+ appearance: {
141
+ dark: {
142
+ value: "#ffffff14"
143
+ }
144
+ }
145
+ }
146
+ };
147
+ /** @type {TokenWithAppearance} */
148
+ export const BackgroundColorSecondaryStrongActive = {
149
+ value: "#1a1a1a29",
150
+ extensions: {
151
+ appearance: {
152
+ dark: {
153
+ value: "#ffffff29"
154
+ }
155
+ }
156
+ }
157
+ };
158
+ /** @type {TokenValue} */
159
+ export const BackgroundColorTransparentDefault = { value: "rgba(0, 0, 0, 0)" };
160
+ /** @type {TokenWithAppearance} */
161
+ export const BackgroundColorTransparentDefaultHover = {
162
+ value: "#8b8b8b14",
163
+ extensions: {
164
+ appearance: {
165
+ dark: {
166
+ value: "#ffffff14"
167
+ }
168
+ }
169
+ }
170
+ };
171
+ /** @type {TokenWithAppearance} */
172
+ export const BackgroundColorTransparentDefaultActive = {
173
+ value: "#8b8b8b29",
174
+ extensions: {
175
+ appearance: {
176
+ dark: {
177
+ value: "#ffffff29"
178
+ }
179
+ }
180
+ }
181
+ };
182
+ /** @type {TokenValue} */
183
+ export const BackgroundColorTransparentPrimary = { value: "rgba(0, 0, 0, 0)" };
184
+ /** @type {TokenWithAppearance} */
185
+ export const BackgroundColorTransparentPrimaryHover = {
186
+ value: "#1a82ff1A",
187
+ extensions: {
188
+ appearance: {
189
+ dark: {
190
+ value: "#70b1ff1A"
191
+ }
192
+ }
193
+ }
194
+ };
195
+ /** @type {TokenWithAppearance} */
196
+ export const BackgroundColorTransparentPrimaryActive = {
197
+ value: "#1a82ff4D",
198
+ extensions: {
199
+ appearance: {
200
+ dark: {
201
+ value: "#70b1ff40"
202
+ }
203
+ }
204
+ }
205
+ };
206
+ /** @type {TokenValue} */
207
+ export const BackgroundColorTransparentDanger = { value: "rgba(0, 0, 0, 0)" };
208
+ /** @type {TokenWithAppearance} */
209
+ export const BackgroundColorTransparentDangerHover = {
210
+ value: "#ff39141A",
211
+ extensions: {
212
+ appearance: {
213
+ dark: {
214
+ value: "#ff89741A"
215
+ }
216
+ }
217
+ }
218
+ };
219
+ /** @type {TokenWithAppearance} */
220
+ export const BackgroundColorTransparentDangerActive = {
221
+ value: "#ff39144D",
222
+ extensions: {
223
+ appearance: {
224
+ dark: {
225
+ value: "#ff897440"
226
+ }
227
+ }
228
+ }
229
+ };
230
+ /** @type {TokenWithAppearance} */
11
231
  export const BackgroundColorStrong = {
12
- value: "#f7f7f7",
13
- attributes: {
232
+ value: "#f6f6f6",
233
+ extensions: {
14
234
  appearance: {
15
235
  dark: {
16
- value: "#2d2e31"
236
+ value: "#a8a8a8"
17
237
  }
18
238
  }
19
239
  }
20
240
  };
21
- export const BackgroundColorStronger = {
241
+ /** @type {TokenWithAppearance} */
242
+ export const BackgroundColorStrongHover = {
22
243
  value: "#eeeeee",
23
- attributes: {
244
+ extensions: {
24
245
  appearance: {
25
246
  dark: {
26
- value: "#444445"
247
+ value: "#1a1a1a"
27
248
  }
28
249
  }
29
250
  }
30
251
  };
252
+ /** @type {TokenWithAppearance} */
253
+ export const BackgroundColorStrongActive = {
254
+ value: "#ebebeb",
255
+ extensions: {
256
+ appearance: {
257
+ dark: {
258
+ value: "#292929"
259
+ }
260
+ }
261
+ }
262
+ };
263
+ /** @type {TokenWithAppearance} */
264
+ export const BackgroundColorStronger = {
265
+ value: "#e8e8e8",
266
+ extensions: {
267
+ appearance: {
268
+ dark: {
269
+ value: "#292929"
270
+ }
271
+ }
272
+ }
273
+ };
274
+ /** @type {TokenWithAppearance} */
275
+ export const BackgroundColorStrongerHover = {
276
+ value: "#e2e2e2",
277
+ extensions: {
278
+ appearance: {
279
+ dark: {
280
+ value: "#404040"
281
+ }
282
+ }
283
+ }
284
+ };
285
+ /** @type {TokenWithAppearance} */
286
+ export const BackgroundColorStrongerActive = {
287
+ value: "#dfdfdf",
288
+ extensions: {
289
+ appearance: {
290
+ dark: {
291
+ value: "#545454"
292
+ }
293
+ }
294
+ }
295
+ };
296
+ /** @type {TokenWithAppearance} */
31
297
  export const BackgroundColorStrongest = {
32
- value: "#bcbcbd",
33
- attributes: {
298
+ value: "#e8e8e8",
299
+ extensions: {
300
+ appearance: {
301
+ dark: {
302
+ value: "#e2e2e2"
303
+ }
304
+ }
305
+ }
306
+ };
307
+ /** @type {TokenWithAppearance} */
308
+ export const BackgroundColorStrongestHover = {
309
+ value: "#e2e2e2",
310
+ extensions: {
34
311
  appearance: {
35
312
  dark: {
36
- value: "#737475"
313
+ value: "#fcfcfc"
37
314
  }
38
315
  }
39
316
  }
40
317
  };
318
+ /** @type {TokenWithAppearance} */
319
+ export const BackgroundColorStrongestActive = {
320
+ value: "#dfdfdf",
321
+ extensions: {
322
+ appearance: {
323
+ dark: {
324
+ value: "#1a1a1a"
325
+ }
326
+ }
327
+ }
328
+ };
329
+ /** @type {TokenWithAppearance} */
41
330
  export const BackgroundColorPrimary = {
42
- value: "#0265DC",
43
- attributes: {
331
+ value: "#1a82ff",
332
+ extensions: {
44
333
  appearance: {
45
334
  dark: {
46
- value: "#78BBFA"
335
+ value: "#70b1ff"
47
336
  }
48
337
  }
49
338
  }
50
339
  };
340
+ /** @type {TokenWithAppearance} */
341
+ export const BackgroundColorPrimaryHover = {
342
+ value: "#0065de",
343
+ extensions: {
344
+ appearance: {
345
+ dark: {
346
+ value: "#9ecaff"
347
+ }
348
+ }
349
+ }
350
+ };
351
+ /** @type {TokenWithAppearance} */
352
+ export const BackgroundColorPrimaryActive = {
353
+ value: "#004da9",
354
+ extensions: {
355
+ appearance: {
356
+ dark: {
357
+ value: "#cce3ff"
358
+ }
359
+ }
360
+ }
361
+ };
362
+ /** @type {TokenWithAppearance} */
51
363
  export const BackgroundColorPrimarySubdued = {
52
- value: "#E0F2FF",
53
- attributes: {
364
+ value: "#cce3ff",
365
+ extensions: {
366
+ appearance: {
367
+ dark: {
368
+ value: "#70b1ff33"
369
+ }
370
+ }
371
+ }
372
+ };
373
+ /** @type {TokenWithAppearance} */
374
+ export const BackgroundColorPrimarySubduedHover = {
375
+ value: "#9ecaff",
376
+ extensions: {
377
+ appearance: {
378
+ dark: {
379
+ value: "#003472"
380
+ }
381
+ }
382
+ }
383
+ };
384
+ /** @type {TokenWithAppearance} */
385
+ export const BackgroundColorPrimarySubduedActive = {
386
+ value: "#70b1ff",
387
+ extensions: {
54
388
  appearance: {
55
389
  dark: {
56
- value: "#78BBFA33"
390
+ value: "#004da9"
57
391
  }
58
392
  }
59
393
  }
60
394
  };
395
+ /** @type {TokenWithAppearance} */
61
396
  export const BackgroundColorSuccess = {
62
- value: "#007A4D",
63
- attributes: {
397
+ value: "#09a569",
398
+ extensions: {
64
399
  appearance: {
65
400
  dark: {
66
- value: "#49CC93"
401
+ value: "#09a569"
67
402
  }
68
403
  }
69
404
  }
70
405
  };
406
+ /** @type {TokenWithAppearance} */
407
+ export const BackgroundColorSuccessHover = {
408
+ value: "#05613e",
409
+ extensions: {
410
+ appearance: {
411
+ dark: {
412
+ value: "#b8f5dd"
413
+ }
414
+ }
415
+ }
416
+ };
417
+ /** @type {TokenWithAppearance} */
418
+ export const BackgroundColorSuccessActive = {
419
+ value: "#05613e",
420
+ extensions: {
421
+ appearance: {
422
+ dark: {
423
+ value: "#b8f5dd"
424
+ }
425
+ }
426
+ }
427
+ };
428
+ /** @type {TokenWithAppearance} */
71
429
  export const BackgroundColorSuccessSubdued = {
72
- value: "#CEF8E0",
73
- attributes: {
430
+ value: "#b8f5dd",
431
+ extensions: {
432
+ appearance: {
433
+ dark: {
434
+ value: "#3be3a233"
435
+ }
436
+ }
437
+ }
438
+ };
439
+ /** @type {TokenWithAppearance} */
440
+ export const BackgroundColorSuccessSubduedHover = {
441
+ value: "#05613e",
442
+ extensions: {
443
+ appearance: {
444
+ dark: {
445
+ value: "#b8f5dd"
446
+ }
447
+ }
448
+ }
449
+ };
450
+ /** @type {TokenWithAppearance} */
451
+ export const BackgroundColorSuccessSubduedActive = {
452
+ value: "#05613e",
453
+ extensions: {
74
454
  appearance: {
75
455
  dark: {
76
- value: "#49CC9333"
456
+ value: "#b8f5dd"
77
457
  }
78
458
  }
79
459
  }
80
460
  };
461
+ /** @type {TokenWithAppearance} */
81
462
  export const BackgroundColorDanger = {
82
- value: "#e13212",
83
- attributes: {
463
+ value: "#ff3914",
464
+ extensions: {
84
465
  appearance: {
85
466
  dark: {
86
- value: "#ff745f"
467
+ value: "#ff3914"
468
+ }
469
+ }
470
+ }
471
+ };
472
+ /** @type {TokenWithAppearance} */
473
+ export const BackgroundColorDangerHover = {
474
+ value: "#d62100",
475
+ extensions: {
476
+ appearance: {
477
+ dark: {
478
+ value: "#ffac9e"
479
+ }
480
+ }
481
+ }
482
+ };
483
+ /** @type {TokenWithAppearance} */
484
+ export const BackgroundColorDangerActive = {
485
+ value: "#a31900",
486
+ extensions: {
487
+ appearance: {
488
+ dark: {
489
+ value: "#ffd4cc"
87
490
  }
88
491
  }
89
492
  }
90
493
  };
494
+ /** @type {TokenWithAppearance} */
91
495
  export const BackgroundColorDangerSubdued = {
92
- value: "#ffece9",
93
- attributes: {
496
+ value: "#ffd4cc",
497
+ extensions: {
94
498
  appearance: {
95
499
  dark: {
96
- value: "#ff745f33"
500
+ value: "#ff897433"
97
501
  }
98
502
  }
99
503
  }
100
504
  };
505
+ /** @type {TokenWithAppearance} */
506
+ export const BackgroundColorDangerSubduedHover = {
507
+ value: "#ffac9e",
508
+ extensions: {
509
+ appearance: {
510
+ dark: {
511
+ value: "#d62100"
512
+ }
513
+ }
514
+ }
515
+ };
516
+ /** @type {TokenWithAppearance} */
517
+ export const BackgroundColorDangerSubduedActive = {
518
+ value: "#ff8974",
519
+ extensions: {
520
+ appearance: {
521
+ dark: {
522
+ value: "#731100"
523
+ }
524
+ }
525
+ }
526
+ };
527
+ /** @type {TokenWithAppearance} */
101
528
  export const BackgroundColorWarning = {
102
- value: "#ffbe00",
103
- attributes: {
529
+ value: "#d6a000",
530
+ extensions: {
104
531
  appearance: {
105
532
  dark: {
106
- value: "#ffe278"
533
+ value: "#d6a000"
534
+ }
535
+ }
536
+ }
537
+ };
538
+ /** @type {TokenWithAppearance} */
539
+ export const BackgroundColorWarningHover = {
540
+ value: "#a87d00",
541
+ extensions: {
542
+ appearance: {
543
+ dark: {
544
+ value: "#fff0c2"
545
+ }
546
+ }
547
+ }
548
+ };
549
+ /** @type {TokenWithAppearance} */
550
+ export const BackgroundColorWarningActive = {
551
+ value: "#a87d00",
552
+ extensions: {
553
+ appearance: {
554
+ dark: {
555
+ value: "#fff0c2"
556
+ }
557
+ }
558
+ }
559
+ };
560
+ /** @type {TokenWithAppearance} */
561
+ export const BackgroundColorWarningSubdued = {
562
+ value: "#fff0c2",
563
+ extensions: {
564
+ appearance: {
565
+ dark: {
566
+ value: "#ffcf4233"
567
+ }
568
+ }
569
+ }
570
+ };
571
+ /** @type {TokenWithAppearance} */
572
+ export const BackgroundColorWarningSubduedHover = {
573
+ value: "#a87d00",
574
+ extensions: {
575
+ appearance: {
576
+ dark: {
577
+ value: "#fff0c2"
107
578
  }
108
579
  }
109
580
  }
110
581
  };
582
+ /** @type {TokenWithAppearance} */
583
+ export const BackgroundColorWarningSubduedActive = {
584
+ value: "#a87d00",
585
+ extensions: {
586
+ appearance: {
587
+ dark: {
588
+ value: "#fff0c2"
589
+ }
590
+ }
591
+ }
592
+ };
593
+ /** @type {TokenWithAppearance} */
111
594
  export const BackgroundColorDisabled = {
112
- value: "#606162",
113
- attributes: {
595
+ value: "#dfdfdf",
596
+ extensions: {
114
597
  appearance: {
115
598
  dark: {
116
- value: "#606162"
599
+ value: "#dfdfdf"
117
600
  }
118
601
  }
119
602
  }
120
603
  };
604
+ /** @type {TokenWithAppearance} */
121
605
  export const BackgroundColorInverted = {
122
- value: "#2d2e31",
123
- attributes: {
606
+ value: "#a8a8a8",
607
+ extensions: {
608
+ appearance: {
609
+ dark: {
610
+ value: "#f9f9f9"
611
+ }
612
+ }
613
+ }
614
+ };
615
+ /** @type {TokenWithAppearance} */
616
+ export const BackgroundColorInvertedHover = {
617
+ value: "#a8a8a8",
618
+ extensions: {
124
619
  appearance: {
125
620
  dark: {
126
- value: "#fafafa"
621
+ value: "#f9f9f9"
127
622
  }
128
623
  }
129
624
  }
130
625
  };
626
+ /** @type {TokenWithAppearance} */
627
+ export const BackgroundColorInvertedActive = {
628
+ value: "#a8a8a8",
629
+ extensions: {
630
+ appearance: {
631
+ dark: {
632
+ value: "#f9f9f9"
633
+ }
634
+ }
635
+ }
636
+ };
637
+ /** @type {TokenWithAppearance} */
131
638
  export const BackgroundColorInvertedStrong = {
132
- value: "#141414",
133
- attributes: {
639
+ value: "#8b8b8b",
640
+ extensions: {
134
641
  appearance: {
135
642
  dark: {
136
643
  value: "#ffffff"
@@ -138,78 +645,116 @@ export const BackgroundColorInvertedStrong = {
138
645
  }
139
646
  }
140
647
  };
141
- export const BorderRadiusNone = { value: "0" };
648
+ /** @type {TokenWithAppearance} */
649
+ export const BackgroundColorInvertedStrongHover = {
650
+ value: "#a8a8a8",
651
+ extensions: {
652
+ appearance: {
653
+ dark: {
654
+ value: "#f9f9f9"
655
+ }
656
+ }
657
+ }
658
+ };
659
+ /** @type {TokenWithAppearance} */
660
+ export const BackgroundColorInvertedStrongActive = {
661
+ value: "#a8a8a8",
662
+ extensions: {
663
+ appearance: {
664
+ dark: {
665
+ value: "#f9f9f9"
666
+ }
667
+ }
668
+ }
669
+ };
670
+ /** @type {TokenValue} */
671
+ export const BorderRadiusNone = { value: "0rem" };
672
+ /** @type {TokenValue} */
142
673
  export const BorderRadiusSmall = { value: "0.1875rem" };
674
+ /** @type {TokenValue} */
143
675
  export const BorderRadiusMedium = { value: "0.375rem" };
676
+ /** @type {TokenValue} */
144
677
  export const BorderRadiusLarge = { value: "0.75rem" };
678
+ /** @type {TokenValue} */
145
679
  export const BorderRadiusXlarge = { value: "1.5rem" };
680
+ /** @type {TokenValue} */
146
681
  export const BorderRadiusCircular = { value: "100%" };
682
+ /** @type {TokenValue} */
147
683
  export const BorderWidthNone = { value: "0rem" };
148
- export const BorderWidth = { value: "0.0625rem" };
684
+ /** @type {TokenValue} */
685
+ export const BorderWidthDefault = { value: "0.0625rem" };
686
+ /** @type {TokenValue} */
149
687
  export const BorderWidthStrong = { value: "0.125rem" };
150
- export const BorderColor = {
151
- value: "#949596",
152
- attributes: {
688
+ /** @type {TokenWithAppearance} */
689
+ export const BorderColorDefault = {
690
+ value: "#e5e5e5",
691
+ extensions: {
153
692
  appearance: {
154
693
  dark: {
155
- value: "#606162"
694
+ value: "#dfdfdf"
156
695
  }
157
696
  }
158
697
  }
159
698
  };
699
+ /** @type {TokenWithAppearance} */
160
700
  export const BorderColorSubdued = {
161
- value: "#dfe0e1",
162
- attributes: {
701
+ value: "#ebebeb",
702
+ extensions: {
163
703
  appearance: {
164
704
  dark: {
165
- value: "#444445"
705
+ value: "#c4c4c4"
166
706
  }
167
707
  }
168
708
  }
169
709
  };
710
+ /** @type {TokenWithAppearance} */
170
711
  export const BorderColorStrong = {
171
- value: "#444445",
172
- attributes: {
712
+ value: "#c4c4c4",
713
+ extensions: {
173
714
  appearance: {
174
715
  dark: {
175
- value: "#dfe0e1"
716
+ value: "#ebebeb"
176
717
  }
177
718
  }
178
719
  }
179
720
  };
721
+ /** @type {TokenWithAppearance} */
180
722
  export const BorderColorPrimary = {
181
- value: "#0265DC",
182
- attributes: {
723
+ value: "#1a82ff",
724
+ extensions: {
183
725
  appearance: {
184
726
  dark: {
185
- value: "#78BBFA"
727
+ value: "#1a82ff"
186
728
  }
187
729
  }
188
730
  }
189
731
  };
732
+ /** @type {TokenWithAppearance} */
190
733
  export const BorderColorSuccess = {
191
- value: "#007A4D",
192
- attributes: {
734
+ value: "#09a569",
735
+ extensions: {
193
736
  appearance: {
194
737
  dark: {
195
- value: "#49CC93"
738
+ value: "#09a569"
196
739
  }
197
740
  }
198
741
  }
199
742
  };
743
+ /** @type {TokenWithAppearance} */
200
744
  export const BorderColorDanger = {
201
- value: "#e13212",
202
- attributes: {
745
+ value: "#ff3914",
746
+ extensions: {
203
747
  appearance: {
204
748
  dark: {
205
- value: "#ff745f"
749
+ value: "#ff3914"
206
750
  }
207
751
  }
208
752
  }
209
753
  };
754
+ /** @type {TokenWithAppearance} */
210
755
  export const ChartsMonochrome01Color = {
211
- value: "#3892F3",
212
- attributes: {
756
+ value: "#3892f3",
757
+ extensions: {
213
758
  appearance: {
214
759
  dark: {
215
760
  value: "#8AC3FF"
@@ -217,9 +762,10 @@ export const ChartsMonochrome01Color = {
217
762
  }
218
763
  }
219
764
  };
220
- export const ChartsMonochrome01Stroke = {
221
- value: "transparent",
222
- attributes: {
765
+ /** @type {TokenWithAppearance} */
766
+ export const ChartsMonochrome01StrokeColor = {
767
+ value: "rgba(0, 0, 0, 0)",
768
+ extensions: {
223
769
  appearance: {
224
770
  dark: {
225
771
  value: "transparent"
@@ -227,10 +773,14 @@ export const ChartsMonochrome01Stroke = {
227
773
  }
228
774
  }
229
775
  };
776
+ /** @type {TokenValue} */
777
+ export const ChartsMonochrome01StrokeStyle = { value: "solid" };
778
+ /** @type {TokenValue} */
230
779
  export const ChartsMonochrome01Pattern = { value: "solid" };
780
+ /** @type {TokenWithAppearance} */
231
781
  export const ChartsMonochrome02Color = {
232
782
  value: "#08389c",
233
- attributes: {
783
+ extensions: {
234
784
  appearance: {
235
785
  dark: {
236
786
  value: "#3476FF"
@@ -238,9 +788,10 @@ export const ChartsMonochrome02Color = {
238
788
  }
239
789
  }
240
790
  };
241
- export const ChartsMonochrome02Stroke = {
242
- value: "transparent",
243
- attributes: {
791
+ /** @type {TokenWithAppearance} */
792
+ export const ChartsMonochrome02StrokeColor = {
793
+ value: "rgba(0, 0, 0, 0)",
794
+ extensions: {
244
795
  appearance: {
245
796
  dark: {
246
797
  value: "transparent"
@@ -248,10 +799,14 @@ export const ChartsMonochrome02Stroke = {
248
799
  }
249
800
  }
250
801
  };
802
+ /** @type {TokenValue} */
803
+ export const ChartsMonochrome02StrokeStyle = { value: "solid" };
804
+ /** @type {TokenValue} */
251
805
  export const ChartsMonochrome02Pattern = { value: "solid" };
806
+ /** @type {TokenWithAppearance} */
252
807
  export const ChartsMonochrome03Color = {
253
- value: "#F2F9FF",
254
- attributes: {
808
+ value: "#f2f9ff",
809
+ extensions: {
255
810
  appearance: {
256
811
  dark: {
257
812
  value: "#141414"
@@ -259,9 +814,10 @@ export const ChartsMonochrome03Color = {
259
814
  }
260
815
  }
261
816
  };
262
- export const ChartsMonochrome03Stroke = {
263
- value: "#3892F3",
264
- attributes: {
817
+ /** @type {TokenWithAppearance} */
818
+ export const ChartsMonochrome03StrokeColor = {
819
+ value: "#3892f3",
820
+ extensions: {
265
821
  appearance: {
266
822
  dark: {
267
823
  value: "#8AC3FF"
@@ -269,10 +825,14 @@ export const ChartsMonochrome03Stroke = {
269
825
  }
270
826
  }
271
827
  };
828
+ /** @type {TokenValue} */
829
+ export const ChartsMonochrome03StrokeStyle = { value: "solid" };
830
+ /** @type {TokenValue} */
272
831
  export const ChartsMonochrome03Pattern = { value: "striped" };
832
+ /** @type {TokenWithAppearance} */
273
833
  export const ChartsMonochrome04Color = {
274
- value: "#F2F9FF",
275
- attributes: {
834
+ value: "#f2f9ff",
835
+ extensions: {
276
836
  appearance: {
277
837
  dark: {
278
838
  value: "#F2F9FF"
@@ -280,9 +840,10 @@ export const ChartsMonochrome04Color = {
280
840
  }
281
841
  }
282
842
  };
283
- export const ChartsMonochrome04Stroke = {
284
- value: "#3892F3",
285
- attributes: {
843
+ /** @type {TokenWithAppearance} */
844
+ export const ChartsMonochrome04StrokeColor = {
845
+ value: "#3892f3",
846
+ extensions: {
286
847
  appearance: {
287
848
  dark: {
288
849
  value: "#8AC3FF"
@@ -290,10 +851,14 @@ export const ChartsMonochrome04Stroke = {
290
851
  }
291
852
  }
292
853
  };
854
+ /** @type {TokenValue} */
855
+ export const ChartsMonochrome04StrokeStyle = { value: "solid" };
856
+ /** @type {TokenValue} */
293
857
  export const ChartsMonochrome04Pattern = { value: "solid" };
858
+ /** @type {TokenWithAppearance} */
294
859
  export const ChartsCategorical10Color = {
295
- value: "#D57A5C",
296
- attributes: {
860
+ value: "#d57a5c",
861
+ extensions: {
297
862
  appearance: {
298
863
  dark: {
299
864
  value: "#D99078"
@@ -301,9 +866,10 @@ export const ChartsCategorical10Color = {
301
866
  }
302
867
  }
303
868
  };
304
- export const ChartsCategorical10Stroke = {
305
- value: "transparent",
306
- attributes: {
869
+ /** @type {TokenWithAppearance} */
870
+ export const ChartsCategorical10StrokeColor = {
871
+ value: "rgba(0, 0, 0, 0)",
872
+ extensions: {
307
873
  appearance: {
308
874
  dark: {
309
875
  value: "transparent"
@@ -311,10 +877,14 @@ export const ChartsCategorical10Stroke = {
311
877
  }
312
878
  }
313
879
  };
880
+ /** @type {TokenValue} */
881
+ export const ChartsCategorical10StrokeStyle = { value: "solid" };
882
+ /** @type {TokenValue} */
314
883
  export const ChartsCategorical10Pattern = { value: "solid" };
884
+ /** @type {TokenWithAppearance} */
315
885
  export const ChartsCategorical01Color = {
316
- value: "#3892F3",
317
- attributes: {
886
+ value: "#3892f3",
887
+ extensions: {
318
888
  appearance: {
319
889
  dark: {
320
890
  value: "#3892F3"
@@ -322,9 +892,10 @@ export const ChartsCategorical01Color = {
322
892
  }
323
893
  }
324
894
  };
325
- export const ChartsCategorical01Stroke = {
326
- value: "transparent",
327
- attributes: {
895
+ /** @type {TokenWithAppearance} */
896
+ export const ChartsCategorical01StrokeColor = {
897
+ value: "rgba(0, 0, 0, 0)",
898
+ extensions: {
328
899
  appearance: {
329
900
  dark: {
330
901
  value: "transparent"
@@ -332,10 +903,14 @@ export const ChartsCategorical01Stroke = {
332
903
  }
333
904
  }
334
905
  };
906
+ /** @type {TokenValue} */
907
+ export const ChartsCategorical01StrokeStyle = { value: "solid" };
908
+ /** @type {TokenValue} */
335
909
  export const ChartsCategorical01Pattern = { value: "solid" };
910
+ /** @type {TokenWithAppearance} */
336
911
  export const ChartsCategorical02Color = {
337
912
  value: "#08389c",
338
- attributes: {
913
+ extensions: {
339
914
  appearance: {
340
915
  dark: {
341
916
  value: "#3476FF"
@@ -343,9 +918,10 @@ export const ChartsCategorical02Color = {
343
918
  }
344
919
  }
345
920
  };
346
- export const ChartsCategorical02Stroke = {
347
- value: "transparent",
348
- attributes: {
921
+ /** @type {TokenWithAppearance} */
922
+ export const ChartsCategorical02StrokeColor = {
923
+ value: "rgba(0, 0, 0, 0)",
924
+ extensions: {
349
925
  appearance: {
350
926
  dark: {
351
927
  value: "transparent"
@@ -353,10 +929,14 @@ export const ChartsCategorical02Stroke = {
353
929
  }
354
930
  }
355
931
  };
932
+ /** @type {TokenValue} */
933
+ export const ChartsCategorical02StrokeStyle = { value: "solid" };
934
+ /** @type {TokenValue} */
356
935
  export const ChartsCategorical02Pattern = { value: "solid" };
936
+ /** @type {TokenWithAppearance} */
357
937
  export const ChartsCategorical03Color = {
358
- value: "#0FA2B8",
359
- attributes: {
938
+ value: "#0fa2b8",
939
+ extensions: {
360
940
  appearance: {
361
941
  dark: {
362
942
  value: "#C6F6FF"
@@ -364,9 +944,10 @@ export const ChartsCategorical03Color = {
364
944
  }
365
945
  }
366
946
  };
367
- export const ChartsCategorical03Stroke = {
368
- value: "transparent",
369
- attributes: {
947
+ /** @type {TokenWithAppearance} */
948
+ export const ChartsCategorical03StrokeColor = {
949
+ value: "rgba(0, 0, 0, 0)",
950
+ extensions: {
370
951
  appearance: {
371
952
  dark: {
372
953
  value: "transparent"
@@ -374,10 +955,14 @@ export const ChartsCategorical03Stroke = {
374
955
  }
375
956
  }
376
957
  };
958
+ /** @type {TokenValue} */
959
+ export const ChartsCategorical03StrokeStyle = { value: "solid" };
960
+ /** @type {TokenValue} */
377
961
  export const ChartsCategorical03Pattern = { value: "solid" };
962
+ /** @type {TokenWithAppearance} */
378
963
  export const ChartsCategorical04Color = {
379
- value: "#907AF5",
380
- attributes: {
964
+ value: "#907af5",
965
+ extensions: {
381
966
  appearance: {
382
967
  dark: {
383
968
  value: "#C6B8F4"
@@ -385,9 +970,10 @@ export const ChartsCategorical04Color = {
385
970
  }
386
971
  }
387
972
  };
388
- export const ChartsCategorical04Stroke = {
389
- value: "transparent",
390
- attributes: {
973
+ /** @type {TokenWithAppearance} */
974
+ export const ChartsCategorical04StrokeColor = {
975
+ value: "rgba(0, 0, 0, 0)",
976
+ extensions: {
391
977
  appearance: {
392
978
  dark: {
393
979
  value: "transparent"
@@ -395,10 +981,14 @@ export const ChartsCategorical04Stroke = {
395
981
  }
396
982
  }
397
983
  };
984
+ /** @type {TokenValue} */
985
+ export const ChartsCategorical04StrokeStyle = { value: "solid" };
986
+ /** @type {TokenValue} */
398
987
  export const ChartsCategorical04Pattern = { value: "solid" };
988
+ /** @type {TokenWithAppearance} */
399
989
  export const ChartsCategorical05Color = {
400
- value: "#DE52CE",
401
- attributes: {
990
+ value: "#de52ce",
991
+ extensions: {
402
992
  appearance: {
403
993
  dark: {
404
994
  value: "#D949A9"
@@ -406,9 +996,10 @@ export const ChartsCategorical05Color = {
406
996
  }
407
997
  }
408
998
  };
409
- export const ChartsCategorical05Stroke = {
410
- value: "transparent",
411
- attributes: {
999
+ /** @type {TokenWithAppearance} */
1000
+ export const ChartsCategorical05StrokeColor = {
1001
+ value: "rgba(0, 0, 0, 0)",
1002
+ extensions: {
412
1003
  appearance: {
413
1004
  dark: {
414
1005
  value: "transparent"
@@ -416,10 +1007,14 @@ export const ChartsCategorical05Stroke = {
416
1007
  }
417
1008
  }
418
1009
  };
1010
+ /** @type {TokenValue} */
1011
+ export const ChartsCategorical05StrokeStyle = { value: "solid" };
1012
+ /** @type {TokenValue} */
419
1013
  export const ChartsCategorical05Pattern = { value: "solid" };
1014
+ /** @type {TokenWithAppearance} */
420
1015
  export const ChartsCategorical06Color = {
421
- value: "#C2185B",
422
- attributes: {
1016
+ value: "#c2185b",
1017
+ extensions: {
423
1018
  appearance: {
424
1019
  dark: {
425
1020
  value: "#ED1369"
@@ -427,9 +1022,10 @@ export const ChartsCategorical06Color = {
427
1022
  }
428
1023
  }
429
1024
  };
430
- export const ChartsCategorical06Stroke = {
431
- value: "transparent",
432
- attributes: {
1025
+ /** @type {TokenWithAppearance} */
1026
+ export const ChartsCategorical06StrokeColor = {
1027
+ value: "rgba(0, 0, 0, 0)",
1028
+ extensions: {
433
1029
  appearance: {
434
1030
  dark: {
435
1031
  value: "transparent"
@@ -437,10 +1033,14 @@ export const ChartsCategorical06Stroke = {
437
1033
  }
438
1034
  }
439
1035
  };
1036
+ /** @type {TokenValue} */
1037
+ export const ChartsCategorical06StrokeStyle = { value: "solid" };
1038
+ /** @type {TokenValue} */
440
1039
  export const ChartsCategorical06Pattern = { value: "solid" };
1040
+ /** @type {TokenWithAppearance} */
441
1041
  export const ChartsCategorical07Color = {
442
- value: "#759E15",
443
- attributes: {
1042
+ value: "#759e15",
1043
+ extensions: {
444
1044
  appearance: {
445
1045
  dark: {
446
1046
  value: "#8CC30B"
@@ -448,9 +1048,10 @@ export const ChartsCategorical07Color = {
448
1048
  }
449
1049
  }
450
1050
  };
451
- export const ChartsCategorical07Stroke = {
452
- value: "transparent",
453
- attributes: {
1051
+ /** @type {TokenWithAppearance} */
1052
+ export const ChartsCategorical07StrokeColor = {
1053
+ value: "rgba(0, 0, 0, 0)",
1054
+ extensions: {
454
1055
  appearance: {
455
1056
  dark: {
456
1057
  value: "transparent"
@@ -458,10 +1059,14 @@ export const ChartsCategorical07Stroke = {
458
1059
  }
459
1060
  }
460
1061
  };
1062
+ /** @type {TokenValue} */
1063
+ export const ChartsCategorical07StrokeStyle = { value: "solid" };
1064
+ /** @type {TokenValue} */
461
1065
  export const ChartsCategorical07Pattern = { value: "solid" };
1066
+ /** @type {TokenWithAppearance} */
462
1067
  export const ChartsCategorical08Color = {
463
- value: "#AC6400",
464
- attributes: {
1068
+ value: "#ac6400",
1069
+ extensions: {
465
1070
  appearance: {
466
1071
  dark: {
467
1072
  value: "#B36800"
@@ -469,9 +1074,10 @@ export const ChartsCategorical08Color = {
469
1074
  }
470
1075
  }
471
1076
  };
472
- export const ChartsCategorical08Stroke = {
473
- value: "transparent",
474
- attributes: {
1077
+ /** @type {TokenWithAppearance} */
1078
+ export const ChartsCategorical08StrokeColor = {
1079
+ value: "rgba(0, 0, 0, 0)",
1080
+ extensions: {
475
1081
  appearance: {
476
1082
  dark: {
477
1083
  value: "transparent"
@@ -479,10 +1085,14 @@ export const ChartsCategorical08Stroke = {
479
1085
  }
480
1086
  }
481
1087
  };
1088
+ /** @type {TokenValue} */
1089
+ export const ChartsCategorical08StrokeStyle = { value: "solid" };
1090
+ /** @type {TokenValue} */
482
1091
  export const ChartsCategorical08Pattern = { value: "solid" };
1092
+ /** @type {TokenWithAppearance} */
483
1093
  export const ChartsCategorical09Color = {
484
- value: "#EB7200",
485
- attributes: {
1094
+ value: "#eb7200",
1095
+ extensions: {
486
1096
  appearance: {
487
1097
  dark: {
488
1098
  value: "#FFA037"
@@ -490,9 +1100,10 @@ export const ChartsCategorical09Color = {
490
1100
  }
491
1101
  }
492
1102
  };
493
- export const ChartsCategorical09Stroke = {
494
- value: "transparent",
495
- attributes: {
1103
+ /** @type {TokenWithAppearance} */
1104
+ export const ChartsCategorical09StrokeColor = {
1105
+ value: "rgba(0, 0, 0, 0)",
1106
+ extensions: {
496
1107
  appearance: {
497
1108
  dark: {
498
1109
  value: "transparent"
@@ -500,10 +1111,14 @@ export const ChartsCategorical09Stroke = {
500
1111
  }
501
1112
  }
502
1113
  };
1114
+ /** @type {TokenValue} */
1115
+ export const ChartsCategorical09StrokeStyle = { value: "solid" };
1116
+ /** @type {TokenValue} */
503
1117
  export const ChartsCategorical09Pattern = { value: "solid" };
1118
+ /** @type {TokenWithAppearance} */
504
1119
  export const ChartsStatusSuccessColor = {
505
- value: "#007A4D",
506
- attributes: {
1120
+ value: "#007a4d",
1121
+ extensions: {
507
1122
  appearance: {
508
1123
  dark: {
509
1124
  value: "#49CC93"
@@ -511,9 +1126,10 @@ export const ChartsStatusSuccessColor = {
511
1126
  }
512
1127
  }
513
1128
  };
514
- export const ChartsStatusSuccessStroke = {
515
- value: "transparent",
516
- attributes: {
1129
+ /** @type {TokenWithAppearance} */
1130
+ export const ChartsStatusSuccessStrokeColor = {
1131
+ value: "rgba(0, 0, 0, 0)",
1132
+ extensions: {
517
1133
  appearance: {
518
1134
  dark: {
519
1135
  value: "transparent"
@@ -521,10 +1137,14 @@ export const ChartsStatusSuccessStroke = {
521
1137
  }
522
1138
  }
523
1139
  };
1140
+ /** @type {TokenValue} */
1141
+ export const ChartsStatusSuccessStrokeStyle = { value: "solid" };
1142
+ /** @type {TokenValue} */
524
1143
  export const ChartsStatusSuccessPattern = { value: "solid" };
1144
+ /** @type {TokenWithAppearance} */
525
1145
  export const ChartsStatusWarningColor = {
526
1146
  value: "#ffbe00",
527
- attributes: {
1147
+ extensions: {
528
1148
  appearance: {
529
1149
  dark: {
530
1150
  value: "#ffe278"
@@ -532,9 +1152,10 @@ export const ChartsStatusWarningColor = {
532
1152
  }
533
1153
  }
534
1154
  };
535
- export const ChartsStatusWarningStroke = {
536
- value: "transparent",
537
- attributes: {
1155
+ /** @type {TokenWithAppearance} */
1156
+ export const ChartsStatusWarningStrokeColor = {
1157
+ value: "rgba(0, 0, 0, 0)",
1158
+ extensions: {
538
1159
  appearance: {
539
1160
  dark: {
540
1161
  value: "transparent"
@@ -542,10 +1163,14 @@ export const ChartsStatusWarningStroke = {
542
1163
  }
543
1164
  }
544
1165
  };
1166
+ /** @type {TokenValue} */
1167
+ export const ChartsStatusWarningStrokeStyle = { value: "solid" };
1168
+ /** @type {TokenValue} */
545
1169
  export const ChartsStatusWarningPattern = { value: "solid" };
1170
+ /** @type {TokenWithAppearance} */
546
1171
  export const ChartsStatusDangerColor = {
547
1172
  value: "#e13212",
548
- attributes: {
1173
+ extensions: {
549
1174
  appearance: {
550
1175
  dark: {
551
1176
  value: "#ff745f"
@@ -553,9 +1178,10 @@ export const ChartsStatusDangerColor = {
553
1178
  }
554
1179
  }
555
1180
  };
556
- export const ChartsStatusDangerStroke = {
557
- value: "transparent",
558
- attributes: {
1181
+ /** @type {TokenWithAppearance} */
1182
+ export const ChartsStatusDangerStrokeColor = {
1183
+ value: "rgba(0, 0, 0, 0)",
1184
+ extensions: {
559
1185
  appearance: {
560
1186
  dark: {
561
1187
  value: "transparent"
@@ -563,10 +1189,14 @@ export const ChartsStatusDangerStroke = {
563
1189
  }
564
1190
  }
565
1191
  };
1192
+ /** @type {TokenValue} */
1193
+ export const ChartsStatusDangerStrokeStyle = { value: "solid" };
1194
+ /** @type {TokenValue} */
566
1195
  export const ChartsStatusDangerPattern = { value: "solid" };
1196
+ /** @type {TokenWithAppearance} */
567
1197
  export const ChartsStatusNeutralColor = {
568
1198
  value: "#ffffff",
569
- attributes: {
1199
+ extensions: {
570
1200
  appearance: {
571
1201
  dark: {
572
1202
  value: "#141414"
@@ -574,9 +1204,10 @@ export const ChartsStatusNeutralColor = {
574
1204
  }
575
1205
  }
576
1206
  };
577
- export const ChartsStatusNeutralStroke = {
578
- value: "#8C9CA5",
579
- attributes: {
1207
+ /** @type {TokenWithAppearance} */
1208
+ export const ChartsStatusNeutralStrokeColor = {
1209
+ value: "#8c9ca5",
1210
+ extensions: {
580
1211
  appearance: {
581
1212
  dark: {
582
1213
  value: "#B4C1C8"
@@ -584,31 +1215,40 @@ export const ChartsStatusNeutralStroke = {
584
1215
  }
585
1216
  }
586
1217
  };
1218
+ /** @type {TokenValue} */
1219
+ export const ChartsStatusNeutralStrokeStyle = { value: "solid" };
1220
+ /** @type {TokenValue} */
587
1221
  export const ChartsStatusNeutralPattern = { value: "striped" };
588
- export const FocusRingColor = {
589
- value: "#0265DC",
590
- attributes: {
1222
+ /** @type {TokenWithAppearance} */
1223
+ export const FocusRingColorDefault = {
1224
+ value: "#1a82ff",
1225
+ extensions: {
591
1226
  appearance: {
592
1227
  dark: {
593
- value: "#78BBFA"
1228
+ value: "#70b1ff"
594
1229
  }
595
1230
  }
596
1231
  }
597
1232
  };
1233
+ /** @type {TokenWithAppearance} */
598
1234
  export const FocusRingColorDanger = {
599
- value: "#e13212",
600
- attributes: {
1235
+ value: "#ff3914",
1236
+ extensions: {
601
1237
  appearance: {
602
1238
  dark: {
603
- value: "#ff745f"
1239
+ value: "#ff8974"
604
1240
  }
605
1241
  }
606
1242
  }
607
1243
  };
1244
+ /** @type {TokenValue} */
608
1245
  export const FocusRingWidth = { value: "0.25rem" };
609
- export const ForegroundColor = {
610
- value: "#141414",
611
- attributes: {
1246
+ /** @type {TokenValue} */
1247
+ export const FocusRingStyle = { value: "solid" };
1248
+ /** @type {TokenWithAppearance} */
1249
+ export const ForegroundColorDefault = {
1250
+ value: "#040404",
1251
+ extensions: {
612
1252
  appearance: {
613
1253
  dark: {
614
1254
  value: "#ffffff"
@@ -616,249 +1256,197 @@ export const ForegroundColor = {
616
1256
  }
617
1257
  }
618
1258
  };
1259
+ /** @type {TokenWithAppearance} */
619
1260
  export const ForegroundColorSubdued = {
620
- value: "#737475",
621
- attributes: {
1261
+ value: "#e2e2e2",
1262
+ extensions: {
622
1263
  appearance: {
623
1264
  dark: {
624
- value: "#bcbcbd"
1265
+ value: "#e8e8e8"
625
1266
  }
626
1267
  }
627
1268
  }
628
1269
  };
1270
+ /** @type {TokenWithAppearance} */
629
1271
  export const ForegroundColorPrimary = {
630
- value: "#0265DC",
631
- attributes: {
1272
+ value: "#1a82ff",
1273
+ extensions: {
632
1274
  appearance: {
633
1275
  dark: {
634
- value: "#78BBFA"
1276
+ value: "#70b1ff"
635
1277
  }
636
1278
  }
637
1279
  }
638
1280
  };
639
- export const ForegroundColorDanger = {
640
- value: "#e13212",
641
- attributes: {
1281
+ /** @type {TokenWithAppearance} */
1282
+ export const ForegroundColorPrimaryHover = {
1283
+ value: "#0065de",
1284
+ extensions: {
642
1285
  appearance: {
643
1286
  dark: {
644
- value: "#ff745f"
1287
+ value: "#9ecaff"
645
1288
  }
646
1289
  }
647
1290
  }
648
1291
  };
649
- export const ForegroundColorInverted = {
650
- value: "#ffffff",
651
- attributes: {
1292
+ /** @type {TokenWithAppearance} */
1293
+ export const ForegroundColorPrimaryActive = {
1294
+ value: "#0065de",
1295
+ extensions: {
652
1296
  appearance: {
653
1297
  dark: {
654
- value: "#141414"
1298
+ value: "#9ecaff"
655
1299
  }
656
1300
  }
657
1301
  }
658
1302
  };
659
- export const ForegroundColorOnPrimary = {
660
- value: "#ffffff",
661
- attributes: {
662
- appearance: {
663
- dark: {
664
- value: "#141414"
665
- }
666
- }
667
- }
668
- };
669
- export const ForegroundColorOnDanger = {
670
- value: "#ffffff",
671
- attributes: {
672
- appearance: {
673
- dark: {
674
- value: "#141414"
675
- }
676
- }
677
- }
678
- };
679
- export const ForegroundColorOnDangerSubdued = {
680
- value: "#bf2a00",
681
- attributes: {
682
- appearance: {
683
- dark: {
684
- value: "#ffffff"
685
- }
686
- }
687
- }
688
- };
689
- export const ForegroundColorOnWarning = {
690
- value: "#141414",
691
- attributes: {
692
- appearance: {
693
- dark: {
694
- value: "#141414"
695
- }
696
- }
697
- }
698
- };
699
- export const ForegroundColorActivePrimary = {
700
- value: "#004491",
701
- attributes: {
702
- appearance: {
703
- dark: {
704
- value: "#B5DEFF"
705
- }
706
- }
707
- }
708
- };
709
- export const ForegroundColorActiveDanger = {
710
- value: "#bf2a00",
711
- attributes: {
712
- appearance: {
713
- dark: {
714
- value: "#ff745f"
715
- }
716
- }
717
- }
718
- };
719
- export const ForegroundColorHoverPrimary = {
720
- value: "#004491",
721
- attributes: {
722
- appearance: {
723
- dark: {
724
- value: "#B5DEFF"
725
- }
726
- }
727
- }
728
- };
729
- export const ForegroundColorHoverDanger = {
730
- value: "#bf2a00",
731
- attributes: {
1303
+ /** @type {TokenWithAppearance} */
1304
+ export const ForegroundColorDanger = {
1305
+ value: "#ff3914",
1306
+ extensions: {
732
1307
  appearance: {
733
1308
  dark: {
734
- value: "#ff745f"
1309
+ value: "#ff3914"
735
1310
  }
736
1311
  }
737
1312
  }
738
1313
  };
739
- export const OverlayColorActive = {
740
- value: "#14141429",
741
- attributes: {
1314
+ /** @type {TokenWithAppearance} */
1315
+ export const ForegroundColorDangerHover = {
1316
+ value: "#d62100",
1317
+ extensions: {
742
1318
  appearance: {
743
1319
  dark: {
744
- value: "#ffffff29"
1320
+ value: "#ff3914"
745
1321
  }
746
1322
  }
747
1323
  }
748
1324
  };
749
- export const OverlayColorActivePrimary = {
750
- value: "#0265DC4D",
751
- attributes: {
1325
+ /** @type {TokenWithAppearance} */
1326
+ export const ForegroundColorDangerActive = {
1327
+ value: "#d62100",
1328
+ extensions: {
752
1329
  appearance: {
753
1330
  dark: {
754
- value: "#78BBFA40"
1331
+ value: "#ff3914"
755
1332
  }
756
1333
  }
757
1334
  }
758
1335
  };
759
- export const OverlayColorActiveDanger = {
760
- value: "#e132124D",
761
- attributes: {
1336
+ /** @type {TokenWithAppearance} */
1337
+ export const ForegroundColorInverted = {
1338
+ value: "#ffffff",
1339
+ extensions: {
762
1340
  appearance: {
763
1341
  dark: {
764
- value: "#f94d3240"
1342
+ value: "#040404"
765
1343
  }
766
1344
  }
767
1345
  }
768
1346
  };
769
- export const OverlayColorActiveOn = {
770
- value: "#14141429",
771
- attributes: {
1347
+ /** @type {TokenWithAppearance} */
1348
+ export const ForegroundColorOnPrimary = {
1349
+ value: "#ffffff",
1350
+ extensions: {
772
1351
  appearance: {
773
1352
  dark: {
774
- value: "#14141429"
1353
+ value: "#040404"
775
1354
  }
776
1355
  }
777
1356
  }
778
1357
  };
779
- export const OverlayColorActiveOnPrimary = {
780
- value: "#14141466",
781
- attributes: {
1358
+ /** @type {TokenWithAppearance} */
1359
+ export const ForegroundColorOnPrimaryHover = {
1360
+ value: "#ffffff",
1361
+ extensions: {
782
1362
  appearance: {
783
1363
  dark: {
784
- value: "#14141429"
1364
+ value: "#040404"
785
1365
  }
786
1366
  }
787
1367
  }
788
1368
  };
789
- export const OverlayColorActiveOnDanger = {
790
- value: "#14141466",
791
- attributes: {
1369
+ /** @type {TokenWithAppearance} */
1370
+ export const ForegroundColorOnPrimaryActive = {
1371
+ value: "#ffffff",
1372
+ extensions: {
792
1373
  appearance: {
793
1374
  dark: {
794
- value: "#14141429"
1375
+ value: "#040404"
795
1376
  }
796
1377
  }
797
1378
  }
798
1379
  };
799
- export const OverlayColorHover = {
800
- value: "#14141414",
801
- attributes: {
1380
+ /** @type {TokenWithAppearance} */
1381
+ export const ForegroundColorOnSuccess = {
1382
+ value: "#ffffff",
1383
+ extensions: {
802
1384
  appearance: {
803
1385
  dark: {
804
- value: "#ffffff14"
1386
+ value: "#040404"
805
1387
  }
806
1388
  }
807
1389
  }
808
1390
  };
809
- export const OverlayColorHoverPrimary = {
810
- value: "#0265DC1A",
811
- attributes: {
1391
+ /** @type {TokenWithAppearance} */
1392
+ export const ForegroundColorOnDanger = {
1393
+ value: "#ffffff",
1394
+ extensions: {
812
1395
  appearance: {
813
1396
  dark: {
814
- value: "#78BBFA1A"
1397
+ value: "#040404"
815
1398
  }
816
1399
  }
817
1400
  }
818
1401
  };
819
- export const OverlayColorHoverDanger = {
820
- value: "#e132121A",
821
- attributes: {
1402
+ /** @type {TokenWithAppearance} */
1403
+ export const ForegroundColorOnDangerSubdued = {
1404
+ value: "#d62100",
1405
+ extensions: {
822
1406
  appearance: {
823
1407
  dark: {
824
- value: "#f94d3226"
1408
+ value: "#ffffff"
825
1409
  }
826
1410
  }
827
1411
  }
828
1412
  };
829
- export const OverlayColorHoverOn = {
830
- value: "#14141414",
831
- attributes: {
1413
+ /** @type {TokenWithAppearance} */
1414
+ export const ForegroundColorOnDangerHover = {
1415
+ value: "#ffffff",
1416
+ extensions: {
832
1417
  appearance: {
833
1418
  dark: {
834
- value: "#ffffff14"
1419
+ value: "#040404"
835
1420
  }
836
1421
  }
837
1422
  }
838
1423
  };
839
- export const OverlayColorHoverOnPrimary = {
840
- value: "#14141433",
841
- attributes: {
1424
+ /** @type {TokenWithAppearance} */
1425
+ export const ForegroundColorOnDangerActive = {
1426
+ value: "#ffffff",
1427
+ extensions: {
842
1428
  appearance: {
843
1429
  dark: {
844
- value: "#ffffff29"
1430
+ value: "#040404"
845
1431
  }
846
1432
  }
847
1433
  }
848
1434
  };
849
- export const OverlayColorHoverOnDanger = {
850
- value: "#14141433",
851
- attributes: {
1435
+ /** @type {TokenWithAppearance} */
1436
+ export const ForegroundColorOnWarning = {
1437
+ value: "#040404",
1438
+ extensions: {
852
1439
  appearance: {
853
1440
  dark: {
854
- value: "#ffffff29"
1441
+ value: "#040404"
855
1442
  }
856
1443
  }
857
1444
  }
858
1445
  };
1446
+ /** @type {TokenWithAppearance} */
859
1447
  export const ShadowColor = {
860
- value: "#14141414",
861
- attributes: {
1448
+ value: "#8b8b8b14",
1449
+ extensions: {
862
1450
  appearance: {
863
1451
  dark: {
864
1452
  value: "#ffffff14"
@@ -866,67 +1454,51 @@ export const ShadowColor = {
866
1454
  }
867
1455
  }
868
1456
  };
1457
+ /** @type {TokenValue} */
869
1458
  export const ShadowSizeFlat = { value: "0rem 0rem 0rem" };
1459
+ /** @type {TokenValue} */
870
1460
  export const ShadowSizeFloat = { value: "0rem 0.125rem 0.5rem" };
1461
+ /** @type {TokenValue} */
871
1462
  export const ShadowSizeOverlay = { value: "0rem 0.5rem 1.5rem" };
872
- export const StatusColorInfo = {
873
- value: "#0265DC",
874
- attributes: {
875
- appearance: {
876
- dark: {
877
- value: "#78BBFA"
878
- }
879
- }
880
- }
881
- };
882
- export const StatusColorDanger = {
883
- value: "#e13212",
884
- attributes: {
885
- appearance: {
886
- dark: {
887
- value: "#ff745f"
888
- }
889
- }
890
- }
891
- };
892
- export const StatusColorSuccess = {
893
- value: "#007A4D",
894
- attributes: {
895
- appearance: {
896
- dark: {
897
- value: "#49CC93"
898
- }
899
- }
900
- }
901
- };
902
- export const StatusColorWarning = {
903
- value: "#ffbe00",
904
- attributes: {
905
- appearance: {
906
- dark: {
907
- value: "#ffe278"
908
- }
909
- }
910
- }
911
- };
1463
+ /** @type {TokenValue} */
912
1464
  export const TypographyParagraphSizeXsmall = { value: "0.75rem" };
1465
+ /** @type {TokenValue} */
913
1466
  export const TypographyParagraphSizeSmall = { value: "0.875rem" };
914
- export const TypographyParagraphSize = { value: "1rem" };
1467
+ /** @type {TokenValue} */
1468
+ export const TypographyParagraphSizeDefault = { value: "1rem" };
1469
+ /** @type {TokenValue} */
915
1470
  export const TypographyParagraphSizeLarge = { value: "1.25rem" };
1471
+ /** @type {TokenValue} */
916
1472
  export const TypographyParagraphSizeXlarge = { value: "1.5rem" };
917
- export const TypographyParagraphFontWeight = { value: "400" };
1473
+ /** @type {TokenValue} */
1474
+ export const TypographyParagraphFontWeight = { value: 400 };
1475
+ /** @type {TokenValue} */
918
1476
  export const TypographyParagraphFontFamily = { value: "'Nunito Sans', sans-serif" };
1477
+ /** @type {TokenValue} */
919
1478
  export const TypographyHeadingSizeXsmall = { value: "0.875rem" };
1479
+ /** @type {TokenValue} */
920
1480
  export const TypographyHeadingSizeSmall = { value: "1rem" };
921
- export const TypographyHeadingSize = { value: "1.25rem" };
1481
+ /** @type {TokenValue} */
1482
+ export const TypographyHeadingSizeDefault = { value: "1.25rem" };
1483
+ /** @type {TokenValue} */
922
1484
  export const TypographyHeadingSizeLarge = { value: "1.5rem" };
1485
+ /** @type {TokenValue} */
923
1486
  export const TypographyHeadingSizeXlarge = { value: "2rem" };
924
- export const TypographyHeadingFontWeight = { value: "700" };
1487
+ /** @type {TokenValue} */
1488
+ export const TypographyHeadingFontWeight = { value: 700 };
1489
+ /** @type {TokenValue} */
925
1490
  export const TypographyHeadingFontFamily = { value: "'Sofia Pro', SofiaPro, sans-serif" };
1491
+ /** @type {TokenValue} */
926
1492
  export const TypographyLabelSizeXsmall = { value: "0.625rem" };
1493
+ /** @type {TokenValue} */
927
1494
  export const TypographyLabelSizeSmall = { value: "0.75rem" };
928
- export const TypographyLabelSize = { value: "0.875rem" };
1495
+ /** @type {TokenValue} */
1496
+ export const TypographyLabelSizeDefault = { value: "0.875rem" };
1497
+ /** @type {TokenValue} */
929
1498
  export const TypographyLabelSizeLarge = { value: "1rem" };
1499
+ /** @type {TokenValue} */
930
1500
  export const TypographyLabelSizeXlarge = { value: "1.25rem" };
931
- export const TypographyLabelFontWeight = { value: "600" };
1501
+ /** @type {TokenValue} */
1502
+ export const TypographyLabelFontWeight = { value: 600 };
1503
+ /** @type {TokenValue} */
932
1504
  export const TypographyLabelFontFamily = { value: "'Nunito Sans', sans-serif" };