@clafoutis/cli 1.1.1 → 1.2.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/dist/index.js +166 -252
- package/dist/index.js.map +1 -1
- package/dist/templates/tokens/colors/components.dark.json +760 -0
- package/dist/templates/tokens/colors/components.json +760 -0
- package/dist/templates/tokens/colors/primitives.dark.json +1554 -0
- package/dist/templates/tokens/colors/primitives.json +1654 -0
- package/dist/templates/tokens/colors/semantics.dark.json +274 -0
- package/dist/templates/tokens/colors/semantics.json +274 -0
- package/dist/templates/tokens/dimensions/base.json +60 -0
- package/dist/templates/tokens/objectValues/base.json +24 -0
- package/dist/templates/tokens/typography/base.json +93 -0
- package/package.json +4 -3
- package/src/templates/tokens/colors/components.dark.json +760 -0
- package/src/templates/tokens/colors/components.json +760 -0
- package/src/templates/tokens/colors/primitives.dark.json +1554 -0
- package/src/templates/tokens/colors/primitives.json +1654 -0
- package/src/templates/tokens/colors/semantics.dark.json +274 -0
- package/src/templates/tokens/colors/semantics.json +274 -0
- package/src/templates/tokens/dimensions/base.json +60 -0
- package/src/templates/tokens/objectValues/base.json +24 -0
- package/src/templates/tokens/typography/base.json +93 -0
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": {
|
|
3
|
+
"background": {
|
|
4
|
+
"primary": {
|
|
5
|
+
"$type": "color",
|
|
6
|
+
"$value": "{colors.slate.100}"
|
|
7
|
+
},
|
|
8
|
+
"secondary": {
|
|
9
|
+
"$type": "color",
|
|
10
|
+
"$value": "{colors.slate.200}"
|
|
11
|
+
},
|
|
12
|
+
"tertiary": {
|
|
13
|
+
"$type": "color",
|
|
14
|
+
"$value": "{colors.slate.500}"
|
|
15
|
+
},
|
|
16
|
+
"inverse": {
|
|
17
|
+
"$type": "color",
|
|
18
|
+
"$value": "{colors.slate.100}"
|
|
19
|
+
},
|
|
20
|
+
"overlay": {
|
|
21
|
+
"$type": "color",
|
|
22
|
+
"$value": "{colors.blackAlpha.900}"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"text": {
|
|
26
|
+
"base": {
|
|
27
|
+
"$type": "color",
|
|
28
|
+
"$value": "{colors.slate.1200}"
|
|
29
|
+
},
|
|
30
|
+
"primary": {
|
|
31
|
+
"$type": "color",
|
|
32
|
+
"$value": "{colors.slate.1200}"
|
|
33
|
+
},
|
|
34
|
+
"secondary": {
|
|
35
|
+
"$type": "color",
|
|
36
|
+
"$value": "{colors.slate.1100}"
|
|
37
|
+
},
|
|
38
|
+
"tertiary": {
|
|
39
|
+
"$type": "color",
|
|
40
|
+
"$value": "{colors.slate.900}"
|
|
41
|
+
},
|
|
42
|
+
"inverse": {
|
|
43
|
+
"$type": "color",
|
|
44
|
+
"$value": "{colors.slate.100}"
|
|
45
|
+
},
|
|
46
|
+
"accent": {
|
|
47
|
+
"$type": "color",
|
|
48
|
+
"$value": "{colors.blue.1100}"
|
|
49
|
+
},
|
|
50
|
+
"disabled": {
|
|
51
|
+
"$type": "color",
|
|
52
|
+
"$value": "{colors.slate.700}"
|
|
53
|
+
},
|
|
54
|
+
"placeholder": {
|
|
55
|
+
"$type": "color",
|
|
56
|
+
"$value": "{colors.slate.700}"
|
|
57
|
+
},
|
|
58
|
+
"link": {
|
|
59
|
+
"$type": "color",
|
|
60
|
+
"$value": "{colors.blue.1100}"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"surface": {
|
|
64
|
+
"primary": {
|
|
65
|
+
"$type": "color",
|
|
66
|
+
"$value": "{colors.slate.300}"
|
|
67
|
+
},
|
|
68
|
+
"secondary": {
|
|
69
|
+
"$type": "color",
|
|
70
|
+
"$value": "{colors.slate.400}"
|
|
71
|
+
},
|
|
72
|
+
"tertiary": {
|
|
73
|
+
"$type": "color",
|
|
74
|
+
"$value": "{colors.slate.500}"
|
|
75
|
+
},
|
|
76
|
+
"inset": {
|
|
77
|
+
"$type": "color",
|
|
78
|
+
"$value": "{colors.slate.100}"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"border": {
|
|
82
|
+
"primary": {
|
|
83
|
+
"$type": "color",
|
|
84
|
+
"$value": "{colors.slate.600}"
|
|
85
|
+
},
|
|
86
|
+
"secondary": {
|
|
87
|
+
"$type": "color",
|
|
88
|
+
"$value": "{colors.slate.500}"
|
|
89
|
+
},
|
|
90
|
+
"accent": {
|
|
91
|
+
"$type": "color",
|
|
92
|
+
"$value": "{colors.blue.700}"
|
|
93
|
+
},
|
|
94
|
+
"inverse": {
|
|
95
|
+
"$type": "color",
|
|
96
|
+
"$value": "{colors.slate.1200}"
|
|
97
|
+
},
|
|
98
|
+
"focus": {
|
|
99
|
+
"$type": "color",
|
|
100
|
+
"$value": "{colors.blue.800}"
|
|
101
|
+
},
|
|
102
|
+
"disabled": {
|
|
103
|
+
"$type": "color",
|
|
104
|
+
"$value": "{colors.slate.500}"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"separator": {
|
|
108
|
+
"primary": {
|
|
109
|
+
"$type": "color",
|
|
110
|
+
"$value": "{colors.slate.500}"
|
|
111
|
+
},
|
|
112
|
+
"secondary": {
|
|
113
|
+
"$type": "color",
|
|
114
|
+
"$value": "{colors.slate.600}"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"icon": {
|
|
118
|
+
"primary": {
|
|
119
|
+
"$type": "color",
|
|
120
|
+
"$value": "{colors.slate.1200}"
|
|
121
|
+
},
|
|
122
|
+
"secondary": {
|
|
123
|
+
"$type": "color",
|
|
124
|
+
"$value": "{colors.slate.1100}"
|
|
125
|
+
},
|
|
126
|
+
"muted": {
|
|
127
|
+
"$type": "color",
|
|
128
|
+
"$value": "{colors.slate.900}"
|
|
129
|
+
},
|
|
130
|
+
"inverse": {
|
|
131
|
+
"$type": "color",
|
|
132
|
+
"$value": "{colors.slate.100}"
|
|
133
|
+
},
|
|
134
|
+
"accent": {
|
|
135
|
+
"$type": "color",
|
|
136
|
+
"$value": "{colors.blue.1100}"
|
|
137
|
+
},
|
|
138
|
+
"disabled": {
|
|
139
|
+
"$type": "color",
|
|
140
|
+
"$value": "{colors.slate.700}"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"ring": {
|
|
144
|
+
"primary": {
|
|
145
|
+
"$type": "color",
|
|
146
|
+
"$value": "{colors.blue.700}"
|
|
147
|
+
},
|
|
148
|
+
"offset": {
|
|
149
|
+
"$type": "color",
|
|
150
|
+
"$value": "{colors.slate.100}"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"highlight": {
|
|
154
|
+
"bg": {
|
|
155
|
+
"$type": "color",
|
|
156
|
+
"$value": "{colors.blue.500}"
|
|
157
|
+
},
|
|
158
|
+
"text": {
|
|
159
|
+
"$type": "color",
|
|
160
|
+
"$value": "{colors.blue.1200}"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"state": {
|
|
164
|
+
"error": {
|
|
165
|
+
"primary": {
|
|
166
|
+
"$type": "color",
|
|
167
|
+
"$value": "{colors.red.900}"
|
|
168
|
+
},
|
|
169
|
+
"bg": {
|
|
170
|
+
"$type": "color",
|
|
171
|
+
"$value": "{colors.red.300}"
|
|
172
|
+
},
|
|
173
|
+
"text": {
|
|
174
|
+
"$type": "color",
|
|
175
|
+
"$value": "{colors.red.1100}"
|
|
176
|
+
},
|
|
177
|
+
"border": {
|
|
178
|
+
"$type": "color",
|
|
179
|
+
"$value": "{colors.red.700}"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"warning": {
|
|
183
|
+
"primary": {
|
|
184
|
+
"$type": "color",
|
|
185
|
+
"$value": "{colors.yellow.900}"
|
|
186
|
+
},
|
|
187
|
+
"bg": {
|
|
188
|
+
"$type": "color",
|
|
189
|
+
"$value": "{colors.yellow.300}"
|
|
190
|
+
},
|
|
191
|
+
"text": {
|
|
192
|
+
"$type": "color",
|
|
193
|
+
"$value": "{colors.yellow.1100}"
|
|
194
|
+
},
|
|
195
|
+
"border": {
|
|
196
|
+
"$type": "color",
|
|
197
|
+
"$value": "{colors.yellow.700}"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"info": {
|
|
201
|
+
"primary": {
|
|
202
|
+
"$type": "color",
|
|
203
|
+
"$value": "{colors.blue.900}"
|
|
204
|
+
},
|
|
205
|
+
"bg": {
|
|
206
|
+
"$type": "color",
|
|
207
|
+
"$value": "{colors.blue.300}"
|
|
208
|
+
},
|
|
209
|
+
"text": {
|
|
210
|
+
"$type": "color",
|
|
211
|
+
"$value": "{colors.blue.1100}"
|
|
212
|
+
},
|
|
213
|
+
"border": {
|
|
214
|
+
"$type": "color",
|
|
215
|
+
"$value": "{colors.blue.700}"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
"success": {
|
|
219
|
+
"primary": {
|
|
220
|
+
"$type": "color",
|
|
221
|
+
"$value": "{colors.green.900}"
|
|
222
|
+
},
|
|
223
|
+
"bg": {
|
|
224
|
+
"$type": "color",
|
|
225
|
+
"$value": "{colors.green.300}"
|
|
226
|
+
},
|
|
227
|
+
"text": {
|
|
228
|
+
"$type": "color",
|
|
229
|
+
"$value": "{colors.green.1100}"
|
|
230
|
+
},
|
|
231
|
+
"border": {
|
|
232
|
+
"$type": "color",
|
|
233
|
+
"$value": "{colors.green.700}"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"disabled": {
|
|
237
|
+
"bg": {
|
|
238
|
+
"$type": "color",
|
|
239
|
+
"$value": "{colors.slate.300}"
|
|
240
|
+
},
|
|
241
|
+
"text": {
|
|
242
|
+
"$type": "color",
|
|
243
|
+
"$value": "{colors.slate.700}"
|
|
244
|
+
},
|
|
245
|
+
"border": {
|
|
246
|
+
"$type": "color",
|
|
247
|
+
"$value": "{colors.slate.500}"
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"shadow": {
|
|
253
|
+
"default": {
|
|
254
|
+
"$type": "shadow",
|
|
255
|
+
"$value": {
|
|
256
|
+
"x": 0,
|
|
257
|
+
"y": 4,
|
|
258
|
+
"blur": 8,
|
|
259
|
+
"spread": 0,
|
|
260
|
+
"color": "rgba(0, 0, 0, 0.6)"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"soft": {
|
|
264
|
+
"$type": "shadow",
|
|
265
|
+
"$value": {
|
|
266
|
+
"x": 0,
|
|
267
|
+
"y": 2,
|
|
268
|
+
"blur": 4,
|
|
269
|
+
"spread": 0,
|
|
270
|
+
"color": "rgba(0, 0, 0, 0.3)"
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
}
|
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": {
|
|
3
|
+
"background": {
|
|
4
|
+
"primary": {
|
|
5
|
+
"$type": "color",
|
|
6
|
+
"$value": "{colors.slate.100}"
|
|
7
|
+
},
|
|
8
|
+
"secondary": {
|
|
9
|
+
"$type": "color",
|
|
10
|
+
"$value": "{colors.slate.200}"
|
|
11
|
+
},
|
|
12
|
+
"tertiary": {
|
|
13
|
+
"$type": "color",
|
|
14
|
+
"$value": "{colors.slate.400}"
|
|
15
|
+
},
|
|
16
|
+
"inverse": {
|
|
17
|
+
"$type": "color",
|
|
18
|
+
"$value": "{colors.slate.1200}"
|
|
19
|
+
},
|
|
20
|
+
"overlay": {
|
|
21
|
+
"$type": "color",
|
|
22
|
+
"$value": "{colors.blackAlpha.700}"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"text": {
|
|
26
|
+
"base": {
|
|
27
|
+
"$type": "color",
|
|
28
|
+
"$value": "{colors.slate.1200}"
|
|
29
|
+
},
|
|
30
|
+
"primary": {
|
|
31
|
+
"$type": "color",
|
|
32
|
+
"$value": "{colors.slate.1200}"
|
|
33
|
+
},
|
|
34
|
+
"secondary": {
|
|
35
|
+
"$type": "color",
|
|
36
|
+
"$value": "{colors.slate.1100}"
|
|
37
|
+
},
|
|
38
|
+
"tertiary": {
|
|
39
|
+
"$type": "color",
|
|
40
|
+
"$value": "{colors.slate.900}"
|
|
41
|
+
},
|
|
42
|
+
"inverse": {
|
|
43
|
+
"$type": "color",
|
|
44
|
+
"$value": "{colors.slate.100}"
|
|
45
|
+
},
|
|
46
|
+
"accent": {
|
|
47
|
+
"$type": "color",
|
|
48
|
+
"$value": "{colors.blue.1100}"
|
|
49
|
+
},
|
|
50
|
+
"disabled": {
|
|
51
|
+
"$type": "color",
|
|
52
|
+
"$value": "{colors.slate.800}"
|
|
53
|
+
},
|
|
54
|
+
"placeholder": {
|
|
55
|
+
"$type": "color",
|
|
56
|
+
"$value": "{colors.slate.800}"
|
|
57
|
+
},
|
|
58
|
+
"link": {
|
|
59
|
+
"$type": "color",
|
|
60
|
+
"$value": "{colors.blue.1100}"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"surface": {
|
|
64
|
+
"primary": {
|
|
65
|
+
"$type": "color",
|
|
66
|
+
"$value": "{colors.slate.100}"
|
|
67
|
+
},
|
|
68
|
+
"secondary": {
|
|
69
|
+
"$type": "color",
|
|
70
|
+
"$value": "{colors.slate.200}"
|
|
71
|
+
},
|
|
72
|
+
"tertiary": {
|
|
73
|
+
"$type": "color",
|
|
74
|
+
"$value": "{colors.slate.300}"
|
|
75
|
+
},
|
|
76
|
+
"inset": {
|
|
77
|
+
"$type": "color",
|
|
78
|
+
"$value": "{colors.slate.300}"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"border": {
|
|
82
|
+
"primary": {
|
|
83
|
+
"$type": "color",
|
|
84
|
+
"$value": "{colors.slate.600}"
|
|
85
|
+
},
|
|
86
|
+
"secondary": {
|
|
87
|
+
"$type": "color",
|
|
88
|
+
"$value": "{colors.slate.500}"
|
|
89
|
+
},
|
|
90
|
+
"accent": {
|
|
91
|
+
"$type": "color",
|
|
92
|
+
"$value": "{colors.blue.700}"
|
|
93
|
+
},
|
|
94
|
+
"inverse": {
|
|
95
|
+
"$type": "color",
|
|
96
|
+
"$value": "{colors.slate.1200}"
|
|
97
|
+
},
|
|
98
|
+
"focus": {
|
|
99
|
+
"$type": "color",
|
|
100
|
+
"$value": "{colors.blue.800}"
|
|
101
|
+
},
|
|
102
|
+
"disabled": {
|
|
103
|
+
"$type": "color",
|
|
104
|
+
"$value": "{colors.slate.400}"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"separator": {
|
|
108
|
+
"primary": {
|
|
109
|
+
"$type": "color",
|
|
110
|
+
"$value": "{colors.slate.500}"
|
|
111
|
+
},
|
|
112
|
+
"secondary": {
|
|
113
|
+
"$type": "color",
|
|
114
|
+
"$value": "{colors.slate.600}"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"icon": {
|
|
118
|
+
"primary": {
|
|
119
|
+
"$type": "color",
|
|
120
|
+
"$value": "{colors.slate.1200}"
|
|
121
|
+
},
|
|
122
|
+
"secondary": {
|
|
123
|
+
"$type": "color",
|
|
124
|
+
"$value": "{colors.slate.1100}"
|
|
125
|
+
},
|
|
126
|
+
"muted": {
|
|
127
|
+
"$type": "color",
|
|
128
|
+
"$value": "{colors.slate.900}"
|
|
129
|
+
},
|
|
130
|
+
"inverse": {
|
|
131
|
+
"$type": "color",
|
|
132
|
+
"$value": "{colors.slate.100}"
|
|
133
|
+
},
|
|
134
|
+
"accent": {
|
|
135
|
+
"$type": "color",
|
|
136
|
+
"$value": "{colors.blue.1100}"
|
|
137
|
+
},
|
|
138
|
+
"disabled": {
|
|
139
|
+
"$type": "color",
|
|
140
|
+
"$value": "{colors.slate.800}"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"ring": {
|
|
144
|
+
"primary": {
|
|
145
|
+
"$type": "color",
|
|
146
|
+
"$value": "{colors.blue.700}"
|
|
147
|
+
},
|
|
148
|
+
"offset": {
|
|
149
|
+
"$type": "color",
|
|
150
|
+
"$value": "{colors.slate.100}"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"highlight": {
|
|
154
|
+
"bg": {
|
|
155
|
+
"$type": "color",
|
|
156
|
+
"$value": "{colors.blue.400}"
|
|
157
|
+
},
|
|
158
|
+
"text": {
|
|
159
|
+
"$type": "color",
|
|
160
|
+
"$value": "{colors.blue.1200}"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"state": {
|
|
164
|
+
"error": {
|
|
165
|
+
"primary": {
|
|
166
|
+
"$type": "color",
|
|
167
|
+
"$value": "{colors.red.900}"
|
|
168
|
+
},
|
|
169
|
+
"bg": {
|
|
170
|
+
"$type": "color",
|
|
171
|
+
"$value": "{colors.red.300}"
|
|
172
|
+
},
|
|
173
|
+
"text": {
|
|
174
|
+
"$type": "color",
|
|
175
|
+
"$value": "{colors.red.1100}"
|
|
176
|
+
},
|
|
177
|
+
"border": {
|
|
178
|
+
"$type": "color",
|
|
179
|
+
"$value": "{colors.red.700}"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"warning": {
|
|
183
|
+
"primary": {
|
|
184
|
+
"$type": "color",
|
|
185
|
+
"$value": "{colors.yellow.900}"
|
|
186
|
+
},
|
|
187
|
+
"bg": {
|
|
188
|
+
"$type": "color",
|
|
189
|
+
"$value": "{colors.yellow.300}"
|
|
190
|
+
},
|
|
191
|
+
"text": {
|
|
192
|
+
"$type": "color",
|
|
193
|
+
"$value": "{colors.yellow.1100}"
|
|
194
|
+
},
|
|
195
|
+
"border": {
|
|
196
|
+
"$type": "color",
|
|
197
|
+
"$value": "{colors.yellow.700}"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"info": {
|
|
201
|
+
"primary": {
|
|
202
|
+
"$type": "color",
|
|
203
|
+
"$value": "{colors.blue.900}"
|
|
204
|
+
},
|
|
205
|
+
"bg": {
|
|
206
|
+
"$type": "color",
|
|
207
|
+
"$value": "{colors.blue.300}"
|
|
208
|
+
},
|
|
209
|
+
"text": {
|
|
210
|
+
"$type": "color",
|
|
211
|
+
"$value": "{colors.blue.1100}"
|
|
212
|
+
},
|
|
213
|
+
"border": {
|
|
214
|
+
"$type": "color",
|
|
215
|
+
"$value": "{colors.blue.700}"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
"success": {
|
|
219
|
+
"primary": {
|
|
220
|
+
"$type": "color",
|
|
221
|
+
"$value": "{colors.green.900}"
|
|
222
|
+
},
|
|
223
|
+
"bg": {
|
|
224
|
+
"$type": "color",
|
|
225
|
+
"$value": "{colors.green.300}"
|
|
226
|
+
},
|
|
227
|
+
"text": {
|
|
228
|
+
"$type": "color",
|
|
229
|
+
"$value": "{colors.green.1100}"
|
|
230
|
+
},
|
|
231
|
+
"border": {
|
|
232
|
+
"$type": "color",
|
|
233
|
+
"$value": "{colors.green.700}"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"disabled": {
|
|
237
|
+
"bg": {
|
|
238
|
+
"$type": "color",
|
|
239
|
+
"$value": "{colors.slate.300}"
|
|
240
|
+
},
|
|
241
|
+
"text": {
|
|
242
|
+
"$type": "color",
|
|
243
|
+
"$value": "{colors.slate.800}"
|
|
244
|
+
},
|
|
245
|
+
"border": {
|
|
246
|
+
"$type": "color",
|
|
247
|
+
"$value": "{colors.slate.500}"
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"shadow": {
|
|
253
|
+
"default": {
|
|
254
|
+
"$type": "shadow",
|
|
255
|
+
"$value": {
|
|
256
|
+
"x": 0,
|
|
257
|
+
"y": 4,
|
|
258
|
+
"blur": 8,
|
|
259
|
+
"spread": 0,
|
|
260
|
+
"color": "rgba(0, 0, 0, 0.08)"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"soft": {
|
|
264
|
+
"$type": "shadow",
|
|
265
|
+
"$value": {
|
|
266
|
+
"x": 0,
|
|
267
|
+
"y": 2,
|
|
268
|
+
"blur": 4,
|
|
269
|
+
"spread": 0,
|
|
270
|
+
"color": "rgba(0, 0, 0, 0.04)"
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"spacing": {
|
|
3
|
+
"0": {
|
|
4
|
+
"$type": "dimension",
|
|
5
|
+
"$value": "0px"
|
|
6
|
+
},
|
|
7
|
+
"1": {
|
|
8
|
+
"$type": "dimension",
|
|
9
|
+
"$value": "4px"
|
|
10
|
+
},
|
|
11
|
+
"2": {
|
|
12
|
+
"$type": "dimension",
|
|
13
|
+
"$value": "8px"
|
|
14
|
+
},
|
|
15
|
+
"3": {
|
|
16
|
+
"$type": "dimension",
|
|
17
|
+
"$value": "16px"
|
|
18
|
+
},
|
|
19
|
+
"4": {
|
|
20
|
+
"$type": "dimension",
|
|
21
|
+
"$value": "24px"
|
|
22
|
+
},
|
|
23
|
+
"5": {
|
|
24
|
+
"$type": "dimension",
|
|
25
|
+
"$value": "32px"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"borderRadius": {
|
|
29
|
+
"none": {
|
|
30
|
+
"$type": "dimension",
|
|
31
|
+
"$value": "0px"
|
|
32
|
+
},
|
|
33
|
+
"sm": {
|
|
34
|
+
"$type": "dimension",
|
|
35
|
+
"$value": "4px"
|
|
36
|
+
},
|
|
37
|
+
"md": {
|
|
38
|
+
"$type": "dimension",
|
|
39
|
+
"$value": "8px"
|
|
40
|
+
},
|
|
41
|
+
"lg": {
|
|
42
|
+
"$type": "dimension",
|
|
43
|
+
"$value": "12px"
|
|
44
|
+
},
|
|
45
|
+
"full": {
|
|
46
|
+
"$type": "dimension",
|
|
47
|
+
"$value": "9999px"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"maxWidth": {
|
|
51
|
+
"container": {
|
|
52
|
+
"$type": "dimension",
|
|
53
|
+
"$value": "1200px"
|
|
54
|
+
},
|
|
55
|
+
"content": {
|
|
56
|
+
"$type": "dimension",
|
|
57
|
+
"$value": "800px"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"shadow": {
|
|
3
|
+
"card": {
|
|
4
|
+
"$type": "shadow",
|
|
5
|
+
"$value": {
|
|
6
|
+
"x": 0,
|
|
7
|
+
"y": 2,
|
|
8
|
+
"blur": 4,
|
|
9
|
+
"spread": 0,
|
|
10
|
+
"color": "{colors.slate.1200}"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"modal": {
|
|
14
|
+
"$type": "shadow",
|
|
15
|
+
"$value": {
|
|
16
|
+
"x": 0,
|
|
17
|
+
"y": 4,
|
|
18
|
+
"blur": 12,
|
|
19
|
+
"spread": 0,
|
|
20
|
+
"color": "{colors.slate.1200}"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|