@patternfly/design-tokens 1.14.9 → 1.15.1
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/build/css/tokens-dark.scss +16 -16
- package/build/css/tokens-default.scss +17 -15
- package/build/css/tokens-glass-dark.scss +21 -4
- package/build/css/tokens-glass.scss +17 -4
- package/build/css/tokens-palette.scss +1 -1
- package/build/css/tokens-redhat-dark.scss +9 -2
- package/build/css/tokens-redhat-glass-dark.scss +27 -4
- package/build/css/tokens-redhat-glass.scss +17 -4
- package/build/css/tokens-redhat-highcontrast-dark.scss +5 -4
- package/build/css/tokens-redhat-highcontrast.scss +2 -2
- package/build/css/tokens-redhat.scss +1 -1
- package/build.js +44 -1
- package/package.json +1 -1
- package/patternfly-docs/content/token-layers-glass-dark.json +497 -965
- package/patternfly-docs/content/token-layers-glass.json +12337 -991
- package/patternfly-docs/content/token-layers-highcontrast-dark.json +849 -553
- package/patternfly-docs/content/token-layers-highcontrast.json +1237 -927
- package/patternfly-docs/content/token-layers-redhat-dark.json +2731 -2662
- package/patternfly-docs/content/token-layers-redhat-glass-dark.json +1700 -2230
- package/patternfly-docs/content/token-layers-redhat-glass.json +12497 -1151
- package/patternfly-docs/content/token-layers-redhat-highcontrast-dark.json +500 -373
- package/patternfly-docs/content/token-layers-redhat-highcontrast.json +1304 -998
- package/patternfly-docs/content/token-layers-redhat.json +1650 -1340
- package/plugins/export-patternfly-tokens/dist/ui.html +32 -24
- package/plugins/export-patternfly-tokens/src/ui.tsx +8 -0
- package/tokens/default/dark/base.dark.json +5 -5
- package/tokens/default/dark/charts.dark.json +20 -20
- package/tokens/default/dark/semantic.dark.json +45 -36
- package/tokens/default/glass/base.dimension.json +16 -16
- package/tokens/default/glass/base.json +2 -2
- package/tokens/default/glass/semantic.dimension.glass.json +1109 -0
- package/tokens/default/glass/semantic.glass.json +49 -40
- package/tokens/default/glass-dark/base.dark.json +5 -5
- package/tokens/default/glass-dark/semantic.glass.dark.json +56 -47
- package/tokens/default/highcontrast/base.dimension.json +16 -16
- package/tokens/default/highcontrast/base.json +2 -2
- package/tokens/default/highcontrast/semantic.dimension.highcontrast.json +51 -39
- package/tokens/default/highcontrast/semantic.highcontrast.json +41 -32
- package/tokens/default/highcontrast-dark/base.dark.json +5 -5
- package/tokens/default/highcontrast-dark/semantic.highcontrast.dark.json +44 -35
- package/tokens/default/light/base.dimension.json +16 -16
- package/tokens/default/light/base.json +2 -2
- package/tokens/default/light/charts.json +20 -20
- package/tokens/default/light/semantic.dimension.json +51 -39
- package/tokens/default/light/semantic.json +41 -32
- package/tokens/default/light/semantic.motion.json +24 -24
- package/tokens/redhat/dark/redhat.color.dark.json +71 -24
- package/tokens/redhat/glass/redhat.color.glass.json +25 -25
- package/tokens/redhat/glass/redhat.dimension.glass.json +2 -0
- package/tokens/redhat/glass-dark/redhat.color.glass.dark.json +67 -25
- package/tokens/redhat/highcontrast/redhat.color.highcontrast.json +25 -25
- package/tokens/redhat/highcontrast/redhat.dimension.highcontrast.json +6 -6
- package/tokens/redhat/highcontrast-dark/redhat.color.highcontrast.dark.json +25 -25
- package/tokens/redhat/light/redhat.color.json +25 -25
- package/tokens/redhat/light/redhat.dimension.json +6 -6
|
@@ -2,31 +2,7 @@
|
|
|
2
2
|
{
|
|
3
3
|
"global": {
|
|
4
4
|
"background": {
|
|
5
|
-
"filter": {
|
|
6
|
-
"glass": {
|
|
7
|
-
"blur": {
|
|
8
|
-
"primary": {
|
|
9
|
-
"type": "number",
|
|
10
|
-
"value": 0
|
|
11
|
-
},
|
|
12
|
-
"floating": {
|
|
13
|
-
"type": "number",
|
|
14
|
-
"value": 0
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
5
|
"color": {
|
|
20
|
-
"glass": {
|
|
21
|
-
"primary": {
|
|
22
|
-
"type": "color",
|
|
23
|
-
"value": "{global.background.color.primary.default}"
|
|
24
|
-
},
|
|
25
|
-
"floating": {
|
|
26
|
-
"type": "color",
|
|
27
|
-
"value": "{global.background.color.floating.default}"
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
6
|
"primary": {
|
|
31
7
|
"default": {
|
|
32
8
|
"description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.",
|
|
@@ -68,6 +44,14 @@
|
|
|
68
44
|
"value": "{global.background.color.600}"
|
|
69
45
|
}
|
|
70
46
|
},
|
|
47
|
+
"glass": {
|
|
48
|
+
"primary": {
|
|
49
|
+
"default": {
|
|
50
|
+
"type": "color",
|
|
51
|
+
"value": "{global.background.color.primary.default}"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
71
55
|
"floating": {
|
|
72
56
|
"default": {
|
|
73
57
|
"description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.",
|
|
@@ -83,6 +67,19 @@
|
|
|
83
67
|
"description": "Use as the clicked state for floating backgrounds",
|
|
84
68
|
"type": "color",
|
|
85
69
|
"value": "{global.background.color.200}"
|
|
70
|
+
},
|
|
71
|
+
"secondary": {
|
|
72
|
+
"default": {
|
|
73
|
+
"type": "color",
|
|
74
|
+
"value": "{global.background.color.secondary.default}"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"sticky": {
|
|
79
|
+
"default": {
|
|
80
|
+
"description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.",
|
|
81
|
+
"type": "color",
|
|
82
|
+
"value": "{global.background.color.100}"
|
|
86
83
|
}
|
|
87
84
|
},
|
|
88
85
|
"action": {
|
|
@@ -170,6 +167,14 @@
|
|
|
170
167
|
"value": "{global.background.color.500}"
|
|
171
168
|
}
|
|
172
169
|
},
|
|
170
|
+
"striped": {
|
|
171
|
+
"row": {
|
|
172
|
+
"default": {
|
|
173
|
+
"type": "color",
|
|
174
|
+
"value": "{global.background.color.700}"
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
},
|
|
173
178
|
"loading": {
|
|
174
179
|
"skeleton": {
|
|
175
180
|
"default": {
|
|
@@ -183,15 +188,13 @@
|
|
|
183
188
|
}
|
|
184
189
|
}
|
|
185
190
|
},
|
|
186
|
-
"
|
|
191
|
+
"filter": {
|
|
187
192
|
"glass": {
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
"type": "number",
|
|
194
|
-
"value": 100
|
|
193
|
+
"blur": {
|
|
194
|
+
"primary": {
|
|
195
|
+
"type": "number",
|
|
196
|
+
"value": 0
|
|
197
|
+
}
|
|
195
198
|
}
|
|
196
199
|
}
|
|
197
200
|
}
|
|
@@ -1282,6 +1285,12 @@
|
|
|
1282
1285
|
"type": "color",
|
|
1283
1286
|
"value": "{global.border.color.400}"
|
|
1284
1287
|
},
|
|
1288
|
+
"glass": {
|
|
1289
|
+
"default": {
|
|
1290
|
+
"type": "color",
|
|
1291
|
+
"value": "{global.border.color.subtle}"
|
|
1292
|
+
}
|
|
1293
|
+
},
|
|
1285
1294
|
"nonstatus": {
|
|
1286
1295
|
"red": {
|
|
1287
1296
|
"default": {
|
|
@@ -69,15 +69,15 @@
|
|
|
69
69
|
},
|
|
70
70
|
"200": {
|
|
71
71
|
"type": "color",
|
|
72
|
-
"value": "{color.red.
|
|
72
|
+
"value": "{color.red.60}"
|
|
73
73
|
},
|
|
74
74
|
"300": {
|
|
75
75
|
"type": "color",
|
|
76
|
-
"value": "{color.red.
|
|
76
|
+
"value": "{color.red.40}"
|
|
77
77
|
},
|
|
78
78
|
"350": {
|
|
79
79
|
"type": "color",
|
|
80
|
-
"value": "{color.
|
|
80
|
+
"value": "{color.gray.20}"
|
|
81
81
|
},
|
|
82
82
|
"400": {
|
|
83
83
|
"type": "color",
|
|
@@ -382,7 +382,7 @@
|
|
|
382
382
|
},
|
|
383
383
|
"100": {
|
|
384
384
|
"type": "color",
|
|
385
|
-
"value": "{color.gray.
|
|
385
|
+
"value": "{color.gray.60}"
|
|
386
386
|
},
|
|
387
387
|
"200": {
|
|
388
388
|
"type": "color",
|
|
@@ -456,7 +456,7 @@
|
|
|
456
456
|
},
|
|
457
457
|
"200": {
|
|
458
458
|
"type": "color",
|
|
459
|
-
"value": "rgba(0, 0, 0, 0.
|
|
459
|
+
"value": "rgba(0, 0, 0, 0.6000)"
|
|
460
460
|
}
|
|
461
461
|
}
|
|
462
462
|
},
|
|
@@ -2,31 +2,7 @@
|
|
|
2
2
|
{
|
|
3
3
|
"global": {
|
|
4
4
|
"background": {
|
|
5
|
-
"filter": {
|
|
6
|
-
"glass": {
|
|
7
|
-
"blur": {
|
|
8
|
-
"primary": {
|
|
9
|
-
"type": "number",
|
|
10
|
-
"value": 0
|
|
11
|
-
},
|
|
12
|
-
"floating": {
|
|
13
|
-
"type": "number",
|
|
14
|
-
"value": 0
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
5
|
"color": {
|
|
20
|
-
"glass": {
|
|
21
|
-
"primary": {
|
|
22
|
-
"type": "color",
|
|
23
|
-
"value": "{global.background.color.primary.default}"
|
|
24
|
-
},
|
|
25
|
-
"floating": {
|
|
26
|
-
"type": "color",
|
|
27
|
-
"value": "{global.background.color.floating.default}"
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
6
|
"primary": {
|
|
31
7
|
"default": {
|
|
32
8
|
"description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.",
|
|
@@ -68,6 +44,14 @@
|
|
|
68
44
|
"value": "{global.dark.background.color.600}"
|
|
69
45
|
}
|
|
70
46
|
},
|
|
47
|
+
"glass": {
|
|
48
|
+
"primary": {
|
|
49
|
+
"default": {
|
|
50
|
+
"type": "color",
|
|
51
|
+
"value": "{global.background.color.primary.default}"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
71
55
|
"floating": {
|
|
72
56
|
"default": {
|
|
73
57
|
"description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.",
|
|
@@ -83,6 +67,19 @@
|
|
|
83
67
|
"description": "Use as the clicked state for floating backgrounds",
|
|
84
68
|
"type": "color",
|
|
85
69
|
"value": "{global.dark.background.color.300}"
|
|
70
|
+
},
|
|
71
|
+
"secondary": {
|
|
72
|
+
"default": {
|
|
73
|
+
"type": "color",
|
|
74
|
+
"value": "{global.background.color.secondary.default}"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"sticky": {
|
|
79
|
+
"default": {
|
|
80
|
+
"description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.",
|
|
81
|
+
"type": "color",
|
|
82
|
+
"value": "{global.dark.background.color.200}"
|
|
86
83
|
}
|
|
87
84
|
},
|
|
88
85
|
"action": {
|
|
@@ -170,6 +167,14 @@
|
|
|
170
167
|
"value": "{global.dark.background.color.500}"
|
|
171
168
|
}
|
|
172
169
|
},
|
|
170
|
+
"striped": {
|
|
171
|
+
"row": {
|
|
172
|
+
"default": {
|
|
173
|
+
"type": "color",
|
|
174
|
+
"value": "rgba(21, 21, 21, 0.3000)"
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
},
|
|
173
178
|
"loading": {
|
|
174
179
|
"skeleton": {
|
|
175
180
|
"default": {
|
|
@@ -183,15 +188,13 @@
|
|
|
183
188
|
}
|
|
184
189
|
}
|
|
185
190
|
},
|
|
186
|
-
"
|
|
191
|
+
"filter": {
|
|
187
192
|
"glass": {
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
"type": "number",
|
|
194
|
-
"value": 100
|
|
193
|
+
"blur": {
|
|
194
|
+
"primary": {
|
|
195
|
+
"type": "number",
|
|
196
|
+
"value": 0
|
|
197
|
+
}
|
|
195
198
|
}
|
|
196
199
|
}
|
|
197
200
|
}
|
|
@@ -1124,17 +1127,17 @@
|
|
|
1124
1127
|
"default": {
|
|
1125
1128
|
"description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.",
|
|
1126
1129
|
"type": "color",
|
|
1127
|
-
"value": "{global.
|
|
1130
|
+
"value": "{global.color.brand.accent.default}"
|
|
1128
1131
|
},
|
|
1129
1132
|
"hover": {
|
|
1130
1133
|
"description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.",
|
|
1131
1134
|
"type": "color",
|
|
1132
|
-
"value": "{global.
|
|
1135
|
+
"value": "{global.color.brand.accent.hover}"
|
|
1133
1136
|
},
|
|
1134
1137
|
"clicked": {
|
|
1135
1138
|
"description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.",
|
|
1136
1139
|
"type": "color",
|
|
1137
|
-
"value": "{global.
|
|
1140
|
+
"value": "{global.color.brand.accent.clicked}"
|
|
1138
1141
|
}
|
|
1139
1142
|
},
|
|
1140
1143
|
"subtle": {
|
|
@@ -1282,6 +1285,12 @@
|
|
|
1282
1285
|
"type": "color",
|
|
1283
1286
|
"value": "{global.dark.border.color.300}"
|
|
1284
1287
|
},
|
|
1288
|
+
"glass": {
|
|
1289
|
+
"default": {
|
|
1290
|
+
"type": "color",
|
|
1291
|
+
"value": "{global.border.color.subtle}"
|
|
1292
|
+
}
|
|
1293
|
+
},
|
|
1285
1294
|
"nonstatus": {
|
|
1286
1295
|
"red": {
|
|
1287
1296
|
"default": {
|
|
@@ -110,16 +110,6 @@
|
|
|
110
110
|
}
|
|
111
111
|
},
|
|
112
112
|
"font": {
|
|
113
|
-
"line-height": {
|
|
114
|
-
"100": {
|
|
115
|
-
"type": "number",
|
|
116
|
-
"value": 1.2999999523162842
|
|
117
|
-
},
|
|
118
|
-
"200": {
|
|
119
|
-
"type": "number",
|
|
120
|
-
"value": 1.5
|
|
121
|
-
}
|
|
122
|
-
},
|
|
123
113
|
"weight": {
|
|
124
114
|
"100": {
|
|
125
115
|
"type": "number",
|
|
@@ -138,6 +128,16 @@
|
|
|
138
128
|
"value": 700
|
|
139
129
|
}
|
|
140
130
|
},
|
|
131
|
+
"line-height": {
|
|
132
|
+
"100": {
|
|
133
|
+
"type": "number",
|
|
134
|
+
"value": 1.2999999523162842
|
|
135
|
+
},
|
|
136
|
+
"200": {
|
|
137
|
+
"type": "number",
|
|
138
|
+
"value": 1.5
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
141
|
"size": {
|
|
142
142
|
"100": {
|
|
143
143
|
"type": "number",
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
},
|
|
230
230
|
"300": {
|
|
231
231
|
"type": "number",
|
|
232
|
-
"value": -
|
|
232
|
+
"value": -2
|
|
233
233
|
},
|
|
234
234
|
"400": {
|
|
235
235
|
"type": "number",
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
},
|
|
238
238
|
"500": {
|
|
239
239
|
"type": "number",
|
|
240
|
-
"value":
|
|
240
|
+
"value": 2
|
|
241
241
|
},
|
|
242
242
|
"600": {
|
|
243
243
|
"type": "number",
|
|
@@ -263,7 +263,7 @@
|
|
|
263
263
|
},
|
|
264
264
|
"200": {
|
|
265
265
|
"type": "number",
|
|
266
|
-
"value": -
|
|
266
|
+
"value": -4
|
|
267
267
|
},
|
|
268
268
|
"300": {
|
|
269
269
|
"type": "number",
|
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
},
|
|
280
280
|
"600": {
|
|
281
281
|
"type": "number",
|
|
282
|
-
"value":
|
|
282
|
+
"value": 4
|
|
283
283
|
},
|
|
284
284
|
"700": {
|
|
285
285
|
"type": "number",
|
|
@@ -293,11 +293,11 @@
|
|
|
293
293
|
"blur": {
|
|
294
294
|
"100": {
|
|
295
295
|
"type": "number",
|
|
296
|
-
"value":
|
|
296
|
+
"value": 6
|
|
297
297
|
},
|
|
298
298
|
"200": {
|
|
299
299
|
"type": "number",
|
|
300
|
-
"value":
|
|
300
|
+
"value": 10
|
|
301
301
|
},
|
|
302
302
|
"300": {
|
|
303
303
|
"type": "number",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
},
|
|
81
81
|
"300": {
|
|
82
82
|
"type": "color",
|
|
83
|
-
"value": "{color.
|
|
83
|
+
"value": "{color.gray.60}"
|
|
84
84
|
},
|
|
85
85
|
"400": {
|
|
86
86
|
"type": "color",
|
|
@@ -493,7 +493,7 @@
|
|
|
493
493
|
"color": {
|
|
494
494
|
"50": {
|
|
495
495
|
"type": "color",
|
|
496
|
-
"value": "{color.gray.
|
|
496
|
+
"value": "{color.gray.20}"
|
|
497
497
|
},
|
|
498
498
|
"100": {
|
|
499
499
|
"type": "color",
|
|
@@ -270,10 +270,6 @@
|
|
|
270
270
|
}
|
|
271
271
|
}
|
|
272
272
|
},
|
|
273
|
-
"letter-spacing": {
|
|
274
|
-
"type": "string",
|
|
275
|
-
"value": "normal"
|
|
276
|
-
},
|
|
277
273
|
"FontSize": {
|
|
278
274
|
"xs": {
|
|
279
275
|
"type": "number",
|
|
@@ -292,23 +288,9 @@
|
|
|
292
288
|
"value": 22
|
|
293
289
|
}
|
|
294
290
|
},
|
|
295
|
-
"
|
|
291
|
+
"letter-spacing": {
|
|
296
292
|
"type": "string",
|
|
297
|
-
"value": "
|
|
298
|
-
},
|
|
299
|
-
"layout": {
|
|
300
|
-
"padding": {
|
|
301
|
-
"type": "number",
|
|
302
|
-
"value": 50
|
|
303
|
-
},
|
|
304
|
-
"height": {
|
|
305
|
-
"type": "number",
|
|
306
|
-
"value": 300
|
|
307
|
-
},
|
|
308
|
-
"width": {
|
|
309
|
-
"type": "number",
|
|
310
|
-
"value": 450
|
|
311
|
-
}
|
|
293
|
+
"value": "normal"
|
|
312
294
|
},
|
|
313
295
|
"label": {
|
|
314
296
|
"padding": {
|
|
@@ -336,6 +318,24 @@
|
|
|
336
318
|
"value": "{color.gray.90}"
|
|
337
319
|
}
|
|
338
320
|
},
|
|
321
|
+
"layout": {
|
|
322
|
+
"padding": {
|
|
323
|
+
"type": "number",
|
|
324
|
+
"value": 50
|
|
325
|
+
},
|
|
326
|
+
"height": {
|
|
327
|
+
"type": "number",
|
|
328
|
+
"value": 300
|
|
329
|
+
},
|
|
330
|
+
"width": {
|
|
331
|
+
"type": "number",
|
|
332
|
+
"value": 450
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"stroke-line-cap": {
|
|
336
|
+
"type": "string",
|
|
337
|
+
"value": "round"
|
|
338
|
+
},
|
|
339
339
|
"stroke-line-join": {
|
|
340
340
|
"type": "string",
|
|
341
341
|
"value": "round"
|
|
@@ -33,6 +33,12 @@
|
|
|
33
33
|
"type": "number",
|
|
34
34
|
"value": "{global.border.radius.500}"
|
|
35
35
|
},
|
|
36
|
+
"glass": {
|
|
37
|
+
"default": {
|
|
38
|
+
"type": "number",
|
|
39
|
+
"value": "{global.border.radius.medium}"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
36
42
|
"control": {
|
|
37
43
|
"default": {
|
|
38
44
|
"type": "number",
|
|
@@ -57,6 +63,11 @@
|
|
|
57
63
|
}
|
|
58
64
|
},
|
|
59
65
|
"width": {
|
|
66
|
+
"regular": {
|
|
67
|
+
"description": "Use as the default border width for elements.",
|
|
68
|
+
"type": "number",
|
|
69
|
+
"value": "{global.border.width.100}"
|
|
70
|
+
},
|
|
60
71
|
"divider": {
|
|
61
72
|
"default": {
|
|
62
73
|
"description": "Use as the default border width for dividers.",
|
|
@@ -74,11 +85,6 @@
|
|
|
74
85
|
"value": "{global.border.width.100}"
|
|
75
86
|
}
|
|
76
87
|
},
|
|
77
|
-
"regular": {
|
|
78
|
-
"description": "Use as the default border width for elements.",
|
|
79
|
-
"type": "number",
|
|
80
|
-
"value": "{global.border.width.100}"
|
|
81
|
-
},
|
|
82
88
|
"strong": {
|
|
83
89
|
"description": "Use as a stronger/wider border width for elements.",
|
|
84
90
|
"type": "number",
|
|
@@ -89,6 +95,12 @@
|
|
|
89
95
|
"type": "number",
|
|
90
96
|
"value": "{global.border.width.300}"
|
|
91
97
|
},
|
|
98
|
+
"glass": {
|
|
99
|
+
"default": {
|
|
100
|
+
"type": "number",
|
|
101
|
+
"value": "{global.border.width.regular}"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
92
104
|
"box": {
|
|
93
105
|
"default": {
|
|
94
106
|
"description": "Use as the default border width for containers like cards, panels, code editors, etc.",
|
|
@@ -420,29 +432,7 @@
|
|
|
420
432
|
"type": "number",
|
|
421
433
|
"value": "{global.icon.size.400}"
|
|
422
434
|
},
|
|
423
|
-
"3xl": {
|
|
424
|
-
"description": "Use for triple extra large icons.",
|
|
425
|
-
"type": "number",
|
|
426
|
-
"value": "{global.icon.size.500}"
|
|
427
|
-
},
|
|
428
435
|
"font": {
|
|
429
|
-
"body": {
|
|
430
|
-
"sm": {
|
|
431
|
-
"description": "Use for icons that are placed inline with small body text",
|
|
432
|
-
"type": "number",
|
|
433
|
-
"value": "{global.font.size.body.sm}"
|
|
434
|
-
},
|
|
435
|
-
"default": {
|
|
436
|
-
"description": "Use for icons that are placed inline with default body text",
|
|
437
|
-
"type": "number",
|
|
438
|
-
"value": "{global.font.size.body.default}"
|
|
439
|
-
},
|
|
440
|
-
"lg": {
|
|
441
|
-
"description": "Use for icons that are placed inline with large body text",
|
|
442
|
-
"type": "number",
|
|
443
|
-
"value": "{global.font.size.body.lg}"
|
|
444
|
-
}
|
|
445
|
-
},
|
|
446
436
|
"heading": {
|
|
447
437
|
"h1": {
|
|
448
438
|
"description": "Use for icons that are placed inline with first level headings",
|
|
@@ -475,6 +465,23 @@
|
|
|
475
465
|
"value": "{global.font.size.heading.h6}"
|
|
476
466
|
}
|
|
477
467
|
},
|
|
468
|
+
"body": {
|
|
469
|
+
"sm": {
|
|
470
|
+
"description": "Use for icons that are placed inline with small body text",
|
|
471
|
+
"type": "number",
|
|
472
|
+
"value": "{global.font.size.body.sm}"
|
|
473
|
+
},
|
|
474
|
+
"default": {
|
|
475
|
+
"description": "Use for icons that are placed inline with default body text",
|
|
476
|
+
"type": "number",
|
|
477
|
+
"value": "{global.font.size.body.default}"
|
|
478
|
+
},
|
|
479
|
+
"lg": {
|
|
480
|
+
"description": "Use for icons that are placed inline with large body text",
|
|
481
|
+
"type": "number",
|
|
482
|
+
"value": "{global.font.size.body.lg}"
|
|
483
|
+
}
|
|
484
|
+
},
|
|
478
485
|
"xs": {
|
|
479
486
|
"description": "Use for icons that are placed inline with font–size–xs text",
|
|
480
487
|
"type": "number",
|
|
@@ -515,10 +522,27 @@
|
|
|
515
522
|
"type": "number",
|
|
516
523
|
"value": "{global.font.size.4xl}"
|
|
517
524
|
}
|
|
525
|
+
},
|
|
526
|
+
"3xl": {
|
|
527
|
+
"description": "Use for triple extra large icons.",
|
|
528
|
+
"type": "number",
|
|
529
|
+
"value": "{global.icon.size.500}"
|
|
518
530
|
}
|
|
519
531
|
}
|
|
520
532
|
},
|
|
521
533
|
"font": {
|
|
534
|
+
"line-height": {
|
|
535
|
+
"body": {
|
|
536
|
+
"description": "Use to define the line height for body text",
|
|
537
|
+
"type": "number",
|
|
538
|
+
"value": "{global.font.line-height.200}"
|
|
539
|
+
},
|
|
540
|
+
"heading": {
|
|
541
|
+
"description": "Use to define the line height for heading text",
|
|
542
|
+
"type": "number",
|
|
543
|
+
"value": "{global.font.line-height.100}"
|
|
544
|
+
}
|
|
545
|
+
},
|
|
522
546
|
"weight": {
|
|
523
547
|
"body": {
|
|
524
548
|
"default": {
|
|
@@ -545,18 +569,6 @@
|
|
|
545
569
|
}
|
|
546
570
|
}
|
|
547
571
|
},
|
|
548
|
-
"line-height": {
|
|
549
|
-
"body": {
|
|
550
|
-
"description": "Use to define the line height for body text",
|
|
551
|
-
"type": "number",
|
|
552
|
-
"value": "{global.font.line-height.200}"
|
|
553
|
-
},
|
|
554
|
-
"heading": {
|
|
555
|
-
"description": "Use to define the line height for heading text",
|
|
556
|
-
"type": "number",
|
|
557
|
-
"value": "{global.font.line-height.100}"
|
|
558
|
-
}
|
|
559
|
-
},
|
|
560
572
|
"family": {
|
|
561
573
|
"body": {
|
|
562
574
|
"description": "Use to define the font family for body text",
|