@adobe/spectrum-tokens 13.0.0-beta.8 → 13.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9255 -0
- package/README.md +4 -0
- package/dist/json/drover.json +954 -250
- package/dist/json/variables.json +16755 -7175
- package/index.js +60 -0
- package/moon.yml +2 -2
- package/package.json +13 -8
- package/schemas/token-types/alias.json +1 -0
- package/schemas/token-types/color-set.json +4 -3
- package/schemas/token-types/color.json +1 -0
- package/schemas/token-types/dimension.json +1 -0
- package/schemas/token-types/font-family.json +1 -0
- package/schemas/token-types/font-size.json +1 -0
- package/schemas/token-types/font-style.json +1 -0
- package/schemas/token-types/font-weight.json +1 -0
- package/schemas/token-types/gradient-stop.json +27 -0
- package/schemas/token-types/multiplier.json +2 -1
- package/schemas/token-types/opacity.json +1 -0
- package/schemas/token-types/scale-set.json +7 -0
- package/schemas/token-types/system-set.json +83 -0
- package/schemas/token-types/text-align.json +27 -0
- package/schemas/token-types/text-transform.json +1 -0
- package/schemas/token-types/token.json +14 -2
- package/src/color-aliases.json +669 -97
- package/src/color-component.json +261 -15
- package/src/color-palette.json +736 -347
- package/src/icons.json +974 -20
- package/src/layout-component.json +4332 -896
- package/src/layout.json +450 -195
- package/src/semantic-color-palette.json +125 -1
- package/src/typography.json +299 -90
- package/tasks/addIds.js +7 -9
- package/tasks/addPrivate.js +22 -0
- package/tasks/buildManifest.js +1 -1
- package/tasks/buildSpectrumTokens.js +1 -1
- package/tasks/deprecateExpress.js +1 -1
- package/tasks/diff.js +19 -5
- package/tasks/lib/augmentExpressTokens.js +1 -1
- package/test/checkComponentProps.js +29 -0
- package/test/checkId.test.js +1 -37
- package/test/checkManifest.test.js +1 -1
- package/test/checkPrivate.js +22 -0
- package/test/checkSetsUnique.js +54 -0
- package/test/checkUniqueTokenNames.js +32 -0
- package/test/componentSchemaValidator.test.js +1 -1
- package/test/deprecateExpress.test.js +1 -1
- package/test/drover.test.js +1 -1
- package/test/schemaValidator.test.js +1 -1
- package/test/schemaValidators/alias.test.js +1 -1
- package/test/snapshots/deprecateExpress.test.js.md +1 -1
- package/test/snapshots/deprecateExpress.test.js.snap +0 -0
- package/test/tokenSchemaValidator.test.js +1 -1
package/src/typography.json
CHANGED
|
@@ -4,6 +4,26 @@
|
|
|
4
4
|
"value": "{sans-serif-font-family}",
|
|
5
5
|
"uuid": "45d43d4e-a4e4-4c5f-94ec-644a81300eb0"
|
|
6
6
|
},
|
|
7
|
+
"letter-spacing": {
|
|
8
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json",
|
|
9
|
+
"value": "0em",
|
|
10
|
+
"uuid": "d8caf3aa-1261-411f-b383-18f87334c117"
|
|
11
|
+
},
|
|
12
|
+
"text-align-start": {
|
|
13
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json",
|
|
14
|
+
"value": "start",
|
|
15
|
+
"uuid": "3a7f9e91-6e1a-4937-a6d2-6c39566dc875"
|
|
16
|
+
},
|
|
17
|
+
"text-align-center": {
|
|
18
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json",
|
|
19
|
+
"value": "center",
|
|
20
|
+
"uuid": "df252e5a-f115-471d-bb35-c79e733d868b"
|
|
21
|
+
},
|
|
22
|
+
"text-align-end": {
|
|
23
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json",
|
|
24
|
+
"value": "end",
|
|
25
|
+
"uuid": "a0c425b3-668b-4413-8739-c7844b26ebad"
|
|
26
|
+
},
|
|
7
27
|
"sans-serif-font-family": {
|
|
8
28
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json",
|
|
9
29
|
"value": "Adobe Clean",
|
|
@@ -59,6 +79,21 @@
|
|
|
59
79
|
"value": "normal",
|
|
60
80
|
"uuid": "25668698-bf78-46f4-bc6c-8fea068ddb34"
|
|
61
81
|
},
|
|
82
|
+
"font-size-25": {
|
|
83
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json",
|
|
84
|
+
"sets": {
|
|
85
|
+
"desktop": {
|
|
86
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json",
|
|
87
|
+
"value": "10px",
|
|
88
|
+
"uuid": "26ab49ea-7e86-4f0d-812e-ef1ba794c8a8"
|
|
89
|
+
},
|
|
90
|
+
"mobile": {
|
|
91
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json",
|
|
92
|
+
"value": "12px",
|
|
93
|
+
"uuid": "5946a4e5-8bed-4dd7-aa73-9ebe232f9790"
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
},
|
|
62
97
|
"font-size-50": {
|
|
63
98
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json",
|
|
64
99
|
"sets": {
|
|
@@ -259,7 +294,7 @@
|
|
|
259
294
|
"sets": {
|
|
260
295
|
"desktop": {
|
|
261
296
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json",
|
|
262
|
-
"value": "
|
|
297
|
+
"value": "51px",
|
|
263
298
|
"uuid": "b73bfb12-80ef-453f-b7dc-52bf2258ef47"
|
|
264
299
|
},
|
|
265
300
|
"mobile": {
|
|
@@ -274,7 +309,7 @@
|
|
|
274
309
|
"sets": {
|
|
275
310
|
"desktop": {
|
|
276
311
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json",
|
|
277
|
-
"value": "
|
|
312
|
+
"value": "58px",
|
|
278
313
|
"uuid": "e8853e10-cc03-47c1-9b66-11755ff513a5"
|
|
279
314
|
},
|
|
280
315
|
"mobile": {
|
|
@@ -284,29 +319,59 @@
|
|
|
284
319
|
}
|
|
285
320
|
}
|
|
286
321
|
},
|
|
322
|
+
"font-size-1400": {
|
|
323
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json",
|
|
324
|
+
"sets": {
|
|
325
|
+
"desktop": {
|
|
326
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json",
|
|
327
|
+
"value": "65px",
|
|
328
|
+
"uuid": "5af5e5bd-fc76-4688-aae9-6e7528d41341"
|
|
329
|
+
},
|
|
330
|
+
"mobile": {
|
|
331
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json",
|
|
332
|
+
"value": "79px",
|
|
333
|
+
"uuid": "999b22ec-e19e-4fee-a1db-3cb89c58a51c"
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"font-size-1500": {
|
|
338
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json",
|
|
339
|
+
"sets": {
|
|
340
|
+
"desktop": {
|
|
341
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json",
|
|
342
|
+
"value": "73px",
|
|
343
|
+
"uuid": "509b3100-9034-4b23-adb0-8c56dbd72a48"
|
|
344
|
+
},
|
|
345
|
+
"mobile": {
|
|
346
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json",
|
|
347
|
+
"value": "88px",
|
|
348
|
+
"uuid": "94741f6e-8c95-4329-8e06-d6f261e5b0eb"
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
},
|
|
287
352
|
"line-height-100": {
|
|
288
353
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
289
|
-
"value":
|
|
354
|
+
"value": 1.3,
|
|
290
355
|
"uuid": "dd125d1d-cf4d-45c8-ab21-52331a9a264b"
|
|
291
356
|
},
|
|
292
357
|
"line-height-200": {
|
|
293
358
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
294
|
-
"value":
|
|
359
|
+
"value": 1.5,
|
|
295
360
|
"uuid": "832f2589-0e75-48dd-bbe3-e3f5b98e6c97"
|
|
296
361
|
},
|
|
297
362
|
"cjk-line-height-100": {
|
|
298
363
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
299
|
-
"value":
|
|
364
|
+
"value": 1.5,
|
|
300
365
|
"uuid": "8b4ab68d-9060-4e11-9ecc-3b9d3db27fe4"
|
|
301
366
|
},
|
|
302
367
|
"cjk-line-height-200": {
|
|
303
368
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
304
|
-
"value":
|
|
369
|
+
"value": 1.7,
|
|
305
370
|
"uuid": "c5a5d186-54b3-44a0-b1c6-e9b102871015"
|
|
306
371
|
},
|
|
307
372
|
"cjk-letter-spacing": {
|
|
308
|
-
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/
|
|
309
|
-
"value": "
|
|
373
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
374
|
+
"value": "{letter-spacing}",
|
|
310
375
|
"uuid": "12e27721-35f5-4d03-95f3-3fc9e1cf50e4"
|
|
311
376
|
},
|
|
312
377
|
"heading-sans-serif-font-family": {
|
|
@@ -331,41 +396,47 @@
|
|
|
331
396
|
"component": "heading",
|
|
332
397
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
333
398
|
"value": "{light-font-weight}",
|
|
334
|
-
"uuid": "ff84a748-5923-451d-967c-a346d2dee46c"
|
|
399
|
+
"uuid": "ff84a748-5923-451d-967c-a346d2dee46c",
|
|
400
|
+
"deprecated": true
|
|
335
401
|
},
|
|
336
402
|
"heading-sans-serif-light-font-style": {
|
|
337
403
|
"component": "heading",
|
|
338
404
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
339
405
|
"value": "{default-font-style}",
|
|
340
|
-
"uuid": "c5551fd5-4ee2-4c93-b91f-9ed295fa63a4"
|
|
406
|
+
"uuid": "c5551fd5-4ee2-4c93-b91f-9ed295fa63a4",
|
|
407
|
+
"deprecated": true
|
|
341
408
|
},
|
|
342
409
|
"heading-serif-light-font-weight": {
|
|
343
410
|
"component": "heading",
|
|
344
411
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
345
412
|
"value": "{regular-font-weight}",
|
|
346
|
-
"uuid": "66958795-6459-4750-8c68-dc39ab383837"
|
|
413
|
+
"uuid": "66958795-6459-4750-8c68-dc39ab383837",
|
|
414
|
+
"deprecated": true
|
|
347
415
|
},
|
|
348
416
|
"heading-serif-light-font-style": {
|
|
349
417
|
"component": "heading",
|
|
350
418
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
351
419
|
"value": "{default-font-style}",
|
|
352
|
-
"uuid": "5f30418a-aa76-434e-bca9-902d5be0d929"
|
|
420
|
+
"uuid": "5f30418a-aa76-434e-bca9-902d5be0d929",
|
|
421
|
+
"deprecated": true
|
|
353
422
|
},
|
|
354
423
|
"heading-cjk-light-font-weight": {
|
|
355
424
|
"component": "heading",
|
|
356
425
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
357
426
|
"value": "{light-font-weight}",
|
|
358
|
-
"uuid": "9da0ba4c-b4e3-4052-8b2e-d2fde714bb9d"
|
|
427
|
+
"uuid": "9da0ba4c-b4e3-4052-8b2e-d2fde714bb9d",
|
|
428
|
+
"deprecated": true
|
|
359
429
|
},
|
|
360
430
|
"heading-cjk-light-font-style": {
|
|
361
431
|
"component": "heading",
|
|
362
432
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
363
433
|
"value": "{default-font-style}",
|
|
364
|
-
"uuid": "b5704c75-2914-4268-9023-7f7452e826c1"
|
|
434
|
+
"uuid": "b5704c75-2914-4268-9023-7f7452e826c1",
|
|
435
|
+
"deprecated": true
|
|
365
436
|
},
|
|
366
437
|
"heading-sans-serif-font-weight": {
|
|
367
438
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
368
|
-
"value": "{bold-font-weight}",
|
|
439
|
+
"value": "{extra-bold-font-weight}",
|
|
369
440
|
"uuid": "1d4d09b4-021a-48e8-a724-bfecc13df325"
|
|
370
441
|
},
|
|
371
442
|
"heading-sans-serif-font-style": {
|
|
@@ -423,7 +494,7 @@
|
|
|
423
494
|
"heading-cjk-heavy-font-weight": {
|
|
424
495
|
"component": "heading",
|
|
425
496
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
426
|
-
"value": "{
|
|
497
|
+
"value": "{extra-bold-font-weight}",
|
|
427
498
|
"uuid": "73c20d2f-1227-46bc-8548-102358405b0b"
|
|
428
499
|
},
|
|
429
500
|
"heading-cjk-heavy-font-style": {
|
|
@@ -436,37 +507,43 @@
|
|
|
436
507
|
"component": "heading",
|
|
437
508
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
438
509
|
"value": "{bold-font-weight}",
|
|
439
|
-
"uuid": "75437f9a-7ee8-4194-b4b3-0746be097396"
|
|
510
|
+
"uuid": "75437f9a-7ee8-4194-b4b3-0746be097396",
|
|
511
|
+
"deprecated": true
|
|
440
512
|
},
|
|
441
513
|
"heading-sans-serif-light-strong-font-style": {
|
|
442
514
|
"component": "heading",
|
|
443
515
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
444
516
|
"value": "{default-font-style}",
|
|
445
|
-
"uuid": "67271ca0-c9fd-4047-a615-6314d7333f7a"
|
|
517
|
+
"uuid": "67271ca0-c9fd-4047-a615-6314d7333f7a",
|
|
518
|
+
"deprecated": true
|
|
446
519
|
},
|
|
447
520
|
"heading-serif-light-strong-font-weight": {
|
|
448
521
|
"component": "heading",
|
|
449
522
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
450
523
|
"value": "{bold-font-weight}",
|
|
451
|
-
"uuid": "29ad1c96-62e4-4143-88e8-fc8e08913a52"
|
|
524
|
+
"uuid": "29ad1c96-62e4-4143-88e8-fc8e08913a52",
|
|
525
|
+
"deprecated": true
|
|
452
526
|
},
|
|
453
527
|
"heading-serif-light-strong-font-style": {
|
|
454
528
|
"component": "heading",
|
|
455
529
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
456
530
|
"value": "{default-font-style}",
|
|
457
|
-
"uuid": "73906871-24e5-48cc-9140-ec700c08d144"
|
|
531
|
+
"uuid": "73906871-24e5-48cc-9140-ec700c08d144",
|
|
532
|
+
"deprecated": true
|
|
458
533
|
},
|
|
459
534
|
"heading-cjk-light-strong-font-weight": {
|
|
460
535
|
"component": "heading",
|
|
461
536
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
462
537
|
"value": "{extra-bold-font-weight}",
|
|
463
|
-
"uuid": "5ca91bc2-215b-4cbb-b966-80bfffd569ad"
|
|
538
|
+
"uuid": "5ca91bc2-215b-4cbb-b966-80bfffd569ad",
|
|
539
|
+
"deprecated": true
|
|
464
540
|
},
|
|
465
541
|
"heading-cjk-light-strong-font-style": {
|
|
466
542
|
"component": "heading",
|
|
467
543
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
468
544
|
"value": "{default-font-style}",
|
|
469
|
-
"uuid": "be854057-43b1-40ce-bdc7-69960cd7638c"
|
|
545
|
+
"uuid": "be854057-43b1-40ce-bdc7-69960cd7638c",
|
|
546
|
+
"deprecated": true
|
|
470
547
|
},
|
|
471
548
|
"heading-sans-serif-strong-font-weight": {
|
|
472
549
|
"component": "heading",
|
|
@@ -544,41 +621,47 @@
|
|
|
544
621
|
"component": "heading",
|
|
545
622
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
546
623
|
"value": "{light-font-weight}",
|
|
547
|
-
"uuid": "e882ea46-8f0a-4313-84f5-85bb8d9f1f5e"
|
|
624
|
+
"uuid": "e882ea46-8f0a-4313-84f5-85bb8d9f1f5e",
|
|
625
|
+
"deprecated": true
|
|
548
626
|
},
|
|
549
627
|
"heading-sans-serif-light-emphasized-font-style": {
|
|
550
628
|
"component": "heading",
|
|
551
629
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
552
630
|
"value": "{italic-font-style}",
|
|
553
|
-
"uuid": "5f88eb81-7052-4c21-9896-f14cb09f0e70"
|
|
631
|
+
"uuid": "5f88eb81-7052-4c21-9896-f14cb09f0e70",
|
|
632
|
+
"deprecated": true
|
|
554
633
|
},
|
|
555
634
|
"heading-serif-light-emphasized-font-weight": {
|
|
556
635
|
"component": "heading",
|
|
557
636
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
558
637
|
"value": "{regular-font-weight}",
|
|
559
|
-
"uuid": "b5f79fde-07f7-4c07-897e-0bfdf27e2839"
|
|
638
|
+
"uuid": "b5f79fde-07f7-4c07-897e-0bfdf27e2839",
|
|
639
|
+
"deprecated": true
|
|
560
640
|
},
|
|
561
641
|
"heading-serif-light-emphasized-font-style": {
|
|
562
642
|
"component": "heading",
|
|
563
643
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
564
644
|
"value": "{italic-font-style}",
|
|
565
|
-
"uuid": "7bd831cd-3fe0-402b-a105-f65b8e8023e2"
|
|
645
|
+
"uuid": "7bd831cd-3fe0-402b-a105-f65b8e8023e2",
|
|
646
|
+
"deprecated": true
|
|
566
647
|
},
|
|
567
648
|
"heading-cjk-light-emphasized-font-weight": {
|
|
568
649
|
"component": "heading",
|
|
569
650
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
570
651
|
"value": "{regular-font-weight}",
|
|
571
|
-
"uuid": "aea9787b-ee0b-40cc-9089-5973e52b18bd"
|
|
652
|
+
"uuid": "aea9787b-ee0b-40cc-9089-5973e52b18bd",
|
|
653
|
+
"deprecated": true
|
|
572
654
|
},
|
|
573
655
|
"heading-cjk-light-emphasized-font-style": {
|
|
574
656
|
"component": "heading",
|
|
575
657
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
576
658
|
"value": "{default-font-style}",
|
|
577
|
-
"uuid": "dac03eec-6910-4176-bfca-33f8a57cf3d7"
|
|
659
|
+
"uuid": "dac03eec-6910-4176-bfca-33f8a57cf3d7",
|
|
660
|
+
"deprecated": true
|
|
578
661
|
},
|
|
579
662
|
"heading-sans-serif-emphasized-font-weight": {
|
|
580
663
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
581
|
-
"value": "{bold-font-weight}",
|
|
664
|
+
"value": "{extra-bold-font-weight}",
|
|
582
665
|
"uuid": "e4a183fd-53c5-4dbb-afd1-6308e2e74f80"
|
|
583
666
|
},
|
|
584
667
|
"heading-sans-serif-emphasized-font-style": {
|
|
@@ -650,37 +733,43 @@
|
|
|
650
733
|
"component": "heading",
|
|
651
734
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
652
735
|
"value": "{bold-font-weight}",
|
|
653
|
-
"uuid": "c297a503-fc3c-4939-8c5a-6611b9b04719"
|
|
736
|
+
"uuid": "c297a503-fc3c-4939-8c5a-6611b9b04719",
|
|
737
|
+
"deprecated": true
|
|
654
738
|
},
|
|
655
739
|
"heading-sans-serif-light-strong-emphasized-font-style": {
|
|
656
740
|
"component": "heading",
|
|
657
741
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
658
742
|
"value": "{italic-font-style}",
|
|
659
|
-
"uuid": "bc5d65e0-e13a-424c-a260-9268a0dee66c"
|
|
743
|
+
"uuid": "bc5d65e0-e13a-424c-a260-9268a0dee66c",
|
|
744
|
+
"deprecated": true
|
|
660
745
|
},
|
|
661
746
|
"heading-serif-light-strong-emphasized-font-weight": {
|
|
662
747
|
"component": "heading",
|
|
663
748
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
664
749
|
"value": "{bold-font-weight}",
|
|
665
|
-
"uuid": "98c61df3-057d-4345-881e-0c04628757f3"
|
|
750
|
+
"uuid": "98c61df3-057d-4345-881e-0c04628757f3",
|
|
751
|
+
"deprecated": true
|
|
666
752
|
},
|
|
667
753
|
"heading-serif-light-strong-emphasized-font-style": {
|
|
668
754
|
"component": "heading",
|
|
669
755
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
670
756
|
"value": "{italic-font-style}",
|
|
671
|
-
"uuid": "71c8e302-6bc1-4f45-b804-c847dd153d1b"
|
|
757
|
+
"uuid": "71c8e302-6bc1-4f45-b804-c847dd153d1b",
|
|
758
|
+
"deprecated": true
|
|
672
759
|
},
|
|
673
760
|
"heading-cjk-light-strong-emphasized-font-weight": {
|
|
674
761
|
"component": "heading",
|
|
675
762
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
676
763
|
"value": "{extra-bold-font-weight}",
|
|
677
|
-
"uuid": "83cc347c-7a1a-4665-9de4-cf19903f1043"
|
|
764
|
+
"uuid": "83cc347c-7a1a-4665-9de4-cf19903f1043",
|
|
765
|
+
"deprecated": true
|
|
678
766
|
},
|
|
679
767
|
"heading-cjk-light-strong-emphasized-font-style": {
|
|
680
768
|
"component": "heading",
|
|
681
769
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
682
770
|
"value": "{default-font-style}",
|
|
683
|
-
"uuid": "9136e25e-563b-4485-bad7-41809d5317de"
|
|
771
|
+
"uuid": "9136e25e-563b-4485-bad7-41809d5317de",
|
|
772
|
+
"deprecated": true
|
|
684
773
|
},
|
|
685
774
|
"heading-sans-serif-strong-emphasized-font-weight": {
|
|
686
775
|
"component": "heading",
|
|
@@ -787,31 +876,42 @@
|
|
|
787
876
|
"heading-size-s": {
|
|
788
877
|
"component": "heading",
|
|
789
878
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
790
|
-
"value": "{font-size-
|
|
879
|
+
"value": "{font-size-400}",
|
|
791
880
|
"uuid": "96673fee-b75c-4867-9041-48362af044bc"
|
|
792
881
|
},
|
|
793
882
|
"heading-size-xs": {
|
|
794
883
|
"component": "heading",
|
|
795
884
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
796
|
-
"value": "{font-size-
|
|
885
|
+
"value": "{font-size-300}",
|
|
797
886
|
"uuid": "4f179af6-c31f-48f8-927c-a45150668ad3"
|
|
798
887
|
},
|
|
799
888
|
"heading-size-xxs": {
|
|
800
889
|
"component": "heading",
|
|
801
890
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
802
891
|
"value": "{font-size-100}",
|
|
803
|
-
"uuid": "82a831b4-b624-475b-b2be-4eb949e48626"
|
|
892
|
+
"uuid": "82a831b4-b624-475b-b2be-4eb949e48626",
|
|
893
|
+
"deprecated": true
|
|
894
|
+
},
|
|
895
|
+
"heading-cjk-size-xxxxl": {
|
|
896
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
897
|
+
"value": "{font-size-1400}",
|
|
898
|
+
"uuid": "3b954e15-341a-40f4-a47e-9abd2813fec4"
|
|
899
|
+
},
|
|
900
|
+
"heading-size-xxxxl": {
|
|
901
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
902
|
+
"value": "{font-size-1500}",
|
|
903
|
+
"uuid": "517d86cc-2e66-4cdc-8841-cb32db9e56f4"
|
|
804
904
|
},
|
|
805
905
|
"heading-cjk-size-xxxl": {
|
|
806
906
|
"component": "heading",
|
|
807
907
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
808
|
-
"value": "{font-size-
|
|
908
|
+
"value": "{font-size-1200}",
|
|
809
909
|
"uuid": "5a44e177-2478-4bb0-9212-ba2df64c8b00"
|
|
810
910
|
},
|
|
811
911
|
"heading-cjk-size-xxl": {
|
|
812
912
|
"component": "heading",
|
|
813
913
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
814
|
-
"value": "{font-size-
|
|
914
|
+
"value": "{font-size-1000}",
|
|
815
915
|
"uuid": "fbf59302-1ad2-4327-bfde-d638a0ca2429"
|
|
816
916
|
},
|
|
817
917
|
"heading-cjk-size-xl": {
|
|
@@ -848,7 +948,8 @@
|
|
|
848
948
|
"component": "heading",
|
|
849
949
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
850
950
|
"value": "{font-size-100}",
|
|
851
|
-
"uuid": "bddd6a96-c280-47ca-8858-20df055e488d"
|
|
951
|
+
"uuid": "bddd6a96-c280-47ca-8858-20df055e488d",
|
|
952
|
+
"deprecated": true
|
|
852
953
|
},
|
|
853
954
|
"heading-line-height": {
|
|
854
955
|
"component": "heading",
|
|
@@ -865,13 +966,13 @@
|
|
|
865
966
|
"heading-margin-top-multiplier": {
|
|
866
967
|
"component": "heading",
|
|
867
968
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
868
|
-
"value":
|
|
969
|
+
"value": 0.88888889,
|
|
869
970
|
"uuid": "008fa04b-6d74-416b-a6ae-ceec90f08642"
|
|
870
971
|
},
|
|
871
972
|
"heading-margin-bottom-multiplier": {
|
|
872
973
|
"component": "heading",
|
|
873
974
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
874
|
-
"value":
|
|
975
|
+
"value": 0.25,
|
|
875
976
|
"uuid": "dd2035b4-506f-41ab-a656-de3668d44e0f"
|
|
876
977
|
},
|
|
877
978
|
"heading-color": {
|
|
@@ -961,7 +1062,7 @@
|
|
|
961
1062
|
"body-cjk-strong-font-weight": {
|
|
962
1063
|
"component": "body",
|
|
963
1064
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
964
|
-
"value": "{
|
|
1065
|
+
"value": "{extra-bold-font-weight}",
|
|
965
1066
|
"uuid": "d79de2c4-ca7c-4316-ac44-fee1a66983d7"
|
|
966
1067
|
},
|
|
967
1068
|
"body-cjk-strong-font-style": {
|
|
@@ -1033,7 +1134,7 @@
|
|
|
1033
1134
|
"body-cjk-strong-emphasized-font-weight": {
|
|
1034
1135
|
"component": "body",
|
|
1035
1136
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1036
|
-
"value": "{
|
|
1137
|
+
"value": "{extra-bold-font-weight}",
|
|
1037
1138
|
"uuid": "54020791-a975-4e5d-a905-8bffcc9d2d93"
|
|
1038
1139
|
},
|
|
1039
1140
|
"body-cjk-strong-emphasized-font-style": {
|
|
@@ -1060,6 +1161,51 @@
|
|
|
1060
1161
|
"value": "{font-size-400}",
|
|
1061
1162
|
"uuid": "3927604f-eaf3-4605-aa34-80b7bc88ac0f"
|
|
1062
1163
|
},
|
|
1164
|
+
"body-size-xxs": {
|
|
1165
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1166
|
+
"value": "{font-size-50}",
|
|
1167
|
+
"uuid": "3aa79ac7-9e78-4413-b500-b8d1937705cb"
|
|
1168
|
+
},
|
|
1169
|
+
"body-cjk-size-xxxl": {
|
|
1170
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1171
|
+
"value": "{font-size-500}",
|
|
1172
|
+
"uuid": "71a41f9e-73da-4632-8877-7af7acf4db03"
|
|
1173
|
+
},
|
|
1174
|
+
"body-cjk-size-xxl": {
|
|
1175
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1176
|
+
"value": "{font-size-400}",
|
|
1177
|
+
"uuid": "9aab03eb-c0c1-462c-aa7c-88c93b06f714"
|
|
1178
|
+
},
|
|
1179
|
+
"body-cjk-size-xl": {
|
|
1180
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1181
|
+
"value": "{font-size-300}",
|
|
1182
|
+
"uuid": "25d65a6e-e8e1-4849-848a-984373fd9cf9"
|
|
1183
|
+
},
|
|
1184
|
+
"body-cjk-size-l": {
|
|
1185
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1186
|
+
"value": "{font-size-200}",
|
|
1187
|
+
"uuid": "9f0e0ddb-a4d2-416e-a425-8d71527f77b2"
|
|
1188
|
+
},
|
|
1189
|
+
"body-cjk-size-m": {
|
|
1190
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1191
|
+
"value": "{font-size-100}",
|
|
1192
|
+
"uuid": "7e01bc65-5823-456f-a830-9848a96ad85a"
|
|
1193
|
+
},
|
|
1194
|
+
"body-cjk-size-s": {
|
|
1195
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1196
|
+
"value": "{font-size-75}",
|
|
1197
|
+
"uuid": "081aa502-e2f1-4bc8-8fb2-a00dcd4236dd"
|
|
1198
|
+
},
|
|
1199
|
+
"body-cjk-size-xs": {
|
|
1200
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1201
|
+
"value": "{font-size-50}",
|
|
1202
|
+
"uuid": "ba73926d-2ef4-4d7b-86c2-9044aa1cdf95"
|
|
1203
|
+
},
|
|
1204
|
+
"body-cjk-size-xxs": {
|
|
1205
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1206
|
+
"value": "{font-size-25}",
|
|
1207
|
+
"uuid": "218f04ed-0679-4090-b1ad-76ef062dd07c"
|
|
1208
|
+
},
|
|
1063
1209
|
"body-size-l": {
|
|
1064
1210
|
"component": "body",
|
|
1065
1211
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
@@ -1099,7 +1245,7 @@
|
|
|
1099
1245
|
"body-margin-multiplier": {
|
|
1100
1246
|
"component": "body",
|
|
1101
1247
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
1102
|
-
"value":
|
|
1248
|
+
"value": 0.75,
|
|
1103
1249
|
"uuid": "8f2e9283-4cbc-4374-9757-ed8d68542c89"
|
|
1104
1250
|
},
|
|
1105
1251
|
"body-color": {
|
|
@@ -1129,7 +1275,7 @@
|
|
|
1129
1275
|
"detail-sans-serif-font-weight": {
|
|
1130
1276
|
"component": "detail",
|
|
1131
1277
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1132
|
-
"value": "{
|
|
1278
|
+
"value": "{medium-font-weight}",
|
|
1133
1279
|
"uuid": "d06a4346-ec24-4922-8985-4b8a05e0bfc6"
|
|
1134
1280
|
},
|
|
1135
1281
|
"detail-sans-serif-font-style": {
|
|
@@ -1141,7 +1287,7 @@
|
|
|
1141
1287
|
"detail-serif-font-weight": {
|
|
1142
1288
|
"component": "detail",
|
|
1143
1289
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1144
|
-
"value": "{
|
|
1290
|
+
"value": "{medium-font-weight}",
|
|
1145
1291
|
"uuid": "87ef8843-f44e-4526-80cd-9635f3e0261e"
|
|
1146
1292
|
},
|
|
1147
1293
|
"detail-serif-font-style": {
|
|
@@ -1153,7 +1299,7 @@
|
|
|
1153
1299
|
"detail-cjk-font-weight": {
|
|
1154
1300
|
"component": "detail",
|
|
1155
1301
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1156
|
-
"value": "{
|
|
1302
|
+
"value": "{bold-font-weight}",
|
|
1157
1303
|
"uuid": "9b11f80a-7600-4a6b-a366-218ba320a5cc"
|
|
1158
1304
|
},
|
|
1159
1305
|
"detail-cjk-font-style": {
|
|
@@ -1166,37 +1312,43 @@
|
|
|
1166
1312
|
"component": "detail",
|
|
1167
1313
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1168
1314
|
"value": "{regular-font-weight}",
|
|
1169
|
-
"uuid": "cf8f93e2-2b79-4a4c-bb31-313e013148e3"
|
|
1315
|
+
"uuid": "cf8f93e2-2b79-4a4c-bb31-313e013148e3",
|
|
1316
|
+
"deprecated": true
|
|
1170
1317
|
},
|
|
1171
1318
|
"detail-sans-serif-light-font-style": {
|
|
1172
1319
|
"component": "detail",
|
|
1173
1320
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1174
1321
|
"value": "{default-font-style}",
|
|
1175
|
-
"uuid": "a6b7c26e-3ff5-4241-b9cc-3026604fe30e"
|
|
1322
|
+
"uuid": "a6b7c26e-3ff5-4241-b9cc-3026604fe30e",
|
|
1323
|
+
"deprecated": true
|
|
1176
1324
|
},
|
|
1177
1325
|
"detail-serif-light-font-weight": {
|
|
1178
1326
|
"component": "detail",
|
|
1179
1327
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1180
1328
|
"value": "{regular-font-weight}",
|
|
1181
|
-
"uuid": "2a15a805-fd08-4f8e-82e6-9264ef8937cb"
|
|
1329
|
+
"uuid": "2a15a805-fd08-4f8e-82e6-9264ef8937cb",
|
|
1330
|
+
"deprecated": true
|
|
1182
1331
|
},
|
|
1183
1332
|
"detail-serif-light-font-style": {
|
|
1184
1333
|
"component": "detail",
|
|
1185
1334
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1186
1335
|
"value": "{default-font-style}",
|
|
1187
|
-
"uuid": "f6478d1d-5dcf-43eb-a4fc-498479b29aa7"
|
|
1336
|
+
"uuid": "f6478d1d-5dcf-43eb-a4fc-498479b29aa7",
|
|
1337
|
+
"deprecated": true
|
|
1188
1338
|
},
|
|
1189
1339
|
"detail-cjk-light-font-weight": {
|
|
1190
1340
|
"component": "detail",
|
|
1191
1341
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1192
1342
|
"value": "{light-font-weight}",
|
|
1193
|
-
"uuid": "3b531775-a1fd-4a40-b169-7c42b8c6de38"
|
|
1343
|
+
"uuid": "3b531775-a1fd-4a40-b169-7c42b8c6de38",
|
|
1344
|
+
"deprecated": true
|
|
1194
1345
|
},
|
|
1195
1346
|
"detail-cjk-light-font-style": {
|
|
1196
1347
|
"component": "detail",
|
|
1197
1348
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1198
1349
|
"value": "{default-font-style}",
|
|
1199
|
-
"uuid": "4cc06d86-326e-4b6f-a751-99445bb1d131"
|
|
1350
|
+
"uuid": "4cc06d86-326e-4b6f-a751-99445bb1d131",
|
|
1351
|
+
"deprecated": true
|
|
1200
1352
|
},
|
|
1201
1353
|
"detail-sans-serif-strong-font-weight": {
|
|
1202
1354
|
"component": "detail",
|
|
@@ -1225,7 +1377,7 @@
|
|
|
1225
1377
|
"detail-cjk-strong-font-weight": {
|
|
1226
1378
|
"component": "detail",
|
|
1227
1379
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1228
|
-
"value": "{
|
|
1380
|
+
"value": "{extra-bold-font-weight}",
|
|
1229
1381
|
"uuid": "ef2997f3-276c-4662-8644-9514590114f4"
|
|
1230
1382
|
},
|
|
1231
1383
|
"detail-cjk-strong-font-style": {
|
|
@@ -1238,42 +1390,48 @@
|
|
|
1238
1390
|
"component": "detail",
|
|
1239
1391
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1240
1392
|
"value": "{regular-font-weight}",
|
|
1241
|
-
"uuid": "4f0f95d3-098a-4852-bd21-785f5bf054b5"
|
|
1393
|
+
"uuid": "4f0f95d3-098a-4852-bd21-785f5bf054b5",
|
|
1394
|
+
"deprecated": true
|
|
1242
1395
|
},
|
|
1243
1396
|
"detail-sans-serif-light-strong-font-style": {
|
|
1244
1397
|
"component": "detail",
|
|
1245
1398
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1246
1399
|
"value": "{default-font-style}",
|
|
1247
|
-
"uuid": "c1966f09-1c6e-4fe0-89ad-8fb8e847e3ba"
|
|
1400
|
+
"uuid": "c1966f09-1c6e-4fe0-89ad-8fb8e847e3ba",
|
|
1401
|
+
"deprecated": true
|
|
1248
1402
|
},
|
|
1249
1403
|
"detail-serif-light-strong-font-weight": {
|
|
1250
1404
|
"component": "detail",
|
|
1251
1405
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1252
1406
|
"value": "{regular-font-weight}",
|
|
1253
|
-
"uuid": "fc5df058-f678-4dc8-953f-e2738798ee2b"
|
|
1407
|
+
"uuid": "fc5df058-f678-4dc8-953f-e2738798ee2b",
|
|
1408
|
+
"deprecated": true
|
|
1254
1409
|
},
|
|
1255
1410
|
"detail-serif-light-strong-font-style": {
|
|
1256
1411
|
"component": "detail",
|
|
1257
1412
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1258
1413
|
"value": "{default-font-style}",
|
|
1259
|
-
"uuid": "7a878a3f-b663-41ee-8357-6e62f2e51d80"
|
|
1414
|
+
"uuid": "7a878a3f-b663-41ee-8357-6e62f2e51d80",
|
|
1415
|
+
"deprecated": true
|
|
1260
1416
|
},
|
|
1261
1417
|
"detail-cjk-light-strong-font-weight": {
|
|
1262
1418
|
"component": "detail",
|
|
1263
1419
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1264
1420
|
"value": "{extra-bold-font-weight}",
|
|
1265
|
-
"uuid": "91231878-73dc-46ce-a277-1d14e0e36842"
|
|
1421
|
+
"uuid": "91231878-73dc-46ce-a277-1d14e0e36842",
|
|
1422
|
+
"deprecated": true
|
|
1266
1423
|
},
|
|
1267
1424
|
"detail-cjk-light-strong-font-style": {
|
|
1268
1425
|
"component": "detail",
|
|
1269
1426
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1270
1427
|
"value": "{default-font-style}",
|
|
1271
|
-
"uuid": "ec87fefe-f35f-41a0-9be1-6d076f0db230"
|
|
1428
|
+
"uuid": "ec87fefe-f35f-41a0-9be1-6d076f0db230",
|
|
1429
|
+
"deprecated": true
|
|
1272
1430
|
},
|
|
1273
1431
|
"detail-sans-serif-emphasized-font-weight": {
|
|
1274
1432
|
"component": "detail",
|
|
1275
1433
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1276
|
-
"value": "{
|
|
1434
|
+
"value": "{regular-font-weight}",
|
|
1277
1435
|
"uuid": "6ca600be-010a-4aaa-a815-e5bfdbe36b21"
|
|
1278
1436
|
},
|
|
1279
1437
|
"detail-sans-serif-emphasized-font-style": {
|
|
@@ -1285,7 +1443,7 @@
|
|
|
1285
1443
|
"detail-serif-emphasized-font-weight": {
|
|
1286
1444
|
"component": "detail",
|
|
1287
1445
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1288
|
-
"value": "{
|
|
1446
|
+
"value": "{medium-font-weight}",
|
|
1289
1447
|
"uuid": "247b2004-e0bc-42b9-ba83-6edbe417c4cb"
|
|
1290
1448
|
},
|
|
1291
1449
|
"detail-serif-emphasized-font-style": {
|
|
@@ -1297,7 +1455,7 @@
|
|
|
1297
1455
|
"detail-cjk-emphasized-font-weight": {
|
|
1298
1456
|
"component": "detail",
|
|
1299
1457
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1300
|
-
"value": "{
|
|
1458
|
+
"value": "{extra-bold-font-weight}",
|
|
1301
1459
|
"uuid": "aa70fa2d-87ee-4e67-b230-85f400ddd7d1"
|
|
1302
1460
|
},
|
|
1303
1461
|
"detail-cjk-emphasized-font-style": {
|
|
@@ -1310,37 +1468,43 @@
|
|
|
1310
1468
|
"component": "detail",
|
|
1311
1469
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1312
1470
|
"value": "{regular-font-weight}",
|
|
1313
|
-
"uuid": "64972012-5050-41d0-9c9b-269b533a58b7"
|
|
1471
|
+
"uuid": "64972012-5050-41d0-9c9b-269b533a58b7",
|
|
1472
|
+
"deprecated": true
|
|
1314
1473
|
},
|
|
1315
1474
|
"detail-sans-serif-light-emphasized-font-style": {
|
|
1316
1475
|
"component": "detail",
|
|
1317
1476
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1318
1477
|
"value": "{italic-font-style}",
|
|
1319
|
-
"uuid": "fc6098a2-3263-433c-8378-ba609629ef53"
|
|
1478
|
+
"uuid": "fc6098a2-3263-433c-8378-ba609629ef53",
|
|
1479
|
+
"deprecated": true
|
|
1320
1480
|
},
|
|
1321
1481
|
"detail-serif-light-emphasized-font-weight": {
|
|
1322
1482
|
"component": "detail",
|
|
1323
1483
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1324
1484
|
"value": "{regular-font-weight}",
|
|
1325
|
-
"uuid": "3d27f76e-b068-4f06-bea8-ee31fcbc49b2"
|
|
1485
|
+
"uuid": "3d27f76e-b068-4f06-bea8-ee31fcbc49b2",
|
|
1486
|
+
"deprecated": true
|
|
1326
1487
|
},
|
|
1327
1488
|
"detail-serif-light-emphasized-font-style": {
|
|
1328
1489
|
"component": "detail",
|
|
1329
1490
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1330
1491
|
"value": "{italic-font-style}",
|
|
1331
|
-
"uuid": "320bcd8e-2bb8-4e9e-9b1d-4838b2966857"
|
|
1492
|
+
"uuid": "320bcd8e-2bb8-4e9e-9b1d-4838b2966857",
|
|
1493
|
+
"deprecated": true
|
|
1332
1494
|
},
|
|
1333
1495
|
"detail-cjk-light-emphasized-font-weight": {
|
|
1334
1496
|
"component": "detail",
|
|
1335
1497
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1336
1498
|
"value": "{regular-font-weight}",
|
|
1337
|
-
"uuid": "279d9a16-279f-4788-b5b0-af825a4b5d40"
|
|
1499
|
+
"uuid": "279d9a16-279f-4788-b5b0-af825a4b5d40",
|
|
1500
|
+
"deprecated": true
|
|
1338
1501
|
},
|
|
1339
1502
|
"detail-cjk-light-emphasized-font-style": {
|
|
1340
1503
|
"component": "detail",
|
|
1341
1504
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1342
1505
|
"value": "{default-font-style}",
|
|
1343
|
-
"uuid": "c7b1b312-cd81-4c65-8a67-017f91aee40b"
|
|
1506
|
+
"uuid": "c7b1b312-cd81-4c65-8a67-017f91aee40b",
|
|
1507
|
+
"deprecated": true
|
|
1344
1508
|
},
|
|
1345
1509
|
"detail-sans-serif-strong-emphasized-font-weight": {
|
|
1346
1510
|
"component": "detail",
|
|
@@ -1369,7 +1533,7 @@
|
|
|
1369
1533
|
"detail-cjk-strong-emphasized-font-weight": {
|
|
1370
1534
|
"component": "detail",
|
|
1371
1535
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1372
|
-
"value": "{
|
|
1536
|
+
"value": "{extra-bold-font-weight}",
|
|
1373
1537
|
"uuid": "a7007c07-15a4-4671-bd3b-7406f4b374bb"
|
|
1374
1538
|
},
|
|
1375
1539
|
"detail-cjk-strong-emphasized-font-style": {
|
|
@@ -1382,60 +1546,66 @@
|
|
|
1382
1546
|
"component": "detail",
|
|
1383
1547
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1384
1548
|
"value": "{regular-font-weight}",
|
|
1385
|
-
"uuid": "53f16a1c-9d44-4384-9a7e-88a2c4319486"
|
|
1549
|
+
"uuid": "53f16a1c-9d44-4384-9a7e-88a2c4319486",
|
|
1550
|
+
"deprecated": true
|
|
1386
1551
|
},
|
|
1387
1552
|
"detail-sans-serif-light-strong-emphasized-font-style": {
|
|
1388
1553
|
"component": "detail",
|
|
1389
1554
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1390
1555
|
"value": "{italic-font-style}",
|
|
1391
|
-
"uuid": "b7364639-2686-4e12-9ede-d6543d0d0d6d"
|
|
1556
|
+
"uuid": "b7364639-2686-4e12-9ede-d6543d0d0d6d",
|
|
1557
|
+
"deprecated": true
|
|
1392
1558
|
},
|
|
1393
1559
|
"detail-serif-light-strong-emphasized-font-weight": {
|
|
1394
1560
|
"component": "detail",
|
|
1395
1561
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1396
1562
|
"value": "{regular-font-weight}",
|
|
1397
|
-
"uuid": "1c524d85-9fca-433c-b5c4-5eaa456cc3a2"
|
|
1563
|
+
"uuid": "1c524d85-9fca-433c-b5c4-5eaa456cc3a2",
|
|
1564
|
+
"deprecated": true
|
|
1398
1565
|
},
|
|
1399
1566
|
"detail-serif-light-strong-emphasized-font-style": {
|
|
1400
1567
|
"component": "detail",
|
|
1401
1568
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1402
1569
|
"value": "{italic-font-style}",
|
|
1403
|
-
"uuid": "42d2049f-cda2-4ae4-8d0a-41f7789f768b"
|
|
1570
|
+
"uuid": "42d2049f-cda2-4ae4-8d0a-41f7789f768b",
|
|
1571
|
+
"deprecated": true
|
|
1404
1572
|
},
|
|
1405
1573
|
"detail-cjk-light-strong-emphasized-font-weight": {
|
|
1406
1574
|
"component": "detail",
|
|
1407
1575
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1408
1576
|
"value": "{extra-bold-font-weight}",
|
|
1409
|
-
"uuid": "0bc51146-a3e5-48c4-8324-4490b9d30f4d"
|
|
1577
|
+
"uuid": "0bc51146-a3e5-48c4-8324-4490b9d30f4d",
|
|
1578
|
+
"deprecated": true
|
|
1410
1579
|
},
|
|
1411
1580
|
"detail-cjk-light-strong-emphasized-font-style": {
|
|
1412
1581
|
"component": "detail",
|
|
1413
1582
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1414
1583
|
"value": "{default-font-style}",
|
|
1415
|
-
"uuid": "1d4235ff-c183-4d6c-8277-9783e3e1ce7a"
|
|
1584
|
+
"uuid": "1d4235ff-c183-4d6c-8277-9783e3e1ce7a",
|
|
1585
|
+
"deprecated": true
|
|
1416
1586
|
},
|
|
1417
1587
|
"detail-size-xl": {
|
|
1418
1588
|
"component": "detail",
|
|
1419
1589
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1420
|
-
"value": "{font-size-
|
|
1590
|
+
"value": "{font-size-300}",
|
|
1421
1591
|
"uuid": "ab476eec-b592-4890-af8f-74de808cb87f"
|
|
1422
1592
|
},
|
|
1423
1593
|
"detail-size-l": {
|
|
1424
1594
|
"component": "detail",
|
|
1425
1595
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1426
|
-
"value": "{font-size-
|
|
1596
|
+
"value": "{font-size-200}",
|
|
1427
1597
|
"uuid": "613da587-5c48-4efa-abb5-36378c1e81f0"
|
|
1428
1598
|
},
|
|
1429
1599
|
"detail-size-m": {
|
|
1430
1600
|
"component": "detail",
|
|
1431
1601
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1432
|
-
"value": "{font-size-
|
|
1602
|
+
"value": "{font-size-100}",
|
|
1433
1603
|
"uuid": "07840554-1ec1-4823-b119-474ec9cc31f0"
|
|
1434
1604
|
},
|
|
1435
1605
|
"detail-size-s": {
|
|
1436
1606
|
"component": "detail",
|
|
1437
1607
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1438
|
-
"value": "{font-size-
|
|
1608
|
+
"value": "{font-size-75}",
|
|
1439
1609
|
"uuid": "585e1bec-ee93-4983-b0bb-3a1f6ec28218"
|
|
1440
1610
|
},
|
|
1441
1611
|
"detail-line-height": {
|
|
@@ -1453,39 +1623,78 @@
|
|
|
1453
1623
|
"detail-margin-top-multiplier": {
|
|
1454
1624
|
"component": "detail",
|
|
1455
1625
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
1456
|
-
"value":
|
|
1626
|
+
"value": 0.88888889,
|
|
1457
1627
|
"uuid": "5d34c3b5-fddd-420b-bfe4-0dee4e07701c"
|
|
1458
1628
|
},
|
|
1459
1629
|
"detail-margin-bottom-multiplier": {
|
|
1460
1630
|
"component": "detail",
|
|
1461
1631
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
1462
|
-
"value":
|
|
1632
|
+
"value": 0.25,
|
|
1463
1633
|
"uuid": "35ac24a4-0338-44c6-b780-120a0af0fc51"
|
|
1464
1634
|
},
|
|
1465
1635
|
"detail-letter-spacing": {
|
|
1466
1636
|
"component": "detail",
|
|
1467
1637
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json",
|
|
1468
1638
|
"value": "0.06em",
|
|
1469
|
-
"uuid": "c4dbe044-dc8c-4722-b36c-5442cd2bc279"
|
|
1639
|
+
"uuid": "c4dbe044-dc8c-4722-b36c-5442cd2bc279",
|
|
1640
|
+
"deprecated": true
|
|
1470
1641
|
},
|
|
1471
1642
|
"detail-sans-serif-text-transform": {
|
|
1472
1643
|
"component": "detail",
|
|
1473
1644
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json",
|
|
1474
1645
|
"value": "uppercase",
|
|
1475
|
-
"uuid": "8646d403-21f9-4e77-8a21-92289c303715"
|
|
1646
|
+
"uuid": "8646d403-21f9-4e77-8a21-92289c303715",
|
|
1647
|
+
"deprecated": true
|
|
1476
1648
|
},
|
|
1477
1649
|
"detail-serif-text-transform": {
|
|
1478
1650
|
"component": "detail",
|
|
1479
1651
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json",
|
|
1480
1652
|
"value": "uppercase",
|
|
1481
|
-
"uuid": "0e161c32-c412-4cda-bacb-7eaa548b5534"
|
|
1653
|
+
"uuid": "0e161c32-c412-4cda-bacb-7eaa548b5534",
|
|
1654
|
+
"deprecated": true
|
|
1482
1655
|
},
|
|
1483
1656
|
"detail-color": {
|
|
1484
1657
|
"component": "detail",
|
|
1485
1658
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1486
|
-
"value": "{gray-
|
|
1659
|
+
"value": "{gray-600}",
|
|
1487
1660
|
"uuid": "5f6b9d7a-2433-44fa-8de5-1fb40137e334"
|
|
1488
1661
|
},
|
|
1662
|
+
"detail-cjk-size-xs": {
|
|
1663
|
+
"component": "detail",
|
|
1664
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1665
|
+
"value": "{font-size-25}",
|
|
1666
|
+
"uuid": "e6d8e8ae-d9a3-42fb-b4c7-f2e893b926f1"
|
|
1667
|
+
},
|
|
1668
|
+
"detail-cjk-size-s": {
|
|
1669
|
+
"component": "detail",
|
|
1670
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1671
|
+
"value": "{font-size-50}",
|
|
1672
|
+
"uuid": "8eb0f29f-71a1-4aa5-a3ed-98a373baf620"
|
|
1673
|
+
},
|
|
1674
|
+
"detail-cjk-size-m": {
|
|
1675
|
+
"component": "detail",
|
|
1676
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1677
|
+
"value": "{font-size-75}",
|
|
1678
|
+
"uuid": "236c73fb-d3bc-4390-8682-dd06fbd92d23"
|
|
1679
|
+
},
|
|
1680
|
+
"detail-cjk-size-l": {
|
|
1681
|
+
"component": "detail",
|
|
1682
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1683
|
+
"value": "{font-size-100}",
|
|
1684
|
+
"uuid": "92399d83-aa71-4207-b533-4fe69e6271e2"
|
|
1685
|
+
},
|
|
1686
|
+
"detail-cjk-size-xl": {
|
|
1687
|
+
"component": "detail",
|
|
1688
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1689
|
+
"value": "{font-size-200}",
|
|
1690
|
+
"uuid": "533265d4-7304-4688-b2fb-379a086b20bf"
|
|
1691
|
+
},
|
|
1692
|
+
"detail-size-xs": {
|
|
1693
|
+
"component": "detail",
|
|
1694
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1695
|
+
"value": "{font-size-50}",
|
|
1696
|
+
"uuid": "b33a59b4-1ec2-4f09-8cb3-9bfd09d7c695"
|
|
1697
|
+
},
|
|
1489
1698
|
"code-font-family": {
|
|
1490
1699
|
"component": "code",
|
|
1491
1700
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json",
|
|
@@ -1537,7 +1746,7 @@
|
|
|
1537
1746
|
"code-cjk-strong-font-weight": {
|
|
1538
1747
|
"component": "code",
|
|
1539
1748
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1540
|
-
"value": "{
|
|
1749
|
+
"value": "{bold-font-weight}",
|
|
1541
1750
|
"uuid": "ed73f5fc-5b7a-4414-8f1c-325e7944a9e1"
|
|
1542
1751
|
},
|
|
1543
1752
|
"code-cjk-strong-font-style": {
|
|
@@ -1585,7 +1794,7 @@
|
|
|
1585
1794
|
"code-cjk-strong-emphasized-font-weight": {
|
|
1586
1795
|
"component": "code",
|
|
1587
1796
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1588
|
-
"value": "{
|
|
1797
|
+
"value": "{bold-font-weight}",
|
|
1589
1798
|
"uuid": "8ed5c5e0-ff72-4937-98fd-fd09f1fab288"
|
|
1590
1799
|
},
|
|
1591
1800
|
"code-cjk-strong-emphasized-font-style": {
|