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

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