@adobe/spectrum-tokens 12.26.0 → 12.28.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 +72 -0
- package/dist/json/drover.json +67 -26
- package/dist/json/variables.json +281 -70
- package/package.json +4 -4
- package/schemas/token-types/color-set.json +5 -18
- package/schemas/token-types/gradient-stop.json +27 -0
- package/schemas/token-types/multiplier.json +1 -1
- package/schemas/token-types/scale-set.json +8 -6
- package/schemas/token-types/text-align.json +27 -0
- package/schemas/token-types/token.json +8 -1
- package/src/color-palette.json +60 -0
- package/src/layout-component.json +74 -8
- package/src/typography.json +43 -22
- package/test/snapshots/deprecateExpress.test.js.md +1 -1
- package/test/snapshots/deprecateExpress.test.js.snap +0 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json",
|
|
4
|
+
"title": "Color Stop",
|
|
5
|
+
"description": "Gradient stop positions, being a ratio along the gradient's axis. Start is 0, end is 1.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"allOf": [
|
|
8
|
+
{
|
|
9
|
+
"$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"properties": {
|
|
13
|
+
"$schema": {
|
|
14
|
+
"const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json"
|
|
15
|
+
},
|
|
16
|
+
"value": {
|
|
17
|
+
"type": "number",
|
|
18
|
+
"minimum": 0,
|
|
19
|
+
"maximum": 1
|
|
20
|
+
},
|
|
21
|
+
"component": {},
|
|
22
|
+
"private": {},
|
|
23
|
+
"deprecated": {},
|
|
24
|
+
"deprecated_comment": {},
|
|
25
|
+
"uuid": {}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -26,6 +26,9 @@
|
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json"
|
|
29
32
|
}
|
|
30
33
|
]
|
|
31
34
|
},
|
|
@@ -39,6 +42,9 @@
|
|
|
39
42
|
},
|
|
40
43
|
{
|
|
41
44
|
"$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json"
|
|
42
48
|
}
|
|
43
49
|
]
|
|
44
50
|
}
|
|
@@ -49,11 +55,7 @@
|
|
|
49
55
|
"private": {},
|
|
50
56
|
"deprecated": {},
|
|
51
57
|
"deprecated_comment": {},
|
|
52
|
-
"uuid": {
|
|
53
|
-
"type": "string",
|
|
54
|
-
"pattern": "^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$",
|
|
55
|
-
"format": "uuid"
|
|
56
|
-
}
|
|
58
|
+
"uuid": {}
|
|
57
59
|
},
|
|
58
|
-
"required": ["sets"
|
|
60
|
+
"required": ["sets"]
|
|
59
61
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json",
|
|
4
|
+
"title": "Text align",
|
|
5
|
+
"description": "Sets the horizontal alignment of the inline-level content inside a block element",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"allOf": [
|
|
8
|
+
{
|
|
9
|
+
"$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"properties": {
|
|
13
|
+
"$schema": {
|
|
14
|
+
"const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json"
|
|
15
|
+
},
|
|
16
|
+
"value": {
|
|
17
|
+
"type": "string",
|
|
18
|
+
"enum": ["start", "center", "end"],
|
|
19
|
+
"default": "start"
|
|
20
|
+
},
|
|
21
|
+
"component": {},
|
|
22
|
+
"private": {},
|
|
23
|
+
"deprecated": {},
|
|
24
|
+
"deprecated_comment": {},
|
|
25
|
+
"uuid": {}
|
|
26
|
+
}
|
|
27
|
+
}
|
package/src/color-palette.json
CHANGED
|
@@ -5329,5 +5329,65 @@
|
|
|
5329
5329
|
},
|
|
5330
5330
|
"private": true,
|
|
5331
5331
|
"uuid": "336a0cef-c962-4847-9eba-2d6e9571c790"
|
|
5332
|
+
},
|
|
5333
|
+
"static-blue-900": {
|
|
5334
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json",
|
|
5335
|
+
"value": "rgb(59, 99, 251)",
|
|
5336
|
+
"private": true,
|
|
5337
|
+
"uuid": "a77887aa-da75-41bd-8bc1-43e41ab5132f"
|
|
5338
|
+
},
|
|
5339
|
+
"static-blue-1000": {
|
|
5340
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json",
|
|
5341
|
+
"value": "rgb(39, 77, 234)",
|
|
5342
|
+
"private": true,
|
|
5343
|
+
"uuid": "fe65be29-fd3b-4712-84c9-d8ef84a94a53"
|
|
5344
|
+
},
|
|
5345
|
+
"static-fuchsia-900": {
|
|
5346
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json",
|
|
5347
|
+
"value": "rgb(181, 57, 200)",
|
|
5348
|
+
"private": true,
|
|
5349
|
+
"uuid": "6d329081-9b84-47d5-a7ec-e01726a22c3c"
|
|
5350
|
+
},
|
|
5351
|
+
"static-fuchsia-1000": {
|
|
5352
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json",
|
|
5353
|
+
"value": "rgb(156, 40, 175)",
|
|
5354
|
+
"private": true,
|
|
5355
|
+
"uuid": "b7318f1c-ce64-43f3-b405-f71554b22f69"
|
|
5356
|
+
},
|
|
5357
|
+
"static-indigo-900": {
|
|
5358
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json",
|
|
5359
|
+
"value": "rgb(113, 85, 250)",
|
|
5360
|
+
"private": true,
|
|
5361
|
+
"uuid": "b458f7a4-eb22-4741-9a5a-f65c9f4a4e63"
|
|
5362
|
+
},
|
|
5363
|
+
"static-indigo-1000": {
|
|
5364
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json",
|
|
5365
|
+
"value": "rgb(99, 56, 238)",
|
|
5366
|
+
"private": true,
|
|
5367
|
+
"uuid": "c938f37b-23a3-424a-b6de-9fe3289e9b46"
|
|
5368
|
+
},
|
|
5369
|
+
"static-magenta-900": {
|
|
5370
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json",
|
|
5371
|
+
"value": "rgb(217, 35, 97)",
|
|
5372
|
+
"private": true,
|
|
5373
|
+
"uuid": "dff48efb-7044-427f-94ad-625e1a5780ab"
|
|
5374
|
+
},
|
|
5375
|
+
"static-magenta-1000": {
|
|
5376
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json",
|
|
5377
|
+
"value": "rgb(186, 22, 80)",
|
|
5378
|
+
"private": true,
|
|
5379
|
+
"uuid": "a8375133-a8ba-4537-83ab-83b6948adcd8"
|
|
5380
|
+
},
|
|
5381
|
+
"static-red-900": {
|
|
5382
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json",
|
|
5383
|
+
"value": "rgb(215, 50, 32)",
|
|
5384
|
+
"private": true,
|
|
5385
|
+
"uuid": "f76d5058-5a46-4678-b467-2f7cb1b97297"
|
|
5386
|
+
},
|
|
5387
|
+
"static-red-1000": {
|
|
5388
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json",
|
|
5389
|
+
"value": "rgb(183, 40, 24)",
|
|
5390
|
+
"private": true,
|
|
5391
|
+
"uuid": "c6d6fd48-385e-4e39-98e7-e4d7d7f060ed"
|
|
5332
5392
|
}
|
|
5333
5393
|
}
|
|
@@ -1741,7 +1741,7 @@
|
|
|
1741
1741
|
"button-minimum-width-multiplier": {
|
|
1742
1742
|
"component": "button",
|
|
1743
1743
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
1744
|
-
"value":
|
|
1744
|
+
"value": 2.25,
|
|
1745
1745
|
"uuid": "68b6ac88-d229-460d-8d59-3f5c141db358"
|
|
1746
1746
|
},
|
|
1747
1747
|
"tooltip-tip-width": {
|
|
@@ -2105,7 +2105,7 @@
|
|
|
2105
2105
|
"swatch-rectangle-width-multiplier": {
|
|
2106
2106
|
"component": "swatch",
|
|
2107
2107
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
2108
|
-
"value":
|
|
2108
|
+
"value": 2,
|
|
2109
2109
|
"uuid": "b3157e9d-82a0-429e-b987-8c240a669af7"
|
|
2110
2110
|
},
|
|
2111
2111
|
"swatch-slash-thickness-extra-small": {
|
|
@@ -3449,7 +3449,7 @@
|
|
|
3449
3449
|
"picker-minimum-width-multiplier": {
|
|
3450
3450
|
"component": "picker",
|
|
3451
3451
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
3452
|
-
"value":
|
|
3452
|
+
"value": 2,
|
|
3453
3453
|
"uuid": "67b68a30-ae00-4da2-9730-99196a2eaf96"
|
|
3454
3454
|
},
|
|
3455
3455
|
"picker-visual-to-disclosure-icon-small": {
|
|
@@ -3554,7 +3554,7 @@
|
|
|
3554
3554
|
"text-field-minimum-width-multiplier": {
|
|
3555
3555
|
"component": "text-field",
|
|
3556
3556
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
3557
|
-
"value":
|
|
3557
|
+
"value": 1.5,
|
|
3558
3558
|
"uuid": "875bbeaf-b4b7-41b9-8e6f-d6a57ec03049"
|
|
3559
3559
|
},
|
|
3560
3560
|
"text-area-minimum-width": {
|
|
@@ -3594,13 +3594,13 @@
|
|
|
3594
3594
|
"combo-box-minimum-width-multiplier": {
|
|
3595
3595
|
"component": "combo-box",
|
|
3596
3596
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
3597
|
-
"value":
|
|
3597
|
+
"value": 2.5,
|
|
3598
3598
|
"uuid": "eabcc77a-f263-43ed-9944-9daa78a56b66"
|
|
3599
3599
|
},
|
|
3600
3600
|
"combo-box-quiet-minimum-width-multiplier": {
|
|
3601
3601
|
"component": "combo-box",
|
|
3602
3602
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
3603
|
-
"value":
|
|
3603
|
+
"value": 2,
|
|
3604
3604
|
"uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b"
|
|
3605
3605
|
},
|
|
3606
3606
|
"combo-box-visual-to-field-button-small": {
|
|
@@ -4809,7 +4809,7 @@
|
|
|
4809
4809
|
"search-field-minimum-width-multiplier": {
|
|
4810
4810
|
"component": "search-field",
|
|
4811
4811
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
4812
|
-
"value":
|
|
4812
|
+
"value": 3,
|
|
4813
4813
|
"uuid": "c4b2177d-4468-4180-be27-69d26a51ba0b"
|
|
4814
4814
|
},
|
|
4815
4815
|
"color-loupe-height": {
|
|
@@ -7971,8 +7971,8 @@
|
|
|
7971
7971
|
"uuid": "e2f9f620-b8f0-4fb7-a9b0-e78f13a0ac03"
|
|
7972
7972
|
},
|
|
7973
7973
|
"accordion-top-to-text-spacious-small": {
|
|
7974
|
-
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json",
|
|
7975
7974
|
"component": "accordion",
|
|
7975
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json",
|
|
7976
7976
|
"sets": {
|
|
7977
7977
|
"desktop": {
|
|
7978
7978
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json",
|
|
@@ -7986,5 +7986,71 @@
|
|
|
7986
7986
|
}
|
|
7987
7987
|
},
|
|
7988
7988
|
"uuid": "bdf7a208-dbfa-4a66-9138-baec261d2908"
|
|
7989
|
+
},
|
|
7990
|
+
"detail-cjk-size-xl": {
|
|
7991
|
+
"component": "detail",
|
|
7992
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
7993
|
+
"value": "{font-size-100}",
|
|
7994
|
+
"uuid": "1bbf01a7-c624-452f-a6b6-8486724bc362"
|
|
7995
|
+
},
|
|
7996
|
+
"detail-cjk-size-l": {
|
|
7997
|
+
"component": "detail",
|
|
7998
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
7999
|
+
"value": "{font-size-75}",
|
|
8000
|
+
"uuid": "e9c9bf5a-b7a1-4a53-8335-66697c5bd44f"
|
|
8001
|
+
},
|
|
8002
|
+
"detail-cjk-size-m": {
|
|
8003
|
+
"component": "detail",
|
|
8004
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
8005
|
+
"value": "{font-size-50}",
|
|
8006
|
+
"uuid": "16915081-2765-4553-9e8c-7acb686938cc"
|
|
8007
|
+
},
|
|
8008
|
+
"detail-cjk-size-s": {
|
|
8009
|
+
"component": "detail",
|
|
8010
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
8011
|
+
"value": "{font-size-25}",
|
|
8012
|
+
"uuid": "648162b2-154f-459c-a261-8226bf855714"
|
|
8013
|
+
},
|
|
8014
|
+
"body-cjk-size-xxxl": {
|
|
8015
|
+
"component": "body",
|
|
8016
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
8017
|
+
"value": "{font-size-500}",
|
|
8018
|
+
"uuid": "71a41f9e-73da-4632-8877-7af7acf4db03"
|
|
8019
|
+
},
|
|
8020
|
+
"body-cjk-size-xxl": {
|
|
8021
|
+
"component": "body",
|
|
8022
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
8023
|
+
"value": "{font-size-400}",
|
|
8024
|
+
"uuid": "9aab03eb-c0c1-462c-aa7c-88c93b06f714"
|
|
8025
|
+
},
|
|
8026
|
+
"body-cjk-size-xl": {
|
|
8027
|
+
"component": "body",
|
|
8028
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
8029
|
+
"value": "{font-size-300}",
|
|
8030
|
+
"uuid": "25d65a6e-e8e1-4849-848a-984373fd9cf9"
|
|
8031
|
+
},
|
|
8032
|
+
"body-cjk-size-l": {
|
|
8033
|
+
"component": "body",
|
|
8034
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
8035
|
+
"value": "{font-size-200}",
|
|
8036
|
+
"uuid": "9f0e0ddb-a4d2-416e-a425-8d71527f77b2"
|
|
8037
|
+
},
|
|
8038
|
+
"body-cjk-size-m": {
|
|
8039
|
+
"component": "body",
|
|
8040
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
8041
|
+
"value": "{font-size-100}",
|
|
8042
|
+
"uuid": "7e01bc65-5823-456f-a830-9848a96ad85a"
|
|
8043
|
+
},
|
|
8044
|
+
"body-cjk-size-s": {
|
|
8045
|
+
"component": "body",
|
|
8046
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
8047
|
+
"value": "{font-size-75}",
|
|
8048
|
+
"uuid": "081aa502-e2f1-4bc8-8fb2-a00dcd4236dd"
|
|
8049
|
+
},
|
|
8050
|
+
"body-cjk-size-xs": {
|
|
8051
|
+
"component": "body",
|
|
8052
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
8053
|
+
"value": "{font-size-50}",
|
|
8054
|
+
"uuid": "ba73926d-2ef4-4d7b-86c2-9044aa1cdf95"
|
|
7989
8055
|
}
|
|
7990
8056
|
}
|
package/src/typography.json
CHANGED
|
@@ -59,6 +59,22 @@
|
|
|
59
59
|
"value": "normal",
|
|
60
60
|
"uuid": "25668698-bf78-46f4-bc6c-8fea068ddb34"
|
|
61
61
|
},
|
|
62
|
+
"font-size-25": {
|
|
63
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json",
|
|
64
|
+
"sets": {
|
|
65
|
+
"desktop": {
|
|
66
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json",
|
|
67
|
+
"value": "10px",
|
|
68
|
+
"uuid": "26ab49ea-7e86-4f0d-812e-ef1ba794c8a8"
|
|
69
|
+
},
|
|
70
|
+
"mobile": {
|
|
71
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json",
|
|
72
|
+
"value": "12px",
|
|
73
|
+
"uuid": "5946a4e5-8bed-4dd7-aa73-9ebe232f9790"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"uuid": "f0c5ab51-5fc0-417d-a57a-edd12a62847e"
|
|
77
|
+
},
|
|
62
78
|
"font-size-50": {
|
|
63
79
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json",
|
|
64
80
|
"sets": {
|
|
@@ -299,29 +315,34 @@
|
|
|
299
315
|
},
|
|
300
316
|
"uuid": "db26e411-a118-4bef-a413-eeb383e85f37"
|
|
301
317
|
},
|
|
318
|
+
"letter-spacing": {
|
|
319
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json",
|
|
320
|
+
"value": "0em",
|
|
321
|
+
"uuid": "d8caf3aa-1261-411f-b383-18f87334c117"
|
|
322
|
+
},
|
|
302
323
|
"line-height-100": {
|
|
303
324
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
304
|
-
"value":
|
|
325
|
+
"value": 1.3,
|
|
305
326
|
"uuid": "dd125d1d-cf4d-45c8-ab21-52331a9a264b"
|
|
306
327
|
},
|
|
307
328
|
"line-height-200": {
|
|
308
329
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
309
|
-
"value":
|
|
330
|
+
"value": 1.5,
|
|
310
331
|
"uuid": "832f2589-0e75-48dd-bbe3-e3f5b98e6c97"
|
|
311
332
|
},
|
|
312
333
|
"cjk-line-height-100": {
|
|
313
334
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
314
|
-
"value":
|
|
335
|
+
"value": 1.5,
|
|
315
336
|
"uuid": "8b4ab68d-9060-4e11-9ecc-3b9d3db27fe4"
|
|
316
337
|
},
|
|
317
338
|
"cjk-line-height-200": {
|
|
318
339
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
319
|
-
"value":
|
|
340
|
+
"value": 1.7,
|
|
320
341
|
"uuid": "c5a5d186-54b3-44a0-b1c6-e9b102871015"
|
|
321
342
|
},
|
|
322
343
|
"cjk-letter-spacing": {
|
|
323
|
-
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/
|
|
324
|
-
"value": "
|
|
344
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
345
|
+
"value": "{letter-spacing}",
|
|
325
346
|
"uuid": "12e27721-35f5-4d03-95f3-3fc9e1cf50e4"
|
|
326
347
|
},
|
|
327
348
|
"heading-sans-serif-font-family": {
|
|
@@ -480,7 +501,7 @@
|
|
|
480
501
|
"heading-cjk-heavy-font-weight": {
|
|
481
502
|
"component": "heading",
|
|
482
503
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
483
|
-
"value": "{
|
|
504
|
+
"value": "{extra-bold-font-weight}",
|
|
484
505
|
"uuid": "73c20d2f-1227-46bc-8548-102358405b0b"
|
|
485
506
|
},
|
|
486
507
|
"heading-cjk-heavy-font-style": {
|
|
@@ -890,13 +911,13 @@
|
|
|
890
911
|
"heading-cjk-size-xxxl": {
|
|
891
912
|
"component": "heading",
|
|
892
913
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
893
|
-
"value": "{font-size-
|
|
914
|
+
"value": "{font-size-1200}",
|
|
894
915
|
"uuid": "5a44e177-2478-4bb0-9212-ba2df64c8b00"
|
|
895
916
|
},
|
|
896
917
|
"heading-cjk-size-xxl": {
|
|
897
918
|
"component": "heading",
|
|
898
919
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
899
|
-
"value": "{font-size-
|
|
920
|
+
"value": "{font-size-1000}",
|
|
900
921
|
"uuid": "fbf59302-1ad2-4327-bfde-d638a0ca2429"
|
|
901
922
|
},
|
|
902
923
|
"heading-cjk-size-xl": {
|
|
@@ -920,19 +941,19 @@
|
|
|
920
941
|
"heading-cjk-size-s": {
|
|
921
942
|
"component": "heading",
|
|
922
943
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
923
|
-
"value": "{font-size-
|
|
944
|
+
"value": "{font-size-200}",
|
|
924
945
|
"uuid": "c1242a8c-ca10-40d0-8fc4-67bbbce8fc5f"
|
|
925
946
|
},
|
|
926
947
|
"heading-cjk-size-xs": {
|
|
927
948
|
"component": "heading",
|
|
928
949
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
929
|
-
"value": "{font-size-
|
|
950
|
+
"value": "{font-size-100}",
|
|
930
951
|
"uuid": "132688a7-917d-44b9-a34f-a7135599b299"
|
|
931
952
|
},
|
|
932
953
|
"heading-cjk-size-xxs": {
|
|
933
954
|
"component": "heading",
|
|
934
955
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
935
|
-
"value": "{font-size-
|
|
956
|
+
"value": "{font-size-75}",
|
|
936
957
|
"uuid": "bddd6a96-c280-47ca-8858-20df055e488d"
|
|
937
958
|
},
|
|
938
959
|
"heading-line-height": {
|
|
@@ -950,13 +971,13 @@
|
|
|
950
971
|
"heading-margin-top-multiplier": {
|
|
951
972
|
"component": "heading",
|
|
952
973
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
953
|
-
"value":
|
|
974
|
+
"value": 0.88888889,
|
|
954
975
|
"uuid": "008fa04b-6d74-416b-a6ae-ceec90f08642"
|
|
955
976
|
},
|
|
956
977
|
"heading-margin-bottom-multiplier": {
|
|
957
978
|
"component": "heading",
|
|
958
979
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
959
|
-
"value":
|
|
980
|
+
"value": 0.25,
|
|
960
981
|
"uuid": "dd2035b4-506f-41ab-a656-de3668d44e0f"
|
|
961
982
|
},
|
|
962
983
|
"heading-color": {
|
|
@@ -1046,7 +1067,7 @@
|
|
|
1046
1067
|
"body-cjk-strong-font-weight": {
|
|
1047
1068
|
"component": "body",
|
|
1048
1069
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1049
|
-
"value": "{
|
|
1070
|
+
"value": "{extra-bold-font-weight}",
|
|
1050
1071
|
"uuid": "d79de2c4-ca7c-4316-ac44-fee1a66983d7"
|
|
1051
1072
|
},
|
|
1052
1073
|
"body-cjk-strong-font-style": {
|
|
@@ -1118,7 +1139,7 @@
|
|
|
1118
1139
|
"body-cjk-strong-emphasized-font-weight": {
|
|
1119
1140
|
"component": "body",
|
|
1120
1141
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1121
|
-
"value": "{
|
|
1142
|
+
"value": "{extra-bold-font-weight}",
|
|
1122
1143
|
"uuid": "54020791-a975-4e5d-a905-8bffcc9d2d93"
|
|
1123
1144
|
},
|
|
1124
1145
|
"body-cjk-strong-emphasized-font-style": {
|
|
@@ -1184,7 +1205,7 @@
|
|
|
1184
1205
|
"body-margin-multiplier": {
|
|
1185
1206
|
"component": "body",
|
|
1186
1207
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
1187
|
-
"value":
|
|
1208
|
+
"value": 0.75,
|
|
1188
1209
|
"uuid": "8f2e9283-4cbc-4374-9757-ed8d68542c89"
|
|
1189
1210
|
},
|
|
1190
1211
|
"body-color": {
|
|
@@ -1310,7 +1331,7 @@
|
|
|
1310
1331
|
"detail-cjk-strong-font-weight": {
|
|
1311
1332
|
"component": "detail",
|
|
1312
1333
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1313
|
-
"value": "{
|
|
1334
|
+
"value": "{extra-bold-font-weight}",
|
|
1314
1335
|
"uuid": "ef2997f3-276c-4662-8644-9514590114f4"
|
|
1315
1336
|
},
|
|
1316
1337
|
"detail-cjk-strong-font-style": {
|
|
@@ -1382,7 +1403,7 @@
|
|
|
1382
1403
|
"detail-cjk-emphasized-font-weight": {
|
|
1383
1404
|
"component": "detail",
|
|
1384
1405
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1385
|
-
"value": "{
|
|
1406
|
+
"value": "{extra-bold-font-weight}",
|
|
1386
1407
|
"uuid": "aa70fa2d-87ee-4e67-b230-85f400ddd7d1"
|
|
1387
1408
|
},
|
|
1388
1409
|
"detail-cjk-emphasized-font-style": {
|
|
@@ -1454,7 +1475,7 @@
|
|
|
1454
1475
|
"detail-cjk-strong-emphasized-font-weight": {
|
|
1455
1476
|
"component": "detail",
|
|
1456
1477
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
1457
|
-
"value": "{
|
|
1478
|
+
"value": "{extra-bold-font-weight}",
|
|
1458
1479
|
"uuid": "a7007c07-15a4-4671-bd3b-7406f4b374bb"
|
|
1459
1480
|
},
|
|
1460
1481
|
"detail-cjk-strong-emphasized-font-style": {
|
|
@@ -1538,13 +1559,13 @@
|
|
|
1538
1559
|
"detail-margin-top-multiplier": {
|
|
1539
1560
|
"component": "detail",
|
|
1540
1561
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
1541
|
-
"value":
|
|
1562
|
+
"value": 0.88888889,
|
|
1542
1563
|
"uuid": "5d34c3b5-fddd-420b-bfe4-0dee4e07701c"
|
|
1543
1564
|
},
|
|
1544
1565
|
"detail-margin-bottom-multiplier": {
|
|
1545
1566
|
"component": "detail",
|
|
1546
1567
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json",
|
|
1547
|
-
"value":
|
|
1568
|
+
"value": 0.25,
|
|
1548
1569
|
"uuid": "35ac24a4-0338-44c6-b780-120a0af0fc51"
|
|
1549
1570
|
},
|
|
1550
1571
|
"detail-letter-spacing": {
|
|
Binary file
|