@chronogrove/ui 0.76.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/.turbo/turbo-test$colon$coverage.log +44 -0
- package/.turbo/turbo-test.log +168 -0
- package/LICENSE +9 -0
- package/README.md +41 -0
- package/babel.config.cjs +9 -0
- package/coverage/clover.xml +131 -0
- package/coverage/coverage-final.json +13 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/browser-sync.js.html +268 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +161 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +210 -0
- package/coverage/lcov-report/src/button.js.html +160 -0
- package/coverage/lcov-report/src/color-mode/browser-sync.js.html +268 -0
- package/coverage/lcov-report/src/color-mode/constants.js.html +121 -0
- package/coverage/lcov-report/src/color-mode/head-inline.js.html +304 -0
- package/coverage/lcov-report/src/color-mode/index.html +176 -0
- package/coverage/lcov-report/src/color-mode/index.js.html +124 -0
- package/coverage/lcov-report/src/color-mode/normalize.js.html +112 -0
- package/coverage/lcov-report/src/color-mode/resolve-theme-colors.js.html +154 -0
- package/coverage/lcov-report/src/color-toggle.js.html +142 -0
- package/coverage/lcov-report/src/emotion-cache.js.html +151 -0
- package/coverage/lcov-report/src/helpers/index.html +116 -0
- package/coverage/lcov-report/src/helpers/isDarkMode.js.html +91 -0
- package/coverage/lcov-report/src/index.html +161 -0
- package/coverage/lcov-report/src/provider.js.html +124 -0
- package/coverage/lcov-report/src/skip-nav/SkipNavContent.js.html +133 -0
- package/coverage/lcov-report/src/skip-nav/SkipNavLink.js.html +301 -0
- package/coverage/lcov-report/src/skip-nav/index.html +131 -0
- package/coverage/lcov-report/src/theme.js.html +2143 -0
- package/coverage/lcov.info +309 -0
- package/jest.config.cjs +32 -0
- package/jest.setup.cjs +1 -0
- package/package.json +73 -0
- package/src/__snapshots__/theme.spec.js.snap +1027 -0
- package/src/button.js +25 -0
- package/src/button.spec.js +16 -0
- package/src/color-mode/browser-sync.js +61 -0
- package/src/color-mode/browser-sync.node.spec.js +15 -0
- package/src/color-mode/browser-sync.spec.js +137 -0
- package/src/color-mode/constants.js +12 -0
- package/src/color-mode/head-inline.js +73 -0
- package/src/color-mode/head-inline.spec.js +33 -0
- package/src/color-mode/index.js +13 -0
- package/src/color-mode/normalize.js +9 -0
- package/src/color-mode/normalize.spec.js +17 -0
- package/src/color-mode/resolve-theme-colors.js +23 -0
- package/src/color-mode/resolve-theme-colors.spec.js +39 -0
- package/src/color-toggle.js +19 -0
- package/src/color-toggle.spec.js +35 -0
- package/src/emotion-cache.js +22 -0
- package/src/emotion-cache.spec.js +30 -0
- package/src/helpers/isDarkMode.js +2 -0
- package/src/helpers/isDarkMode.spec.js +9 -0
- package/src/index.js +1 -0
- package/src/provider.js +13 -0
- package/src/provider.spec.js +25 -0
- package/src/skip-nav/SkipNavContent.js +16 -0
- package/src/skip-nav/SkipNavContent.spec.js +22 -0
- package/src/skip-nav/SkipNavLink.js +72 -0
- package/src/skip-nav/SkipNavLink.spec.js +56 -0
- package/src/skip-nav/index.js +2 -0
- package/src/theme.js +686 -0
- package/src/theme.spec.js +56 -0
- package/test-utils/mock-theme-toggles-react.js +10 -0
- package/turbo.json +12 -0
|
@@ -0,0 +1,1027 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
2
|
+
|
|
3
|
+
exports[`Theme Configuration a snapshot of the configuration matches the snapshot 1`] = `
|
|
4
|
+
{
|
|
5
|
+
"badges": {
|
|
6
|
+
"metrics": {
|
|
7
|
+
"bg": "transparent",
|
|
8
|
+
"boxShadow": [Function],
|
|
9
|
+
"color": "text",
|
|
10
|
+
"fontSize": 1,
|
|
11
|
+
},
|
|
12
|
+
"outline": {
|
|
13
|
+
"bg": "transparent",
|
|
14
|
+
"boxShadow": "inset 0 0 0 1px",
|
|
15
|
+
"color": "primary",
|
|
16
|
+
"fontSize": 1,
|
|
17
|
+
},
|
|
18
|
+
"primary": {
|
|
19
|
+
"bg": "primary",
|
|
20
|
+
"color": "background",
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
"borderWidths": {
|
|
24
|
+
"0": "0px",
|
|
25
|
+
"2": "2px",
|
|
26
|
+
"4": "4px",
|
|
27
|
+
"8": "8px",
|
|
28
|
+
"default": "1px",
|
|
29
|
+
},
|
|
30
|
+
"breakpoints": [
|
|
31
|
+
"640px",
|
|
32
|
+
"768px",
|
|
33
|
+
"1024px",
|
|
34
|
+
"1280px",
|
|
35
|
+
"1536px",
|
|
36
|
+
],
|
|
37
|
+
"buttons": {
|
|
38
|
+
"action": {
|
|
39
|
+
"&:active": {
|
|
40
|
+
"transform": "scale(0.98)",
|
|
41
|
+
},
|
|
42
|
+
"&:focus": {
|
|
43
|
+
"boxShadow": [Function],
|
|
44
|
+
"outline": "none",
|
|
45
|
+
},
|
|
46
|
+
"&:hover": {
|
|
47
|
+
"bg": [Function],
|
|
48
|
+
},
|
|
49
|
+
"bg": "transparent",
|
|
50
|
+
"border": "1px solid",
|
|
51
|
+
"borderColor": "primary",
|
|
52
|
+
"borderRadius": "6px",
|
|
53
|
+
"color": "primary",
|
|
54
|
+
"cursor": "pointer",
|
|
55
|
+
"fontWeight": "medium",
|
|
56
|
+
"transition": "all 0.2s ease",
|
|
57
|
+
},
|
|
58
|
+
"gray": {
|
|
59
|
+
"bg": "gray",
|
|
60
|
+
"color": "background",
|
|
61
|
+
},
|
|
62
|
+
"primary": {
|
|
63
|
+
"bg": "primary",
|
|
64
|
+
"color": "background",
|
|
65
|
+
},
|
|
66
|
+
"readMore": {
|
|
67
|
+
"&::before": {
|
|
68
|
+
"background": "linear-gradient(90deg, transparent, rgba(66, 46, 163, 0.1), transparent)",
|
|
69
|
+
"content": """",
|
|
70
|
+
"height": "100%",
|
|
71
|
+
"left": "-100%",
|
|
72
|
+
"position": "absolute",
|
|
73
|
+
"top": 0,
|
|
74
|
+
"transition": "left 0.5s ease-in-out",
|
|
75
|
+
"width": "100%",
|
|
76
|
+
},
|
|
77
|
+
"&:active": {
|
|
78
|
+
"boxShadow": "0 2px 8px rgba(66, 46, 163, 0.2)",
|
|
79
|
+
"transform": "translateY(0)",
|
|
80
|
+
},
|
|
81
|
+
"&:hover, &:focus": {
|
|
82
|
+
"&::before": {
|
|
83
|
+
"left": "100%",
|
|
84
|
+
},
|
|
85
|
+
"bg": "primary",
|
|
86
|
+
"boxShadow": "0 4px 12px rgba(66, 46, 163, 0.3)",
|
|
87
|
+
"color": "background",
|
|
88
|
+
"transform": "translateY(-2px)",
|
|
89
|
+
},
|
|
90
|
+
"bg": "transparent",
|
|
91
|
+
"border": [Function],
|
|
92
|
+
"borderRadius": "card",
|
|
93
|
+
"color": "primary",
|
|
94
|
+
"cursor": "pointer",
|
|
95
|
+
"fontSize": [
|
|
96
|
+
1,
|
|
97
|
+
2,
|
|
98
|
+
],
|
|
99
|
+
"fontWeight": "medium",
|
|
100
|
+
"overflow": "hidden",
|
|
101
|
+
"position": "relative",
|
|
102
|
+
"px": 3,
|
|
103
|
+
"py": 2,
|
|
104
|
+
"transition": "all 0.3s cubic-bezier(0.4, 0, 0.2, 1)",
|
|
105
|
+
},
|
|
106
|
+
"secondary": {
|
|
107
|
+
"bg": "secondary",
|
|
108
|
+
"color": "background",
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
"cards": {
|
|
112
|
+
"PostCard": {
|
|
113
|
+
"&:hover .read-more-icon": {
|
|
114
|
+
"opacity": 1,
|
|
115
|
+
"paddingLeft": "8px",
|
|
116
|
+
},
|
|
117
|
+
"&:hover, &:focus": {
|
|
118
|
+
"boxShadow": "lg",
|
|
119
|
+
"transform": "scale(1.015)",
|
|
120
|
+
},
|
|
121
|
+
".card-media": {
|
|
122
|
+
"mb": 2,
|
|
123
|
+
"overflow": "hidden",
|
|
124
|
+
},
|
|
125
|
+
".read-more-icon": {
|
|
126
|
+
"display": "inline",
|
|
127
|
+
"opacity": 0,
|
|
128
|
+
"paddingLeft": 0,
|
|
129
|
+
"transition": "all 250ms ease-in",
|
|
130
|
+
},
|
|
131
|
+
"WebkitBackdropFilter": "blur(10px)",
|
|
132
|
+
"backdropFilter": "blur(10px)",
|
|
133
|
+
"background": "var(--theme-ui-colors-panel-background)",
|
|
134
|
+
"backgroundColor": "var(--theme-ui-colors-panel-background)",
|
|
135
|
+
"border": "1px solid rgba(255, 255, 255, 0.15)",
|
|
136
|
+
"borderRadius": "10px",
|
|
137
|
+
"boxShadow": "0 4px 6px rgba(0, 0, 0, 0.1)",
|
|
138
|
+
"color": "var(--theme-ui-colors-panel-text)",
|
|
139
|
+
"display": "flex",
|
|
140
|
+
"flexDirection": "column",
|
|
141
|
+
"flexGrow": 1,
|
|
142
|
+
"fontSize": [
|
|
143
|
+
1,
|
|
144
|
+
2,
|
|
145
|
+
],
|
|
146
|
+
"height": "100%",
|
|
147
|
+
"padding": 3,
|
|
148
|
+
"textDecoration": "none",
|
|
149
|
+
"transition": "all 200ms ease-in-out",
|
|
150
|
+
},
|
|
151
|
+
"StatusCardDark": {
|
|
152
|
+
"backgroundColor": "#1e2530",
|
|
153
|
+
},
|
|
154
|
+
"UserProfile": {
|
|
155
|
+
"background": "none",
|
|
156
|
+
"border": "none",
|
|
157
|
+
"color": "white",
|
|
158
|
+
"padding": [Function],
|
|
159
|
+
},
|
|
160
|
+
"UserProfileDark": {
|
|
161
|
+
"WebkitBackdropFilter": "blur(12px) saturate(150%)",
|
|
162
|
+
"backdropFilter": "blur(12px) saturate(150%)",
|
|
163
|
+
"background": "var(--theme-ui-colors-panel-background)",
|
|
164
|
+
"backgroundColor": "none",
|
|
165
|
+
"borderBottom": "none",
|
|
166
|
+
"borderRadius": "card",
|
|
167
|
+
"boxShadow": "none",
|
|
168
|
+
"color": "white",
|
|
169
|
+
"flexGrow": 1,
|
|
170
|
+
"fontSize": [
|
|
171
|
+
1,
|
|
172
|
+
2,
|
|
173
|
+
],
|
|
174
|
+
"padding": [Function],
|
|
175
|
+
"textDecoration": "none",
|
|
176
|
+
},
|
|
177
|
+
"actionCard": {
|
|
178
|
+
"&:hover, &:focus": {
|
|
179
|
+
"boxShadow": "lg",
|
|
180
|
+
"transform": "scale(1.015)",
|
|
181
|
+
},
|
|
182
|
+
"WebkitBackdropFilter": "blur(10px)",
|
|
183
|
+
"a": {
|
|
184
|
+
":hover": "pointer",
|
|
185
|
+
},
|
|
186
|
+
"backdropFilter": "blur(10px)",
|
|
187
|
+
"background": "var(--theme-ui-colors-panel-background)",
|
|
188
|
+
"border": "1px solid rgba(255, 255, 255, 0.15)",
|
|
189
|
+
"borderLeft": [Function],
|
|
190
|
+
"borderRadius": "10px",
|
|
191
|
+
"boxShadow": "0 4px 6px rgba(0, 0, 0, 0.1)",
|
|
192
|
+
"color": "var(--theme-ui-colors-panel-text)",
|
|
193
|
+
"flexGrow": 1,
|
|
194
|
+
"fontSize": [
|
|
195
|
+
1,
|
|
196
|
+
2,
|
|
197
|
+
],
|
|
198
|
+
"padding": 3,
|
|
199
|
+
"textDecoration": "none",
|
|
200
|
+
"transition": "all 200ms ease-in-out",
|
|
201
|
+
},
|
|
202
|
+
"aiSummary": {
|
|
203
|
+
"@keyframes blink": {
|
|
204
|
+
"0%, 50%": {
|
|
205
|
+
"opacity": 1,
|
|
206
|
+
},
|
|
207
|
+
"51%, 100%": {
|
|
208
|
+
"opacity": 0,
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
"@keyframes expandWidth": {
|
|
212
|
+
"0%": {
|
|
213
|
+
"width": "0%",
|
|
214
|
+
},
|
|
215
|
+
"100%": {
|
|
216
|
+
"width": "100%",
|
|
217
|
+
},
|
|
218
|
+
},
|
|
219
|
+
"@keyframes fadeInUp": {
|
|
220
|
+
"0%": {
|
|
221
|
+
"opacity": 0,
|
|
222
|
+
"transform": "translateY(20px)",
|
|
223
|
+
},
|
|
224
|
+
"100%": {
|
|
225
|
+
"opacity": 1,
|
|
226
|
+
"transform": "translateY(0)",
|
|
227
|
+
},
|
|
228
|
+
},
|
|
229
|
+
"@keyframes gentleBounce": {
|
|
230
|
+
"0%, 20%, 50%, 80%, 100%": {
|
|
231
|
+
"transform": "translateY(0)",
|
|
232
|
+
},
|
|
233
|
+
"40%": {
|
|
234
|
+
"transform": "translateY(-4px)",
|
|
235
|
+
},
|
|
236
|
+
"60%": {
|
|
237
|
+
"transform": "translateY(-2px)",
|
|
238
|
+
},
|
|
239
|
+
},
|
|
240
|
+
"@keyframes gentleFloat": {
|
|
241
|
+
"0%, 100%": {
|
|
242
|
+
"transform": "translateY(0px)",
|
|
243
|
+
},
|
|
244
|
+
"50%": {
|
|
245
|
+
"transform": "translateY(-4px)",
|
|
246
|
+
},
|
|
247
|
+
},
|
|
248
|
+
"@keyframes gentleGlow": {
|
|
249
|
+
"0%": {
|
|
250
|
+
"filter": "drop-shadow(0 0 12px rgba(66, 46, 163, 0.4))",
|
|
251
|
+
},
|
|
252
|
+
"100%": {
|
|
253
|
+
"filter": "drop-shadow(0 0 20px rgba(66, 46, 163, 0.7))",
|
|
254
|
+
},
|
|
255
|
+
},
|
|
256
|
+
"@keyframes pulse": {
|
|
257
|
+
"0%, 100%": {
|
|
258
|
+
"opacity": 1,
|
|
259
|
+
},
|
|
260
|
+
"50%": {
|
|
261
|
+
"opacity": 0.7,
|
|
262
|
+
},
|
|
263
|
+
},
|
|
264
|
+
"@keyframes slideDown": {
|
|
265
|
+
"0%": {
|
|
266
|
+
"maxHeight": "0px",
|
|
267
|
+
"opacity": 0,
|
|
268
|
+
"overflow": "hidden",
|
|
269
|
+
},
|
|
270
|
+
"100%": {
|
|
271
|
+
"maxHeight": "1000px",
|
|
272
|
+
"opacity": 1,
|
|
273
|
+
"overflow": "visible",
|
|
274
|
+
},
|
|
275
|
+
},
|
|
276
|
+
"@keyframes slideInFromLeft": {
|
|
277
|
+
"0%": {
|
|
278
|
+
"opacity": 0,
|
|
279
|
+
"transform": "translateX(-30px)",
|
|
280
|
+
},
|
|
281
|
+
"100%": {
|
|
282
|
+
"opacity": 1,
|
|
283
|
+
"transform": "translateX(0)",
|
|
284
|
+
},
|
|
285
|
+
},
|
|
286
|
+
"WebkitBackdropFilter": "blur(10px)",
|
|
287
|
+
"backdropFilter": "blur(10px)",
|
|
288
|
+
"background": "var(--theme-ui-colors-panel-background)",
|
|
289
|
+
"border": "1px solid rgba(255, 255, 255, 0.15)",
|
|
290
|
+
"borderLeft": [Function],
|
|
291
|
+
"borderRadius": "10px",
|
|
292
|
+
"boxShadow": "0 4px 6px rgba(0, 0, 0, 0.1)",
|
|
293
|
+
"color": "var(--theme-ui-colors-panel-text)",
|
|
294
|
+
"flexGrow": 1,
|
|
295
|
+
"fontSize": [
|
|
296
|
+
1,
|
|
297
|
+
2,
|
|
298
|
+
],
|
|
299
|
+
"padding": 3,
|
|
300
|
+
"textDecoration": "none",
|
|
301
|
+
},
|
|
302
|
+
"metricCard": {
|
|
303
|
+
"WebkitBackdropFilter": "blur(12px) saturate(150%)",
|
|
304
|
+
"backdropFilter": "blur(12px) saturate(150%)",
|
|
305
|
+
"background": "var(--theme-ui-colors-panel-background)",
|
|
306
|
+
"backgroundColor": "var(--theme-ui-colors-panel-background)",
|
|
307
|
+
"borderRadius": "card",
|
|
308
|
+
"boxShadow": "none",
|
|
309
|
+
"color": "var(--theme-ui-colors-panel-text)",
|
|
310
|
+
"flexGrow": 1,
|
|
311
|
+
"fontSize": [
|
|
312
|
+
1,
|
|
313
|
+
2,
|
|
314
|
+
],
|
|
315
|
+
"padding": 3,
|
|
316
|
+
"span": {
|
|
317
|
+
"fontFamily": "heading",
|
|
318
|
+
"fontWeight": "bold",
|
|
319
|
+
"padding": 2,
|
|
320
|
+
},
|
|
321
|
+
"textDecoration": "none",
|
|
322
|
+
},
|
|
323
|
+
"presentationalCard": {
|
|
324
|
+
"WebkitBackdropFilter": "blur(10px)",
|
|
325
|
+
"backdropFilter": "blur(10px)",
|
|
326
|
+
"background": "var(--theme-ui-colors-panel-background)",
|
|
327
|
+
"border": "1px solid rgba(255, 255, 255, 0.15)",
|
|
328
|
+
"borderLeft": [Function],
|
|
329
|
+
"borderRadius": "10px",
|
|
330
|
+
"boxShadow": "0 4px 6px rgba(0, 0, 0, 0.1)",
|
|
331
|
+
"color": "var(--theme-ui-colors-panel-text)",
|
|
332
|
+
"flexGrow": 1,
|
|
333
|
+
"fontSize": [
|
|
334
|
+
1,
|
|
335
|
+
2,
|
|
336
|
+
],
|
|
337
|
+
"padding": 3,
|
|
338
|
+
"textDecoration": "none",
|
|
339
|
+
},
|
|
340
|
+
"primary": {
|
|
341
|
+
"WebkitBackdropFilter": "blur(12px) saturate(150%)",
|
|
342
|
+
"backdropFilter": "blur(12px) saturate(150%)",
|
|
343
|
+
"background": "var(--theme-ui-colors-panel-background)",
|
|
344
|
+
"borderRadius": "card",
|
|
345
|
+
"boxShadow": "default",
|
|
346
|
+
"color": "var(--theme-ui-colors-panel-text)",
|
|
347
|
+
"flexGrow": 1,
|
|
348
|
+
"fontSize": [
|
|
349
|
+
1,
|
|
350
|
+
2,
|
|
351
|
+
],
|
|
352
|
+
"padding": 3,
|
|
353
|
+
"textDecoration": "none",
|
|
354
|
+
},
|
|
355
|
+
},
|
|
356
|
+
"colors": {
|
|
357
|
+
"accent": "deeppink",
|
|
358
|
+
"background": "#fdf8f5",
|
|
359
|
+
"modes": {
|
|
360
|
+
"dark": {
|
|
361
|
+
"background": "#14141F",
|
|
362
|
+
"panel-background": "rgba(20, 20, 31, 0.45)",
|
|
363
|
+
"panel-divider": [Function],
|
|
364
|
+
"panel-highlight": [Function],
|
|
365
|
+
"primary": "#4a9eff",
|
|
366
|
+
"primaryRgb": "74, 158, 255",
|
|
367
|
+
"tableBackground": "rgba(30, 30, 47, 0.45)",
|
|
368
|
+
"tableBorder": "rgba(255, 255, 255, 0.1)",
|
|
369
|
+
"tableHeaderBackground": "rgba(30, 37, 48, 0.8)",
|
|
370
|
+
"tableRowAlternateBackground": "rgba(30, 37, 48, 0.5)",
|
|
371
|
+
"tableRowBackground": "rgba(30, 30, 47, 0.25)",
|
|
372
|
+
"tableText": "#fff",
|
|
373
|
+
"text": "#fff",
|
|
374
|
+
"textMuted": "#d8d8d8",
|
|
375
|
+
},
|
|
376
|
+
},
|
|
377
|
+
"panel-background": "rgba(255, 255, 255, 0.45)",
|
|
378
|
+
"panel-divider": [Function],
|
|
379
|
+
"panel-highlight": [Function],
|
|
380
|
+
"primary": "#422EA3",
|
|
381
|
+
"primaryRgb": "66, 46, 163",
|
|
382
|
+
"secondary": "#711E9B",
|
|
383
|
+
"secondaryGradient": "linear-gradient(45deg, #4527a0 0%, #711e9b 100%)",
|
|
384
|
+
"tableBackground": "light",
|
|
385
|
+
"tableBorder": "muted",
|
|
386
|
+
"tableHeaderBackground": "#f4f4f9",
|
|
387
|
+
"tableRowAlternateBackground": "#fafafa",
|
|
388
|
+
"tableRowBackground": "transparent",
|
|
389
|
+
"tableText": "#111",
|
|
390
|
+
"text": "#111",
|
|
391
|
+
"textMuted": "#333",
|
|
392
|
+
},
|
|
393
|
+
"config": {
|
|
394
|
+
"initialColorModeName": "default",
|
|
395
|
+
"useColorSchemeMediaQuery": false,
|
|
396
|
+
"useCustomProperties": true,
|
|
397
|
+
"useLocalStorage": true,
|
|
398
|
+
},
|
|
399
|
+
"fontSizes": [
|
|
400
|
+
".875rem",
|
|
401
|
+
"1rem",
|
|
402
|
+
"1.25rem",
|
|
403
|
+
"1.375rem",
|
|
404
|
+
"1.5rem",
|
|
405
|
+
"1.875rem",
|
|
406
|
+
"2.25rem",
|
|
407
|
+
"3rem",
|
|
408
|
+
"4rem",
|
|
409
|
+
"4.5rem",
|
|
410
|
+
],
|
|
411
|
+
"fontWeights": {
|
|
412
|
+
"black": 900,
|
|
413
|
+
"body": 400,
|
|
414
|
+
"bold": 700,
|
|
415
|
+
"extrabold": 800,
|
|
416
|
+
"hairline": 100,
|
|
417
|
+
"heading": 700,
|
|
418
|
+
"light": 300,
|
|
419
|
+
"medium": 500,
|
|
420
|
+
"normal": 400,
|
|
421
|
+
"semibold": 600,
|
|
422
|
+
"thin": 200,
|
|
423
|
+
},
|
|
424
|
+
"fonts": {
|
|
425
|
+
"body": "Iowan Old Style, Apple Garamond, Georgia, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol",
|
|
426
|
+
"heading": "-apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, Ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
|
427
|
+
"monospace": "Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace",
|
|
428
|
+
"sans": "-apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, Ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
|
429
|
+
"serif": "Iowan Old Style, Apple Garamond, Georgia, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol",
|
|
430
|
+
},
|
|
431
|
+
"global": {
|
|
432
|
+
"@keyframes wobble": {
|
|
433
|
+
"0%, 100%": {
|
|
434
|
+
"transform": "rotate(0deg)",
|
|
435
|
+
},
|
|
436
|
+
"15%": {
|
|
437
|
+
"transform": "rotate(-15deg)",
|
|
438
|
+
},
|
|
439
|
+
"30%": {
|
|
440
|
+
"transform": "rotate(10deg)",
|
|
441
|
+
},
|
|
442
|
+
"45%": {
|
|
443
|
+
"transform": "rotate(-10deg)",
|
|
444
|
+
},
|
|
445
|
+
"60%": {
|
|
446
|
+
"transform": "rotate(5deg)",
|
|
447
|
+
},
|
|
448
|
+
"75%": {
|
|
449
|
+
"transform": "rotate(-5deg)",
|
|
450
|
+
},
|
|
451
|
+
},
|
|
452
|
+
"@media (prefers-reduced-motion: reduce)": {
|
|
453
|
+
".emoji": {
|
|
454
|
+
"animation": "none !important",
|
|
455
|
+
},
|
|
456
|
+
},
|
|
457
|
+
},
|
|
458
|
+
"inputs": {
|
|
459
|
+
"inline": {
|
|
460
|
+
"&:focus": {
|
|
461
|
+
"backgroundColor": "white",
|
|
462
|
+
"borderColor": "primary",
|
|
463
|
+
"outline": "none",
|
|
464
|
+
},
|
|
465
|
+
"appearance": "none",
|
|
466
|
+
"backgroundColor": "gray.2",
|
|
467
|
+
"borderColor": "gray.2",
|
|
468
|
+
"borderRadius": "default",
|
|
469
|
+
"borderStyle": "solid",
|
|
470
|
+
"borderWidth": "2px",
|
|
471
|
+
"color": "gray.7",
|
|
472
|
+
"fontSize": "100%",
|
|
473
|
+
"lineHeight": "tight",
|
|
474
|
+
"px": 3,
|
|
475
|
+
"py": 2,
|
|
476
|
+
},
|
|
477
|
+
"shadow": {
|
|
478
|
+
"&:focus": {
|
|
479
|
+
"boxShadow": "outline",
|
|
480
|
+
"outline": "none",
|
|
481
|
+
},
|
|
482
|
+
"appearance": "none",
|
|
483
|
+
"border": "none",
|
|
484
|
+
"borderRadius": "default",
|
|
485
|
+
"boxShadow": "default",
|
|
486
|
+
"color": "gray.7",
|
|
487
|
+
"fontSize": "100%",
|
|
488
|
+
"lineHeight": "tight",
|
|
489
|
+
"px": 3,
|
|
490
|
+
"py": 2,
|
|
491
|
+
},
|
|
492
|
+
"underline": {
|
|
493
|
+
"&:focus": {
|
|
494
|
+
"backgroundColor": "white",
|
|
495
|
+
"borderColor": "primary",
|
|
496
|
+
"outline": "none",
|
|
497
|
+
},
|
|
498
|
+
"appearance": "none",
|
|
499
|
+
"backgroundColor": "transparent",
|
|
500
|
+
"border": "none",
|
|
501
|
+
"borderBottomColor": "primary",
|
|
502
|
+
"borderBottomStyle": "solid",
|
|
503
|
+
"borderBottomWidth": "2px",
|
|
504
|
+
"borderRadius": "0px",
|
|
505
|
+
"color": "gray.7",
|
|
506
|
+
"fontSize": "100%",
|
|
507
|
+
"lineHeight": "tight",
|
|
508
|
+
"px": 3,
|
|
509
|
+
"py": 2,
|
|
510
|
+
},
|
|
511
|
+
},
|
|
512
|
+
"layout": {
|
|
513
|
+
"container": {
|
|
514
|
+
"maxWidth": [
|
|
515
|
+
"",
|
|
516
|
+
"98%",
|
|
517
|
+
"",
|
|
518
|
+
"",
|
|
519
|
+
"1440px",
|
|
520
|
+
],
|
|
521
|
+
"px": [
|
|
522
|
+
3,
|
|
523
|
+
4,
|
|
524
|
+
],
|
|
525
|
+
"py": [
|
|
526
|
+
2,
|
|
527
|
+
3,
|
|
528
|
+
],
|
|
529
|
+
},
|
|
530
|
+
},
|
|
531
|
+
"letterSpacings": {
|
|
532
|
+
"normal": "0em",
|
|
533
|
+
"tight": "-0.025em",
|
|
534
|
+
"tighter": "-0.05em",
|
|
535
|
+
"wide": "0.025em",
|
|
536
|
+
"wider": "0.05em",
|
|
537
|
+
"widest": "0.1em",
|
|
538
|
+
},
|
|
539
|
+
"lineHeights": {
|
|
540
|
+
"10": "2.5rem",
|
|
541
|
+
"3": ".75rem",
|
|
542
|
+
"4": "1rem",
|
|
543
|
+
"5": "1.25rem",
|
|
544
|
+
"6": "1.5rem",
|
|
545
|
+
"7": "1.75rem",
|
|
546
|
+
"8": "2rem",
|
|
547
|
+
"9": "2.25rem",
|
|
548
|
+
"body": "1.625",
|
|
549
|
+
"heading": "1.25",
|
|
550
|
+
"loose": "2",
|
|
551
|
+
"none": "1",
|
|
552
|
+
"normal": "1.5",
|
|
553
|
+
"relaxed": "1.625",
|
|
554
|
+
"snug": "1.375",
|
|
555
|
+
"tight": "1.25",
|
|
556
|
+
},
|
|
557
|
+
"links": {
|
|
558
|
+
"widgetCta": {
|
|
559
|
+
"&:focus": {
|
|
560
|
+
"boxShadow": [Function],
|
|
561
|
+
"outline": "none",
|
|
562
|
+
},
|
|
563
|
+
"&:hover, &:focus": {
|
|
564
|
+
"color": "primary",
|
|
565
|
+
"textDecoration": "none",
|
|
566
|
+
},
|
|
567
|
+
"alignItems": "center",
|
|
568
|
+
"color": "text",
|
|
569
|
+
"display": "inline-flex",
|
|
570
|
+
"fontFamily": "heading",
|
|
571
|
+
"fontSize": 1,
|
|
572
|
+
"lineHeight": 1.25,
|
|
573
|
+
"textDecoration": "none",
|
|
574
|
+
"transform": "translateY(-1px)",
|
|
575
|
+
"transition": "color 0.2s ease",
|
|
576
|
+
},
|
|
577
|
+
},
|
|
578
|
+
"radii": {
|
|
579
|
+
"card": "8px",
|
|
580
|
+
"default": "4px",
|
|
581
|
+
},
|
|
582
|
+
"shadows": {
|
|
583
|
+
"2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
|
|
584
|
+
"default": "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
|
|
585
|
+
"inner": "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
|
|
586
|
+
"lg": "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
|
|
587
|
+
"md": "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
|
|
588
|
+
"sm": "0 1px 2px 0 rgb(0 0 0 / 0.05)",
|
|
589
|
+
"xl": "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
|
|
590
|
+
},
|
|
591
|
+
"sizes": {
|
|
592
|
+
"0": "0",
|
|
593
|
+
"1": "0.25rem",
|
|
594
|
+
"1/12": "8.333333%",
|
|
595
|
+
"1/2": "50%",
|
|
596
|
+
"1/3": "33.333333%",
|
|
597
|
+
"1/4": "25%",
|
|
598
|
+
"1/5": "20%",
|
|
599
|
+
"1/6": "16.666667%",
|
|
600
|
+
"10": "2.5rem",
|
|
601
|
+
"10/12": "83.333333%",
|
|
602
|
+
"11/12": "91.666667%",
|
|
603
|
+
"12": "3rem",
|
|
604
|
+
"16": "4rem",
|
|
605
|
+
"2": "0.5rem",
|
|
606
|
+
"2/12": "16.666667%",
|
|
607
|
+
"2/3": "66.666667%",
|
|
608
|
+
"2/4": "50%",
|
|
609
|
+
"2/5": "40%",
|
|
610
|
+
"2/6": "33.333333%",
|
|
611
|
+
"20": "5rem",
|
|
612
|
+
"24": "6rem",
|
|
613
|
+
"2xl": "42rem",
|
|
614
|
+
"3": "0.75rem",
|
|
615
|
+
"3/12": "25%",
|
|
616
|
+
"3/4": "75%",
|
|
617
|
+
"3/5": "60%",
|
|
618
|
+
"3/6": "50%",
|
|
619
|
+
"32": "8rem",
|
|
620
|
+
"3xl": "48rem",
|
|
621
|
+
"4": "1rem",
|
|
622
|
+
"4/12": "33.333333%",
|
|
623
|
+
"4/5": "80%",
|
|
624
|
+
"4/6": "66.666667%",
|
|
625
|
+
"40": "10rem",
|
|
626
|
+
"48": "12rem",
|
|
627
|
+
"4xl": "56rem",
|
|
628
|
+
"5": "1.25rem",
|
|
629
|
+
"5/12": "41.666667%",
|
|
630
|
+
"5/6": "83.333333%",
|
|
631
|
+
"56": "14rem",
|
|
632
|
+
"5xl": "64rem",
|
|
633
|
+
"6": "1.5rem",
|
|
634
|
+
"6/12": "50%",
|
|
635
|
+
"64": "16rem",
|
|
636
|
+
"6xl": "72rem",
|
|
637
|
+
"7/12": "58.333333%",
|
|
638
|
+
"7xl": "80rem",
|
|
639
|
+
"8": "2rem",
|
|
640
|
+
"8/12": "66.666667%",
|
|
641
|
+
"9/12": "75%",
|
|
642
|
+
"full": "100%",
|
|
643
|
+
"lg": "32rem",
|
|
644
|
+
"md": "28rem",
|
|
645
|
+
"prose": "65ch",
|
|
646
|
+
"px": "1px",
|
|
647
|
+
"screenHeight": "100vh",
|
|
648
|
+
"screenWidth": "100vw",
|
|
649
|
+
"sm": "24rem",
|
|
650
|
+
"xl": "36rem",
|
|
651
|
+
"xs": "20rem",
|
|
652
|
+
},
|
|
653
|
+
"space": [
|
|
654
|
+
"0",
|
|
655
|
+
"0.25rem",
|
|
656
|
+
"0.5rem",
|
|
657
|
+
"1rem",
|
|
658
|
+
"2rem",
|
|
659
|
+
"4rem",
|
|
660
|
+
"8rem",
|
|
661
|
+
"16rem",
|
|
662
|
+
"32rem",
|
|
663
|
+
],
|
|
664
|
+
"styles": {
|
|
665
|
+
".footnotes": {
|
|
666
|
+
"fontSize": [Function],
|
|
667
|
+
},
|
|
668
|
+
".text-center": {
|
|
669
|
+
"textAlign": "center",
|
|
670
|
+
},
|
|
671
|
+
"Book": {
|
|
672
|
+
"&:hover, &:focus": {
|
|
673
|
+
"filter": [Function],
|
|
674
|
+
"transform": "scale(1.01)",
|
|
675
|
+
"transition": "all .35s ease-in-out",
|
|
676
|
+
},
|
|
677
|
+
"filter": [Function],
|
|
678
|
+
},
|
|
679
|
+
"Container": {
|
|
680
|
+
"px": [
|
|
681
|
+
3,
|
|
682
|
+
4,
|
|
683
|
+
],
|
|
684
|
+
"py": [
|
|
685
|
+
2,
|
|
686
|
+
3,
|
|
687
|
+
],
|
|
688
|
+
},
|
|
689
|
+
"GitHubCardFooter": {
|
|
690
|
+
"display": "flex",
|
|
691
|
+
"justifyContent": "space-between",
|
|
692
|
+
"mt": 2,
|
|
693
|
+
},
|
|
694
|
+
"GradientBanner": {
|
|
695
|
+
"@keyframes highlight": {
|
|
696
|
+
"100%": {
|
|
697
|
+
"backgroundPosition": "0 0, 0 0",
|
|
698
|
+
},
|
|
699
|
+
},
|
|
700
|
+
"alignItems": "center",
|
|
701
|
+
"animation": "highlight 3s infinite alternate",
|
|
702
|
+
"backgroundImage": "
|
|
703
|
+
linear-gradient(white, white),
|
|
704
|
+
linear-gradient(180deg, cornflowerblue, purple 50%, cornflowerblue)",
|
|
705
|
+
"backgroundOrigin": "padding-box, border-box",
|
|
706
|
+
"backgroundPosition": "0 0, 0 100%",
|
|
707
|
+
"backgroundRepeat": "no-repeat",
|
|
708
|
+
"backgroundSize": "100% 100%, 100% 200%",
|
|
709
|
+
"border": "20px solid transparent",
|
|
710
|
+
"boxSizing": "border-box",
|
|
711
|
+
"color": "black",
|
|
712
|
+
"display": "flex",
|
|
713
|
+
"height": "340px",
|
|
714
|
+
"justifyContent": "center",
|
|
715
|
+
"maxWidth": "100%",
|
|
716
|
+
"padding": "1rem",
|
|
717
|
+
},
|
|
718
|
+
"GradientBannerDark": {
|
|
719
|
+
"@keyframes highlight": {
|
|
720
|
+
"100%": {
|
|
721
|
+
"backgroundPosition": "0 0, 0 0",
|
|
722
|
+
},
|
|
723
|
+
},
|
|
724
|
+
"alignItems": "center",
|
|
725
|
+
"animation": "highlight 3s infinite alternate",
|
|
726
|
+
"backgroundImage": "
|
|
727
|
+
linear-gradient(#252e3c, #252e3c),
|
|
728
|
+
linear-gradient(270deg, #00D7B9, #B95DD7 50%, #FFB367 100%);",
|
|
729
|
+
"backgroundOrigin": "padding-box, border-box",
|
|
730
|
+
"backgroundPosition": "0 0, 0 100%",
|
|
731
|
+
"backgroundRepeat": "no-repeat",
|
|
732
|
+
"backgroundSize": "100% 100%, 100% 200%",
|
|
733
|
+
"border": "20px solid transparent",
|
|
734
|
+
"boxSizing": "border-box",
|
|
735
|
+
"color": "light",
|
|
736
|
+
"display": "flex",
|
|
737
|
+
"height": "340px",
|
|
738
|
+
"justifyContent": "center",
|
|
739
|
+
"maxWidth": "100%",
|
|
740
|
+
"padding": "1rem",
|
|
741
|
+
},
|
|
742
|
+
"Header": {
|
|
743
|
+
"alignItems": "center",
|
|
744
|
+
"color": "text",
|
|
745
|
+
"display": "block",
|
|
746
|
+
"transition": "all 0.3s ease-in-out",
|
|
747
|
+
"width": "100%",
|
|
748
|
+
},
|
|
749
|
+
"InstagramItem": {
|
|
750
|
+
"&:hover, &:focus": {
|
|
751
|
+
"boxShadow": "lg",
|
|
752
|
+
"transform": "scale(1.015)",
|
|
753
|
+
},
|
|
754
|
+
"background": "none",
|
|
755
|
+
"border": "none",
|
|
756
|
+
"borderRadius": "8px",
|
|
757
|
+
"boxShadow": "md",
|
|
758
|
+
"cursor": "pointer",
|
|
759
|
+
"overflow": "hidden",
|
|
760
|
+
"p": 0,
|
|
761
|
+
"transition": "all 200ms ease-in-out",
|
|
762
|
+
},
|
|
763
|
+
"IntroExperienceSlide": {
|
|
764
|
+
"&.active-slide": {
|
|
765
|
+
"display": "block",
|
|
766
|
+
"height": "auto",
|
|
767
|
+
"opacity": 1,
|
|
768
|
+
"visibility": "initial",
|
|
769
|
+
},
|
|
770
|
+
"display": "flex",
|
|
771
|
+
"height": 0,
|
|
772
|
+
"opacity": 0,
|
|
773
|
+
"visibility": "hidden",
|
|
774
|
+
},
|
|
775
|
+
"PageFooter": {
|
|
776
|
+
"a": {
|
|
777
|
+
"color": "text",
|
|
778
|
+
},
|
|
779
|
+
"color": "text",
|
|
780
|
+
"display": "block",
|
|
781
|
+
"width": "100%",
|
|
782
|
+
"zIndex": "10",
|
|
783
|
+
},
|
|
784
|
+
"TopNavigation": {
|
|
785
|
+
"color": "white",
|
|
786
|
+
},
|
|
787
|
+
"VideoWrapper": {
|
|
788
|
+
"height": 0,
|
|
789
|
+
"iframe": {
|
|
790
|
+
"border": 0,
|
|
791
|
+
"height": "100%",
|
|
792
|
+
"left": 0,
|
|
793
|
+
"position": "absolute",
|
|
794
|
+
"top": 0,
|
|
795
|
+
"width": "100%",
|
|
796
|
+
},
|
|
797
|
+
"paddingBottom": "56.25%",
|
|
798
|
+
"paddingTop": "25px",
|
|
799
|
+
"position": "relative",
|
|
800
|
+
},
|
|
801
|
+
"WidgetFooter": {
|
|
802
|
+
"color": "text",
|
|
803
|
+
"fontFamily": "heading",
|
|
804
|
+
"textAlign": [
|
|
805
|
+
"center",
|
|
806
|
+
"right",
|
|
807
|
+
],
|
|
808
|
+
},
|
|
809
|
+
"outlined": {
|
|
810
|
+
"border": "4px solid #efefef",
|
|
811
|
+
},
|
|
812
|
+
"p": {
|
|
813
|
+
"fontSize": [
|
|
814
|
+
2,
|
|
815
|
+
3,
|
|
816
|
+
],
|
|
817
|
+
},
|
|
818
|
+
"root": {
|
|
819
|
+
"color": "text",
|
|
820
|
+
"display": "flex",
|
|
821
|
+
"flexDirection": "column",
|
|
822
|
+
"fontFamily": "body",
|
|
823
|
+
"fontWeight": "body",
|
|
824
|
+
"lineHeight": "body",
|
|
825
|
+
"minHeight": "100vh",
|
|
826
|
+
},
|
|
827
|
+
"table": {
|
|
828
|
+
"backgroundColor": "rgba(255, 255, 255, 0.35)",
|
|
829
|
+
"borderCollapse": "collapse",
|
|
830
|
+
"borderRadius": "10px",
|
|
831
|
+
"borderSpacing": 0,
|
|
832
|
+
"boxShadow": "0 0 10px rgba(0, 0, 0, 0.1)",
|
|
833
|
+
"color": "tableText",
|
|
834
|
+
"marginBottom": "1.5rem",
|
|
835
|
+
"overflow": "hidden",
|
|
836
|
+
"tbody tr:nth-of-type(even)": {
|
|
837
|
+
"backgroundColor": "tableRowBackground",
|
|
838
|
+
},
|
|
839
|
+
"tbody tr:nth-of-type(odd)": {
|
|
840
|
+
"backgroundColor": "tableRowAlternateBackground",
|
|
841
|
+
},
|
|
842
|
+
"th": {
|
|
843
|
+
"backgroundColor": "tableHeaderBackground",
|
|
844
|
+
"fontWeight": "bold",
|
|
845
|
+
"letterSpacing": "0.05em",
|
|
846
|
+
"textTransform": "uppercase",
|
|
847
|
+
},
|
|
848
|
+
"th, td": {
|
|
849
|
+
"fontSize": "1.125em",
|
|
850
|
+
"padding": "12px 15px",
|
|
851
|
+
"textAlign": "left",
|
|
852
|
+
},
|
|
853
|
+
"width": "100%",
|
|
854
|
+
},
|
|
855
|
+
"tableDark": {
|
|
856
|
+
"WebkitBackdropFilter": "blur(10px)",
|
|
857
|
+
"backdropFilter": "blur(10px)",
|
|
858
|
+
"backgroundColor": "rgba(30, 30, 47, 0.35)",
|
|
859
|
+
"border": "1px solid rgba(255, 255, 255, 0.15)",
|
|
860
|
+
"borderCollapse": "collapse",
|
|
861
|
+
"borderRadius": "10px",
|
|
862
|
+
"borderSpacing": 0,
|
|
863
|
+
"boxShadow": "0 0 20px rgba(0, 0, 0, 0.3)",
|
|
864
|
+
"color": "tableText",
|
|
865
|
+
"marginBottom": "1.5rem",
|
|
866
|
+
"overflow": "hidden",
|
|
867
|
+
"tbody tr:nth-of-type(even)": {
|
|
868
|
+
"backgroundColor": "tableRowBackground",
|
|
869
|
+
},
|
|
870
|
+
"tbody tr:nth-of-type(odd)": {
|
|
871
|
+
"backgroundColor": "tableRowAlternateBackground",
|
|
872
|
+
},
|
|
873
|
+
"th": {
|
|
874
|
+
"backgroundColor": "tableHeaderBackground",
|
|
875
|
+
"fontWeight": "bold",
|
|
876
|
+
"letterSpacing": "0.05em",
|
|
877
|
+
"textTransform": "uppercase",
|
|
878
|
+
},
|
|
879
|
+
"th, td": {
|
|
880
|
+
"fontSize": "1.125em",
|
|
881
|
+
"padding": "12px 15px",
|
|
882
|
+
"textAlign": "left",
|
|
883
|
+
},
|
|
884
|
+
"width": "100%",
|
|
885
|
+
},
|
|
886
|
+
"text": {
|
|
887
|
+
"inverse": {
|
|
888
|
+
"color": "muted",
|
|
889
|
+
},
|
|
890
|
+
"title": {
|
|
891
|
+
"fontFamily": "fonts.sans",
|
|
892
|
+
},
|
|
893
|
+
},
|
|
894
|
+
"ul": {
|
|
895
|
+
"fontSize": [
|
|
896
|
+
2,
|
|
897
|
+
3,
|
|
898
|
+
],
|
|
899
|
+
},
|
|
900
|
+
},
|
|
901
|
+
"text": {
|
|
902
|
+
"title": {
|
|
903
|
+
"color": "primary",
|
|
904
|
+
"fontFamily": "heading",
|
|
905
|
+
"fontSize": [
|
|
906
|
+
1,
|
|
907
|
+
2,
|
|
908
|
+
],
|
|
909
|
+
"fontWeight": "550",
|
|
910
|
+
"textTransform": "uppercase",
|
|
911
|
+
},
|
|
912
|
+
},
|
|
913
|
+
"transforms": {
|
|
914
|
+
"rotate": {
|
|
915
|
+
"-180": "-180deg",
|
|
916
|
+
"-45": "-45deg",
|
|
917
|
+
"-90": "-90deg",
|
|
918
|
+
"0": "0",
|
|
919
|
+
"180": "180deg",
|
|
920
|
+
"45": "45deg",
|
|
921
|
+
"90": "90deg",
|
|
922
|
+
},
|
|
923
|
+
"scale": {
|
|
924
|
+
"0": "0",
|
|
925
|
+
"100": "1",
|
|
926
|
+
"105": "1.05",
|
|
927
|
+
"110": "1.1",
|
|
928
|
+
"125": "1.25",
|
|
929
|
+
"150": "1.5",
|
|
930
|
+
"50": ".5",
|
|
931
|
+
"75": ".75",
|
|
932
|
+
"90": ".9",
|
|
933
|
+
"95": ".95",
|
|
934
|
+
},
|
|
935
|
+
"skew": {
|
|
936
|
+
"-12": "-12deg",
|
|
937
|
+
"-3": "-3deg",
|
|
938
|
+
"-6": "-6deg",
|
|
939
|
+
"0": "0",
|
|
940
|
+
"12": "12deg",
|
|
941
|
+
"3": "3deg",
|
|
942
|
+
"6": "6deg",
|
|
943
|
+
},
|
|
944
|
+
"transformOrigin": {
|
|
945
|
+
"bottom": "bottom",
|
|
946
|
+
"bottom-left": "bottom left",
|
|
947
|
+
"bottom-right": "bottom right",
|
|
948
|
+
"center": "center",
|
|
949
|
+
"left": "left",
|
|
950
|
+
"right": "right",
|
|
951
|
+
"top": "top",
|
|
952
|
+
"top-left": "top left",
|
|
953
|
+
"top-right": "top right",
|
|
954
|
+
},
|
|
955
|
+
"translate": {
|
|
956
|
+
"-1/2": "-50%",
|
|
957
|
+
"-full": "-100%",
|
|
958
|
+
"0": "0",
|
|
959
|
+
"1": "0.25rem",
|
|
960
|
+
"1/2": "50%",
|
|
961
|
+
"10": "2.5rem",
|
|
962
|
+
"12": "3rem",
|
|
963
|
+
"16": "4rem",
|
|
964
|
+
"2": "0.5rem",
|
|
965
|
+
"20": "5rem",
|
|
966
|
+
"24": "6rem",
|
|
967
|
+
"3": "0.75rem",
|
|
968
|
+
"32": "8rem",
|
|
969
|
+
"4": "1rem",
|
|
970
|
+
"40": "10rem",
|
|
971
|
+
"48": "12rem",
|
|
972
|
+
"5": "1.25rem",
|
|
973
|
+
"56": "14rem",
|
|
974
|
+
"6": "1.5rem",
|
|
975
|
+
"64": "16rem",
|
|
976
|
+
"8": "2rem",
|
|
977
|
+
"full": "100%",
|
|
978
|
+
"px": "1px",
|
|
979
|
+
},
|
|
980
|
+
},
|
|
981
|
+
"transitions": {
|
|
982
|
+
"duration": {
|
|
983
|
+
"100": "100ms",
|
|
984
|
+
"1000": "1000ms",
|
|
985
|
+
"150": "150ms",
|
|
986
|
+
"200": "200ms",
|
|
987
|
+
"300": "300ms",
|
|
988
|
+
"500": "500ms",
|
|
989
|
+
"700": "700ms",
|
|
990
|
+
"75": "75ms",
|
|
991
|
+
"default": "150ms",
|
|
992
|
+
},
|
|
993
|
+
"property": {
|
|
994
|
+
"all": "all",
|
|
995
|
+
"colors": "background-color, border-color, color, fill, stroke",
|
|
996
|
+
"default": "background-color, border-color, color, fill, stroke, opacity, box-shadow, transform",
|
|
997
|
+
"none": "none",
|
|
998
|
+
"opacity": "opacity",
|
|
999
|
+
"shadow": "box-shadow",
|
|
1000
|
+
"transform": "transform",
|
|
1001
|
+
},
|
|
1002
|
+
"timingFunction": {
|
|
1003
|
+
"default": "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
1004
|
+
"in": "cubic-bezier(0.4, 0, 1, 1)",
|
|
1005
|
+
"in-out": "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
1006
|
+
"linear": "linear",
|
|
1007
|
+
"out": "cubic-bezier(0, 0, 0.2, 1)",
|
|
1008
|
+
},
|
|
1009
|
+
},
|
|
1010
|
+
"variants": {
|
|
1011
|
+
"cards": {
|
|
1012
|
+
"dark": {
|
|
1013
|
+
"backgroundColor": "teal",
|
|
1014
|
+
},
|
|
1015
|
+
},
|
|
1016
|
+
},
|
|
1017
|
+
"zIndices": {
|
|
1018
|
+
"0": 0,
|
|
1019
|
+
"10": 10,
|
|
1020
|
+
"20": 20,
|
|
1021
|
+
"30": 30,
|
|
1022
|
+
"40": 40,
|
|
1023
|
+
"50": 50,
|
|
1024
|
+
"auto": "auto",
|
|
1025
|
+
},
|
|
1026
|
+
}
|
|
1027
|
+
`;
|