@synergy-design-system/tokens 1.0.0-main.4 → 1.0.0-main.6
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 +14 -0
- package/README.md +126 -31
- package/dist/js/index.js +934 -0
- package/dist/scss/_tokens.scss +190 -0
- package/dist/{css → themes}/dark.css +36 -21
- package/dist/{css → themes}/light.css +36 -21
- package/package.json +9 -2
- package/src/figma-tokens/$metadata.json +13 -0
- package/src/figma-tokens/$themes.json +331 -0
- package/src/figma-tokens/_docs.json +1212 -0
- package/src/figma-tokens/color/dark.json +286 -0
- package/src/figma-tokens/color/light.json +286 -0
- package/src/figma-tokens/color/primitives.json +292 -0
- package/src/figma-tokens/globals.json +415 -0
- package/src/figma-tokens/semantic/button.json +18 -0
- package/src/figma-tokens/semantic/focus-ring.json +16 -0
- package/src/figma-tokens/semantic/input.json +272 -0
- package/src/figma-tokens/semantic/toggles.json +16 -0
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gray": {
|
|
3
|
+
"50": {
|
|
4
|
+
"value": "#f9fafb",
|
|
5
|
+
"type": "color"
|
|
6
|
+
},
|
|
7
|
+
"100": {
|
|
8
|
+
"value": "#f2f5f5",
|
|
9
|
+
"type": "color"
|
|
10
|
+
},
|
|
11
|
+
"200": {
|
|
12
|
+
"value": "#e8ebec",
|
|
13
|
+
"type": "color"
|
|
14
|
+
},
|
|
15
|
+
"300": {
|
|
16
|
+
"value": "#d5dbdd",
|
|
17
|
+
"type": "color"
|
|
18
|
+
},
|
|
19
|
+
"400": {
|
|
20
|
+
"value": "#bac2c6",
|
|
21
|
+
"type": "color"
|
|
22
|
+
},
|
|
23
|
+
"500": {
|
|
24
|
+
"value": "#9ea9ae",
|
|
25
|
+
"type": "color"
|
|
26
|
+
},
|
|
27
|
+
"600": {
|
|
28
|
+
"value": "#859298",
|
|
29
|
+
"type": "color"
|
|
30
|
+
},
|
|
31
|
+
"700": {
|
|
32
|
+
"value": "#737f85",
|
|
33
|
+
"type": "color",
|
|
34
|
+
"description": "//Sick Default"
|
|
35
|
+
},
|
|
36
|
+
"800": {
|
|
37
|
+
"value": "#5e676b",
|
|
38
|
+
"type": "color"
|
|
39
|
+
},
|
|
40
|
+
"900": {
|
|
41
|
+
"value": "#4c5357",
|
|
42
|
+
"type": "color"
|
|
43
|
+
},
|
|
44
|
+
"950": {
|
|
45
|
+
"value": "#31373a",
|
|
46
|
+
"type": "color"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"red": {
|
|
50
|
+
"50": {
|
|
51
|
+
"value": "#fff0f2",
|
|
52
|
+
"type": "color"
|
|
53
|
+
},
|
|
54
|
+
"100": {
|
|
55
|
+
"value": "#ffdee2",
|
|
56
|
+
"type": "color"
|
|
57
|
+
},
|
|
58
|
+
"200": {
|
|
59
|
+
"value": "#ffc3c9",
|
|
60
|
+
"type": "color"
|
|
61
|
+
},
|
|
62
|
+
"300": {
|
|
63
|
+
"value": "#ff98a4",
|
|
64
|
+
"type": "color"
|
|
65
|
+
},
|
|
66
|
+
"400": {
|
|
67
|
+
"value": "#ff5d70",
|
|
68
|
+
"type": "color"
|
|
69
|
+
},
|
|
70
|
+
"500": {
|
|
71
|
+
"value": "#ff2b44",
|
|
72
|
+
"type": "color"
|
|
73
|
+
},
|
|
74
|
+
"600": {
|
|
75
|
+
"value": "#ea0823",
|
|
76
|
+
"type": "color",
|
|
77
|
+
"description": "//Sick Default"
|
|
78
|
+
},
|
|
79
|
+
"700": {
|
|
80
|
+
"value": "#d0051d",
|
|
81
|
+
"type": "color"
|
|
82
|
+
},
|
|
83
|
+
"800": {
|
|
84
|
+
"value": "#ab091c",
|
|
85
|
+
"type": "color"
|
|
86
|
+
},
|
|
87
|
+
"900": {
|
|
88
|
+
"value": "#8D0f1e",
|
|
89
|
+
"type": "color"
|
|
90
|
+
},
|
|
91
|
+
"950": {
|
|
92
|
+
"value": "#4e010a",
|
|
93
|
+
"type": "color"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"yellow": {
|
|
97
|
+
"50": {
|
|
98
|
+
"value": "#fefce8",
|
|
99
|
+
"type": "color"
|
|
100
|
+
},
|
|
101
|
+
"100": {
|
|
102
|
+
"value": "#fdf7c4",
|
|
103
|
+
"type": "color"
|
|
104
|
+
},
|
|
105
|
+
"200": {
|
|
106
|
+
"value": "#FCEC8c",
|
|
107
|
+
"type": "color"
|
|
108
|
+
},
|
|
109
|
+
"300": {
|
|
110
|
+
"value": "#f9da4b",
|
|
111
|
+
"type": "color"
|
|
112
|
+
},
|
|
113
|
+
"400": {
|
|
114
|
+
"value": "#f5c413",
|
|
115
|
+
"type": "color",
|
|
116
|
+
"description": "//Sick Default"
|
|
117
|
+
},
|
|
118
|
+
"500": {
|
|
119
|
+
"value": "#e5ae0d",
|
|
120
|
+
"type": "color"
|
|
121
|
+
},
|
|
122
|
+
"600": {
|
|
123
|
+
"value": "#c68608",
|
|
124
|
+
"type": "color"
|
|
125
|
+
},
|
|
126
|
+
"700": {
|
|
127
|
+
"value": "#9e5f0a",
|
|
128
|
+
"type": "color"
|
|
129
|
+
},
|
|
130
|
+
"800": {
|
|
131
|
+
"value": "#834b10",
|
|
132
|
+
"type": "color"
|
|
133
|
+
},
|
|
134
|
+
"900": {
|
|
135
|
+
"value": "#6f3e14",
|
|
136
|
+
"type": "color"
|
|
137
|
+
},
|
|
138
|
+
"950": {
|
|
139
|
+
"value": "#411f07",
|
|
140
|
+
"type": "color"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"green": {
|
|
144
|
+
"50": {
|
|
145
|
+
"value": "#f5fde8",
|
|
146
|
+
"type": "color"
|
|
147
|
+
},
|
|
148
|
+
"100": {
|
|
149
|
+
"value": "#e7facd",
|
|
150
|
+
"type": "color"
|
|
151
|
+
},
|
|
152
|
+
"200": {
|
|
153
|
+
"value": "#D1F4A2",
|
|
154
|
+
"type": "color"
|
|
155
|
+
},
|
|
156
|
+
"300": {
|
|
157
|
+
"value": "#B0EB6B",
|
|
158
|
+
"type": "color"
|
|
159
|
+
},
|
|
160
|
+
"400": {
|
|
161
|
+
"value": "#93DD3E",
|
|
162
|
+
"type": "color"
|
|
163
|
+
},
|
|
164
|
+
"500": {
|
|
165
|
+
"value": "#73C31F",
|
|
166
|
+
"type": "color"
|
|
167
|
+
},
|
|
168
|
+
"600": {
|
|
169
|
+
"value": "#63B017",
|
|
170
|
+
"type": "color",
|
|
171
|
+
"description": "//Sick Default"
|
|
172
|
+
},
|
|
173
|
+
"700": {
|
|
174
|
+
"value": "#437714",
|
|
175
|
+
"type": "color"
|
|
176
|
+
},
|
|
177
|
+
"800": {
|
|
178
|
+
"value": "#395E16",
|
|
179
|
+
"type": "color"
|
|
180
|
+
},
|
|
181
|
+
"900": {
|
|
182
|
+
"value": "#315017",
|
|
183
|
+
"type": "color"
|
|
184
|
+
},
|
|
185
|
+
"950": {
|
|
186
|
+
"value": "#172C07",
|
|
187
|
+
"type": "color"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"Blue": {
|
|
191
|
+
"50": {
|
|
192
|
+
"value": "#f0f9ff",
|
|
193
|
+
"type": "color"
|
|
194
|
+
},
|
|
195
|
+
"100": {
|
|
196
|
+
"value": "#e0f1FE",
|
|
197
|
+
"type": "color"
|
|
198
|
+
},
|
|
199
|
+
"200": {
|
|
200
|
+
"value": "#b9e5fe",
|
|
201
|
+
"type": "color"
|
|
202
|
+
},
|
|
203
|
+
"300": {
|
|
204
|
+
"value": "#7cd1fd",
|
|
205
|
+
"type": "color"
|
|
206
|
+
},
|
|
207
|
+
"400": {
|
|
208
|
+
"value": "#36bbfa",
|
|
209
|
+
"type": "color"
|
|
210
|
+
},
|
|
211
|
+
"500": {
|
|
212
|
+
"value": "#0ca2eb",
|
|
213
|
+
"type": "color"
|
|
214
|
+
},
|
|
215
|
+
"600": {
|
|
216
|
+
"value": "#007cc1",
|
|
217
|
+
"type": "color",
|
|
218
|
+
"description": "//Sick Default"
|
|
219
|
+
},
|
|
220
|
+
"700": {
|
|
221
|
+
"value": "#0166a3",
|
|
222
|
+
"type": "color"
|
|
223
|
+
},
|
|
224
|
+
"800": {
|
|
225
|
+
"value": "#065786",
|
|
226
|
+
"type": "color"
|
|
227
|
+
},
|
|
228
|
+
"900": {
|
|
229
|
+
"value": "#0B486F",
|
|
230
|
+
"type": "color"
|
|
231
|
+
},
|
|
232
|
+
"950": {
|
|
233
|
+
"value": "#072E4A",
|
|
234
|
+
"type": "color"
|
|
235
|
+
}
|
|
236
|
+
},
|
|
237
|
+
"Orange": {
|
|
238
|
+
"50": {
|
|
239
|
+
"value": "#FFFBEA",
|
|
240
|
+
"type": "color"
|
|
241
|
+
},
|
|
242
|
+
"100": {
|
|
243
|
+
"value": "#FFF2C5",
|
|
244
|
+
"type": "color"
|
|
245
|
+
},
|
|
246
|
+
"200": {
|
|
247
|
+
"value": "#FFE685",
|
|
248
|
+
"type": "color"
|
|
249
|
+
},
|
|
250
|
+
"300": {
|
|
251
|
+
"value": "#FFD246",
|
|
252
|
+
"type": "color"
|
|
253
|
+
},
|
|
254
|
+
"400": {
|
|
255
|
+
"value": "#FFBD1B",
|
|
256
|
+
"type": "color"
|
|
257
|
+
},
|
|
258
|
+
"500": {
|
|
259
|
+
"value": "#F39200",
|
|
260
|
+
"type": "color",
|
|
261
|
+
"description": "//Sick Default"
|
|
262
|
+
},
|
|
263
|
+
"600": {
|
|
264
|
+
"value": "#E27200",
|
|
265
|
+
"type": "color"
|
|
266
|
+
},
|
|
267
|
+
"700": {
|
|
268
|
+
"value": "#BB4D02",
|
|
269
|
+
"type": "color"
|
|
270
|
+
},
|
|
271
|
+
"800": {
|
|
272
|
+
"value": "#983B08",
|
|
273
|
+
"type": "color"
|
|
274
|
+
},
|
|
275
|
+
"900": {
|
|
276
|
+
"value": "#7C310B",
|
|
277
|
+
"type": "color"
|
|
278
|
+
},
|
|
279
|
+
"950": {
|
|
280
|
+
"value": "#481700",
|
|
281
|
+
"type": "color"
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"black": {
|
|
285
|
+
"value": "black",
|
|
286
|
+
"type": "color"
|
|
287
|
+
},
|
|
288
|
+
"white": {
|
|
289
|
+
"value": "white",
|
|
290
|
+
"type": "color"
|
|
291
|
+
}
|
|
292
|
+
}
|
|
@@ -0,0 +1,415 @@
|
|
|
1
|
+
{
|
|
2
|
+
"font-size": {
|
|
3
|
+
"2x-small": {
|
|
4
|
+
"value": "10px",
|
|
5
|
+
"type": "fontSizes"
|
|
6
|
+
},
|
|
7
|
+
"x-small": {
|
|
8
|
+
"value": "12px",
|
|
9
|
+
"type": "fontSizes"
|
|
10
|
+
},
|
|
11
|
+
"small": {
|
|
12
|
+
"value": "14px",
|
|
13
|
+
"type": "fontSizes"
|
|
14
|
+
},
|
|
15
|
+
"medium": {
|
|
16
|
+
"value": "16px",
|
|
17
|
+
"type": "fontSizes"
|
|
18
|
+
},
|
|
19
|
+
"large": {
|
|
20
|
+
"value": "20px",
|
|
21
|
+
"type": "fontSizes"
|
|
22
|
+
},
|
|
23
|
+
"x-large": {
|
|
24
|
+
"value": "24px",
|
|
25
|
+
"type": "fontSizes"
|
|
26
|
+
},
|
|
27
|
+
"2x-large": {
|
|
28
|
+
"value": "32px",
|
|
29
|
+
"type": "fontSizes"
|
|
30
|
+
},
|
|
31
|
+
"3x-large": {
|
|
32
|
+
"value": "40px",
|
|
33
|
+
"type": "fontSizes"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"duration": {
|
|
37
|
+
"extra-fast": {
|
|
38
|
+
"value": "90ms",
|
|
39
|
+
"type": "duration"
|
|
40
|
+
},
|
|
41
|
+
"fast": {
|
|
42
|
+
"value": "150ms",
|
|
43
|
+
"type": "duration"
|
|
44
|
+
},
|
|
45
|
+
"normal": {
|
|
46
|
+
"value": "250ms",
|
|
47
|
+
"type": "duration"
|
|
48
|
+
},
|
|
49
|
+
"slow": {
|
|
50
|
+
"value": "350ms",
|
|
51
|
+
"type": "duration"
|
|
52
|
+
},
|
|
53
|
+
"extra-slow": {
|
|
54
|
+
"value": "500ms",
|
|
55
|
+
"type": "duration"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"line-height": {
|
|
59
|
+
"denser": {
|
|
60
|
+
"value": "100%",
|
|
61
|
+
"type": "lineHeights"
|
|
62
|
+
},
|
|
63
|
+
"dense": {
|
|
64
|
+
"value": "120%",
|
|
65
|
+
"type": "lineHeights"
|
|
66
|
+
},
|
|
67
|
+
"normal": {
|
|
68
|
+
"value": "140%",
|
|
69
|
+
"type": "lineHeights"
|
|
70
|
+
},
|
|
71
|
+
"loose": {
|
|
72
|
+
"value": "180%",
|
|
73
|
+
"type": "lineHeights"
|
|
74
|
+
},
|
|
75
|
+
"looser": {
|
|
76
|
+
"value": "220%",
|
|
77
|
+
"type": "lineHeights"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"font-weight": {
|
|
81
|
+
"normal": {
|
|
82
|
+
"value": "400",
|
|
83
|
+
"type": "fontWeights"
|
|
84
|
+
},
|
|
85
|
+
"semibold": {
|
|
86
|
+
"value": "600",
|
|
87
|
+
"type": "fontWeights"
|
|
88
|
+
},
|
|
89
|
+
"bold": {
|
|
90
|
+
"value": "700",
|
|
91
|
+
"type": "fontWeights"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"shadow": {
|
|
95
|
+
"medium": {
|
|
96
|
+
"value": [
|
|
97
|
+
{
|
|
98
|
+
"x": "0",
|
|
99
|
+
"y": "1",
|
|
100
|
+
"blur": "2",
|
|
101
|
+
"spread": "0",
|
|
102
|
+
"color": "rgba( {neutral.950} , 0.08)",
|
|
103
|
+
"type": "dropShadow"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"x": "0",
|
|
107
|
+
"y": "1",
|
|
108
|
+
"blur": "4",
|
|
109
|
+
"spread": "0",
|
|
110
|
+
"color": "rgba( {neutral.950} , 0.08)",
|
|
111
|
+
"type": "dropShadow"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"x": "0",
|
|
115
|
+
"y": "2",
|
|
116
|
+
"blur": "8",
|
|
117
|
+
"spread": "0",
|
|
118
|
+
"color": "rgba( {neutral.950}, 0.08)",
|
|
119
|
+
"type": "dropShadow"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"type": "boxShadow"
|
|
123
|
+
},
|
|
124
|
+
"large": {
|
|
125
|
+
"value": [
|
|
126
|
+
{
|
|
127
|
+
"x": "0",
|
|
128
|
+
"y": "0",
|
|
129
|
+
"blur": "3",
|
|
130
|
+
"spread": "0",
|
|
131
|
+
"color": "rgba( {neutral.950}, 0.12)",
|
|
132
|
+
"type": "dropShadow"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"x": "0",
|
|
136
|
+
"y": "2",
|
|
137
|
+
"blur": "6",
|
|
138
|
+
"spread": "0",
|
|
139
|
+
"color": "rgba( {neutral.950}, 0.12)",
|
|
140
|
+
"type": "dropShadow"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"x": "0",
|
|
144
|
+
"y": "3",
|
|
145
|
+
"blur": "8",
|
|
146
|
+
"spread": "0",
|
|
147
|
+
"color": "rgba( {neutral.950}, 0.16)",
|
|
148
|
+
"type": "dropShadow"
|
|
149
|
+
}
|
|
150
|
+
],
|
|
151
|
+
"type": "boxShadow"
|
|
152
|
+
},
|
|
153
|
+
"x-large": {
|
|
154
|
+
"value": [
|
|
155
|
+
{
|
|
156
|
+
"x": "0",
|
|
157
|
+
"y": "1",
|
|
158
|
+
"blur": "4",
|
|
159
|
+
"spread": "0",
|
|
160
|
+
"color": "rgba( {neutral.950}, 0.12)",
|
|
161
|
+
"type": "dropShadow"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"x": "0",
|
|
165
|
+
"y": "8",
|
|
166
|
+
"blur": "24",
|
|
167
|
+
"spread": "0",
|
|
168
|
+
"color": "rgba( {neutral.950}, 0.12)",
|
|
169
|
+
"type": "dropShadow"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"x": "0",
|
|
173
|
+
"y": "16",
|
|
174
|
+
"blur": "48",
|
|
175
|
+
"spread": "0",
|
|
176
|
+
"color": "rgba( {neutral.950}, 0.16)",
|
|
177
|
+
"type": "dropShadow"
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"type": "boxShadow"
|
|
181
|
+
},
|
|
182
|
+
"overflow-down": {
|
|
183
|
+
"value": [
|
|
184
|
+
{
|
|
185
|
+
"x": "0",
|
|
186
|
+
"y": "1",
|
|
187
|
+
"blur": "4",
|
|
188
|
+
"spread": "0",
|
|
189
|
+
"color": "rgba( {neutral.950}, 0.12)",
|
|
190
|
+
"type": "dropShadow"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"x": "0",
|
|
194
|
+
"y": "3",
|
|
195
|
+
"blur": "8",
|
|
196
|
+
"spread": "0",
|
|
197
|
+
"color": "rgba( {neutral.950}, 0.12)",
|
|
198
|
+
"type": "dropShadow"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"x": "0",
|
|
202
|
+
"y": "4",
|
|
203
|
+
"blur": "12",
|
|
204
|
+
"spread": "0",
|
|
205
|
+
"color": "rgba( {neutral.950}, 0.16)",
|
|
206
|
+
"type": "dropShadow"
|
|
207
|
+
}
|
|
208
|
+
],
|
|
209
|
+
"type": "boxShadow",
|
|
210
|
+
"description": "Overflow Down"
|
|
211
|
+
},
|
|
212
|
+
"overflow-up": {
|
|
213
|
+
"value": [
|
|
214
|
+
{
|
|
215
|
+
"x": "0",
|
|
216
|
+
"y": "-1",
|
|
217
|
+
"blur": "4",
|
|
218
|
+
"spread": "0",
|
|
219
|
+
"color": "rgba( {neutral.950}, 0.12)",
|
|
220
|
+
"type": "dropShadow"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"x": "0",
|
|
224
|
+
"y": "-3",
|
|
225
|
+
"blur": "8",
|
|
226
|
+
"spread": "0",
|
|
227
|
+
"color": "rgba( {neutral.950}, 0.12)",
|
|
228
|
+
"type": "dropShadow"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"x": "0",
|
|
232
|
+
"y": "-4",
|
|
233
|
+
"blur": "12",
|
|
234
|
+
"spread": "0",
|
|
235
|
+
"color": "rgba( {neutral.950}, 0.16)",
|
|
236
|
+
"type": "dropShadow"
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"type": "boxShadow",
|
|
240
|
+
"description": "Overflow Up"
|
|
241
|
+
},
|
|
242
|
+
"overflow-left": {
|
|
243
|
+
"value": [
|
|
244
|
+
{
|
|
245
|
+
"x": "-1",
|
|
246
|
+
"y": "0",
|
|
247
|
+
"blur": "4",
|
|
248
|
+
"spread": "0",
|
|
249
|
+
"color": "rgba( {neutral.950}, 0.12)",
|
|
250
|
+
"type": "dropShadow"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"x": "-3",
|
|
254
|
+
"y": "0",
|
|
255
|
+
"blur": "8",
|
|
256
|
+
"spread": "0",
|
|
257
|
+
"color": "rgba( {neutral.950}, 0.12)",
|
|
258
|
+
"type": "dropShadow"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"x": "-4",
|
|
262
|
+
"y": "0",
|
|
263
|
+
"blur": "12",
|
|
264
|
+
"spread": "0",
|
|
265
|
+
"color": "rgba( {neutral.950}, 0.16)",
|
|
266
|
+
"type": "dropShadow"
|
|
267
|
+
}
|
|
268
|
+
],
|
|
269
|
+
"type": "boxShadow",
|
|
270
|
+
"description": "Overflow Left"
|
|
271
|
+
},
|
|
272
|
+
"overflow-right": {
|
|
273
|
+
"value": [
|
|
274
|
+
{
|
|
275
|
+
"x": "1",
|
|
276
|
+
"y": "0",
|
|
277
|
+
"blur": "4",
|
|
278
|
+
"spread": "0",
|
|
279
|
+
"color": "rgba( {neutral.950}, 0.12)",
|
|
280
|
+
"type": "dropShadow"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"x": "3",
|
|
284
|
+
"y": "0",
|
|
285
|
+
"blur": "8",
|
|
286
|
+
"spread": "0",
|
|
287
|
+
"color": "rgba( {neutral.950}, 0.12)",
|
|
288
|
+
"type": "dropShadow"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"x": "4",
|
|
292
|
+
"y": "0",
|
|
293
|
+
"blur": "12",
|
|
294
|
+
"spread": "0",
|
|
295
|
+
"color": "rgba( {neutral.950}, 0.16)",
|
|
296
|
+
"type": "dropShadow"
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"type": "boxShadow",
|
|
300
|
+
"description": "Overflow Right"
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
"font": {
|
|
304
|
+
"sans": {
|
|
305
|
+
"value": "Open Sans",
|
|
306
|
+
"type": "fontFamilies",
|
|
307
|
+
"description": "Open Sans"
|
|
308
|
+
},
|
|
309
|
+
"mono": {
|
|
310
|
+
"value": "Roboto Mono",
|
|
311
|
+
"type": "fontFamilies"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"spacing": {
|
|
315
|
+
"4x-small": {
|
|
316
|
+
"value": "{dimension.base}/4",
|
|
317
|
+
"type": "spacing"
|
|
318
|
+
},
|
|
319
|
+
"3x-small": {
|
|
320
|
+
"value": "{dimension.base}/2",
|
|
321
|
+
"type": "spacing"
|
|
322
|
+
},
|
|
323
|
+
"2x-small": {
|
|
324
|
+
"value": "{dimension.base}*1",
|
|
325
|
+
"type": "spacing"
|
|
326
|
+
},
|
|
327
|
+
"x-small": {
|
|
328
|
+
"value": "{dimension.base}*2",
|
|
329
|
+
"type": "spacing"
|
|
330
|
+
},
|
|
331
|
+
"small": {
|
|
332
|
+
"value": "{dimension.base}*3",
|
|
333
|
+
"type": "spacing"
|
|
334
|
+
},
|
|
335
|
+
"medium": {
|
|
336
|
+
"value": "{dimension.base}*4",
|
|
337
|
+
"type": "spacing"
|
|
338
|
+
},
|
|
339
|
+
"large": {
|
|
340
|
+
"value": "{dimension.base}*6",
|
|
341
|
+
"type": "spacing"
|
|
342
|
+
},
|
|
343
|
+
"x-large": {
|
|
344
|
+
"value": "{dimension.base}*8",
|
|
345
|
+
"type": "spacing"
|
|
346
|
+
},
|
|
347
|
+
"2x-large": {
|
|
348
|
+
"value": "{dimension.base}*12",
|
|
349
|
+
"type": "spacing"
|
|
350
|
+
},
|
|
351
|
+
"3x-large": {
|
|
352
|
+
"value": "{dimension.base}*16",
|
|
353
|
+
"type": "spacing"
|
|
354
|
+
},
|
|
355
|
+
"4x-large": {
|
|
356
|
+
"value": "{dimension.base}*24",
|
|
357
|
+
"type": "spacing"
|
|
358
|
+
},
|
|
359
|
+
"5x-large": {
|
|
360
|
+
"value": "{dimension.base}*32",
|
|
361
|
+
"type": "spacing"
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"border-radius": {
|
|
365
|
+
"none": {
|
|
366
|
+
"value": "0px",
|
|
367
|
+
"type": "borderRadius"
|
|
368
|
+
},
|
|
369
|
+
"pill": {
|
|
370
|
+
"value": "9999px",
|
|
371
|
+
"type": "borderRadius"
|
|
372
|
+
},
|
|
373
|
+
"circle": {
|
|
374
|
+
"value": "9999px",
|
|
375
|
+
"type": "borderRadius"
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
"dimension": {
|
|
379
|
+
"base": {
|
|
380
|
+
"value": "4px",
|
|
381
|
+
"type": "dimension"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"border-width": {
|
|
385
|
+
"none": {
|
|
386
|
+
"value": "0px",
|
|
387
|
+
"type": "borderWidth",
|
|
388
|
+
"description": "None"
|
|
389
|
+
},
|
|
390
|
+
"small": {
|
|
391
|
+
"value": "1px",
|
|
392
|
+
"type": "borderWidth",
|
|
393
|
+
"description": "Small"
|
|
394
|
+
},
|
|
395
|
+
"medium": {
|
|
396
|
+
"value": "2px",
|
|
397
|
+
"type": "borderWidth",
|
|
398
|
+
"description": "Medium"
|
|
399
|
+
},
|
|
400
|
+
"large": {
|
|
401
|
+
"value": "3px",
|
|
402
|
+
"type": "borderWidth",
|
|
403
|
+
"description": "Large"
|
|
404
|
+
},
|
|
405
|
+
"x-large": {
|
|
406
|
+
"value": "4px",
|
|
407
|
+
"type": "borderWidth",
|
|
408
|
+
"description": "X Large"
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
"font-sans-fallback": {
|
|
412
|
+
"value": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", sans-serif",
|
|
413
|
+
"type": "other"
|
|
414
|
+
}
|
|
415
|
+
}
|