omgkit 2.31.0 → 2.32.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.
Files changed (33) hide show
  1. package/README.md +22 -29
  2. package/package.json +1 -1
  3. package/templates/design/themes/corporate-enterprise/consulting.json +457 -1
  4. package/templates/design/themes/corporate-enterprise/corporate-indigo.json +457 -1
  5. package/templates/design/themes/corporate-enterprise/finance.json +457 -1
  6. package/templates/design/themes/corporate-enterprise/healthcare.json +457 -1
  7. package/templates/design/themes/corporate-enterprise/legal.json +457 -1
  8. package/templates/design/themes/corporate-enterprise/ocean-blue.json +457 -1
  9. package/templates/design/themes/creative-bold/candy.json +457 -1
  10. package/templates/design/themes/creative-bold/coral-sunset.json +457 -1
  11. package/templates/design/themes/creative-bold/gradient-dream.json +457 -1
  12. package/templates/design/themes/creative-bold/neon.json +457 -1
  13. package/templates/design/themes/creative-bold/retro.json +457 -1
  14. package/templates/design/themes/creative-bold/studio.json +457 -1
  15. package/templates/design/themes/minimal-clean/minimal-slate.json +457 -1
  16. package/templates/design/themes/minimal-clean/mono.json +457 -1
  17. package/templates/design/themes/minimal-clean/nordic.json +457 -1
  18. package/templates/design/themes/minimal-clean/paper.json +457 -1
  19. package/templates/design/themes/minimal-clean/swiss.json +457 -1
  20. package/templates/design/themes/minimal-clean/zen.json +457 -1
  21. package/templates/design/themes/nature-organic/arctic.json +457 -1
  22. package/templates/design/themes/nature-organic/autumn.json +457 -1
  23. package/templates/design/themes/nature-organic/desert.json +457 -1
  24. package/templates/design/themes/nature-organic/forest.json +457 -1
  25. package/templates/design/themes/nature-organic/lavender.json +457 -1
  26. package/templates/design/themes/nature-organic/ocean.json +457 -1
  27. package/templates/design/themes/tech-ai/electric-cyan.json +459 -29
  28. package/templates/design/themes/tech-ai/hologram.json +457 -1
  29. package/templates/design/themes/tech-ai/matrix-green.json +457 -1
  30. package/templates/design/themes/tech-ai/neo-tokyo.json +457 -1
  31. package/templates/design/themes/tech-ai/neural-dark.json +457 -1
  32. package/templates/design/themes/tech-ai/quantum-purple.json +457 -1
  33. package/templates/design/themes/tech-ai/electric-cyan-v2.json +0 -362
package/README.md CHANGED
@@ -41,7 +41,7 @@ All coordinated through **Omega-level thinking** - a framework for finding break
41
41
  | **Workflows** | 69 | Complete development processes from idea to deploy |
42
42
  | **Skills** | 162 | Domain expertise modules across 24 categories |
43
43
  | **Modes** | 10 | Behavioral configurations for different contexts |
44
- | **Themes** | 31 | Curated design system themes (V1 + V2 schemas) |
44
+ | **Themes** | 30 | Curated design system themes (V2 schema with color scales) |
45
45
  | **Archetypes** | 14 | Project templates for autonomous development |
46
46
 
47
47
  ---
@@ -166,38 +166,36 @@ testing:
166
166
  target: 85
167
167
  ```
168
168
 
169
- ### 6. Design System (Enhanced in 2.30.0)
169
+ ### 6. Design System
170
170
 
171
- OMGKIT includes a complete design system with 31 curated themes for shadcn/ui integration. Now supports both **V1** (flat colors) and **V2** (color scales, effects, animations) theme schemas.
171
+ OMGKIT includes a complete design system with **30 curated V2 themes** for shadcn/ui integration. All themes use the V2 schema with 12-step color scales, effects, and animations.
172
172
 
173
173
  ```bash
174
174
  # Initialize with a theme (opt-in)
175
175
  omgkit init --theme neo-tokyo
176
176
 
177
- # Or use a V2 theme with advanced features
178
- omgkit init --theme electric-cyan-v2
179
-
180
177
  # Or explore themes first
181
178
  omgkit init --with-design
182
179
  ```
183
180
 
184
- #### Theme Schema Versions
181
+ #### V2 Theme Features
182
+
183
+ All 30 themes include:
185
184
 
186
- | Feature | V1 | V2 |
187
- |---------|----|----|
188
- | Flat colors | | |
189
- | 12-step color scales | - | |
190
- | $ref token references | - | |
191
- | Status colors (success/warning/info) | - | |
192
- | Effects (glass, glow, gradient) | - | ✓ |
193
- | Animations (keyframes) | - | |
194
- | Alpha variants | - | ✓ |
185
+ | Feature | Description |
186
+ |---------|-------------|
187
+ | 12-step color scales | `--primary-1` through `--primary-12` |
188
+ | Alpha variants | `--primary-a1` through `--primary-a12` |
189
+ | Status colors | `--success`, `--warning`, `--info`, `--destructive` |
190
+ | Effects | glassMorphism, glow, gradients |
191
+ | Animations | shimmer, pulse-glow, fade-in, slide-up |
192
+ | Backward compatibility | Includes flat `colors` block for legacy support |
195
193
 
196
194
  #### 5 Theme Categories
197
195
 
198
196
  | Category | Themes | Description |
199
197
  |----------|--------|-------------|
200
- | **Tech & AI** | neo-tokyo, electric-cyan, electric-cyan-v2, neural-dark, matrix-green, quantum-purple, hologram | Futuristic, cyberpunk-inspired |
198
+ | **Tech & AI** | neo-tokyo, electric-cyan, neural-dark, matrix-green, quantum-purple, hologram | Futuristic, cyberpunk-inspired |
201
199
  | **Minimal & Clean** | minimal-slate, paper, mono, zen, nordic, swiss | Simple, elegant, distraction-free |
202
200
  | **Corporate** | ocean-blue, corporate-indigo, finance, legal, healthcare, consulting | Professional, trustworthy |
203
201
  | **Creative & Bold** | coral-sunset, candy, neon, gradient-dream, retro, studio | Vibrant, expressive |
@@ -207,7 +205,7 @@ omgkit init --with-design
207
205
 
208
206
  | Command | Description |
209
207
  |---------|-------------|
210
- | `/design:themes` | List all 31 curated themes |
208
+ | `/design:themes` | List all 30 curated themes |
211
209
  | `/design:theme <id>` | Apply a theme to your project |
212
210
  | `/design:preview` | Preview current theme colors |
213
211
  | `/design:builder` | Build custom theme interactively |
@@ -221,7 +219,7 @@ omgkit init --with-design
221
219
  | `/design:export <format>` | Export to CSS, SCSS, Tailwind, Figma, Style Dictionary |
222
220
  | `/design:validate` | Validate theme structure |
223
221
 
224
- #### Theme Export (New in 2.30.0)
222
+ #### Theme Export
225
223
 
226
224
  Export your theme to various design tools and framework formats:
227
225
 
@@ -246,9 +244,6 @@ Rebuild your entire project's UI with a single command:
246
244
  # Rebuild with new theme (scans and fixes hardcoded colors)
247
245
  omgkit design:rebuild neo-tokyo
248
246
 
249
- # Use V2 theme for advanced features
250
- omgkit design:rebuild electric-cyan-v2
251
-
252
247
  # Scan for non-compliant colors
253
248
  omgkit design:scan
254
249
 
@@ -261,16 +256,14 @@ The rebuild feature:
261
256
  - Scans `app/`, `components/`, `src/`, `pages/` directories
262
257
  - Replaces hardcoded colors (`bg-blue-500`) with theme variables (`bg-primary`)
263
258
  - Reports unfixable patterns for manual review
264
- - V2 themes generate 12-step color scales and status colors
265
-
266
- #### V2 Theme Features
259
+ - Generates 12-step color scales and status colors
267
260
 
268
- V2 themes provide additional CSS variables:
261
+ #### Generated CSS Variables
269
262
 
270
263
  ```css
271
264
  /* 12-step color scales */
272
- --cyan-1 through --cyan-12
273
- --cyan-a1 through --cyan-a12 /* Alpha variants */
265
+ --rose-1 through --rose-12
266
+ --rose-a1 through --rose-a12 /* Alpha variants */
274
267
 
275
268
  /* Status colors */
276
269
  --success, --warning, --info
@@ -288,7 +281,7 @@ V2 themes provide additional CSS variables:
288
281
  OMGKIT provides CSS variables that shadcn/ui components consume:
289
282
 
290
283
  ```
291
- .omgkit/design/theme.json → Theme configuration
284
+ .omgkit/design/theme.json → Theme configuration (V2)
292
285
  .omgkit/design/theme.css → CSS variables (:root + .dark)
293
286
  ```
294
287
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omgkit",
3
- "version": "2.31.0",
3
+ "version": "2.32.0",
4
4
  "description": "Omega-Level Development Kit - AI Team System for Claude Code. 41 agents, 174 commands, 162 skills, 69 workflows.",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -1,8 +1,464 @@
1
1
  {
2
+ "version": "2.0",
2
3
  "name": "Consulting",
3
4
  "id": "consulting",
4
5
  "category": "corporate-enterprise",
5
- "description": "Management consulting aesthetic like McKinsey and BCG",
6
+ "description": "Management consulting aesthetic like McKinsey and BCG - featuring 12-step color scales, effects, and animations",
7
+ "colorSystem": {
8
+ "type": "radix",
9
+ "version": "3.0"
10
+ },
11
+ "scales": {
12
+ "primary": {
13
+ "name": "sky",
14
+ "hue": 222,
15
+ "saturation": {
16
+ "light": {
17
+ "low": 50,
18
+ "high": 85
19
+ },
20
+ "dark": {
21
+ "low": 40,
22
+ "high": 80
23
+ }
24
+ },
25
+ "steps": {
26
+ "light": {
27
+ "1": "222 50% 99%",
28
+ "2": "222 55% 97%",
29
+ "3": "222 60% 93%",
30
+ "4": "222 65% 88%",
31
+ "5": "222 70% 82%",
32
+ "6": "222 75% 74%",
33
+ "7": "222 80% 62%",
34
+ "8": "222 75% 50%",
35
+ "9": "222 85% 45%",
36
+ "10": "222 85% 40%",
37
+ "11": "222 85% 32%",
38
+ "12": "222 90% 18%"
39
+ },
40
+ "dark": {
41
+ "1": "222 40% 7%",
42
+ "2": "222 45% 10%",
43
+ "3": "222 50% 14%",
44
+ "4": "222 55% 18%",
45
+ "5": "222 60% 22%",
46
+ "6": "222 65% 28%",
47
+ "7": "222 70% 35%",
48
+ "8": "222 60% 42%",
49
+ "9": "222 80% 45%",
50
+ "10": "222 75% 52%",
51
+ "11": "222 65% 65%",
52
+ "12": "222 55% 80%"
53
+ }
54
+ },
55
+ "alpha": {
56
+ "light": {
57
+ "1": "222 80% 45% / 0.05",
58
+ "2": "222 80% 45% / 0.1",
59
+ "3": "222 80% 45% / 0.15",
60
+ "4": "222 80% 45% / 0.2",
61
+ "5": "222 80% 45% / 0.3",
62
+ "6": "222 80% 45% / 0.4",
63
+ "7": "222 80% 45% / 0.5",
64
+ "8": "222 80% 45% / 0.6",
65
+ "9": "222 80% 45% / 0.7",
66
+ "10": "222 80% 45% / 0.8",
67
+ "11": "222 80% 45% / 0.9",
68
+ "12": "222 80% 45% / 0.95"
69
+ },
70
+ "dark": {
71
+ "1": "222 80% 50% / 0.05",
72
+ "2": "222 80% 50% / 0.1",
73
+ "3": "222 80% 50% / 0.15",
74
+ "4": "222 80% 50% / 0.2",
75
+ "5": "222 80% 50% / 0.3",
76
+ "6": "222 80% 50% / 0.4",
77
+ "7": "222 80% 50% / 0.5",
78
+ "8": "222 80% 50% / 0.6",
79
+ "9": "222 80% 50% / 0.7",
80
+ "10": "222 80% 50% / 0.8",
81
+ "11": "222 80% 50% / 0.9",
82
+ "12": "222 80% 50% / 0.95"
83
+ }
84
+ }
85
+ },
86
+ "neutral": {
87
+ "name": "slate",
88
+ "hue": 222,
89
+ "steps": {
90
+ "light": {
91
+ "1": "212 40% 99%",
92
+ "2": "212 40% 98%",
93
+ "3": "212 35% 96%",
94
+ "4": "212 30% 94%",
95
+ "5": "212 25% 91%",
96
+ "6": "212 20% 86%",
97
+ "7": "212 18% 78%",
98
+ "8": "212 16% 65%",
99
+ "9": "212 14% 50%",
100
+ "10": "212 12% 40%",
101
+ "11": "222 47% 11%",
102
+ "12": "222 84% 5%"
103
+ },
104
+ "dark": {
105
+ "1": "222 84% 5%",
106
+ "2": "222 50% 8%",
107
+ "3": "217 33% 17%",
108
+ "4": "217 30% 22%",
109
+ "5": "217 28% 28%",
110
+ "6": "217 26% 35%",
111
+ "7": "217 22% 45%",
112
+ "8": "217 20% 55%",
113
+ "9": "215 20% 65%",
114
+ "10": "215 18% 75%",
115
+ "11": "212 35% 88%",
116
+ "12": "212 40% 98%"
117
+ }
118
+ }
119
+ }
120
+ },
121
+ "semanticTokens": {
122
+ "light": {
123
+ "background": "0 0% 100%",
124
+ "foreground": {
125
+ "$ref": "scales.neutral.steps.light.12"
126
+ },
127
+ "surface": {
128
+ "$ref": "scales.neutral.steps.light.2"
129
+ },
130
+ "surface-hover": {
131
+ "$ref": "scales.neutral.steps.light.3"
132
+ },
133
+ "surface-active": {
134
+ "$ref": "scales.neutral.steps.light.4"
135
+ },
136
+ "primary": {
137
+ "$ref": "scales.primary.steps.light.9"
138
+ },
139
+ "primary-hover": {
140
+ "$ref": "scales.primary.steps.light.10"
141
+ },
142
+ "primary-foreground": "210 40% 98%",
143
+ "secondary": {
144
+ "$ref": "scales.neutral.steps.light.3"
145
+ },
146
+ "secondary-hover": {
147
+ "$ref": "scales.neutral.steps.light.4"
148
+ },
149
+ "secondary-foreground": {
150
+ "$ref": "scales.neutral.steps.light.11"
151
+ },
152
+ "muted": {
153
+ "$ref": "scales.neutral.steps.light.3"
154
+ },
155
+ "muted-foreground": {
156
+ "$ref": "scales.neutral.steps.light.9"
157
+ },
158
+ "accent": {
159
+ "$ref": "scales.neutral.steps.light.3"
160
+ },
161
+ "accent-hover": {
162
+ "$ref": "scales.neutral.steps.light.4"
163
+ },
164
+ "accent-foreground": {
165
+ "$ref": "scales.neutral.steps.light.11"
166
+ },
167
+ "border": {
168
+ "$ref": "scales.neutral.steps.light.5"
169
+ },
170
+ "border-hover": {
171
+ "$ref": "scales.neutral.steps.light.6"
172
+ },
173
+ "input": {
174
+ "$ref": "scales.neutral.steps.light.5"
175
+ },
176
+ "input-hover": {
177
+ "$ref": "scales.neutral.steps.light.6"
178
+ },
179
+ "ring": {
180
+ "$ref": "scales.primary.steps.light.9"
181
+ },
182
+ "ring-offset": "0 0% 100%",
183
+ "card": "0 0% 100%",
184
+ "card-foreground": {
185
+ "$ref": "scales.neutral.steps.light.12"
186
+ },
187
+ "popover": "0 0% 100%",
188
+ "popover-foreground": {
189
+ "$ref": "scales.neutral.steps.light.12"
190
+ },
191
+ "panel": {
192
+ "$ref": "scales.neutral.steps.light.2"
193
+ },
194
+ "panel-translucent": "0 0% 100% / 0.9",
195
+ "overlay": "0 0% 0% / 0.4"
196
+ },
197
+ "dark": {
198
+ "background": {
199
+ "$ref": "scales.neutral.steps.dark.1"
200
+ },
201
+ "foreground": {
202
+ "$ref": "scales.neutral.steps.dark.12"
203
+ },
204
+ "surface": {
205
+ "$ref": "scales.neutral.steps.dark.2"
206
+ },
207
+ "surface-hover": {
208
+ "$ref": "scales.neutral.steps.dark.3"
209
+ },
210
+ "surface-active": {
211
+ "$ref": "scales.neutral.steps.dark.4"
212
+ },
213
+ "primary": {
214
+ "$ref": "scales.primary.steps.dark.9"
215
+ },
216
+ "primary-hover": {
217
+ "$ref": "scales.primary.steps.dark.10"
218
+ },
219
+ "primary-foreground": {
220
+ "$ref": "scales.neutral.steps.dark.1"
221
+ },
222
+ "secondary": {
223
+ "$ref": "scales.neutral.steps.dark.3"
224
+ },
225
+ "secondary-hover": {
226
+ "$ref": "scales.neutral.steps.dark.4"
227
+ },
228
+ "secondary-foreground": {
229
+ "$ref": "scales.neutral.steps.dark.12"
230
+ },
231
+ "muted": {
232
+ "$ref": "scales.neutral.steps.dark.3"
233
+ },
234
+ "muted-foreground": {
235
+ "$ref": "scales.neutral.steps.dark.9"
236
+ },
237
+ "accent": {
238
+ "$ref": "scales.neutral.steps.dark.3"
239
+ },
240
+ "accent-hover": {
241
+ "$ref": "scales.neutral.steps.dark.4"
242
+ },
243
+ "accent-foreground": {
244
+ "$ref": "scales.neutral.steps.dark.12"
245
+ },
246
+ "border": {
247
+ "$ref": "scales.neutral.steps.dark.3"
248
+ },
249
+ "border-hover": {
250
+ "$ref": "scales.neutral.steps.dark.4"
251
+ },
252
+ "input": {
253
+ "$ref": "scales.neutral.steps.dark.3"
254
+ },
255
+ "input-hover": {
256
+ "$ref": "scales.neutral.steps.dark.4"
257
+ },
258
+ "ring": {
259
+ "$ref": "scales.primary.steps.dark.9"
260
+ },
261
+ "ring-offset": {
262
+ "$ref": "scales.neutral.steps.dark.1"
263
+ },
264
+ "card": {
265
+ "$ref": "scales.neutral.steps.dark.1"
266
+ },
267
+ "card-foreground": {
268
+ "$ref": "scales.neutral.steps.dark.12"
269
+ },
270
+ "popover": {
271
+ "$ref": "scales.neutral.steps.dark.1"
272
+ },
273
+ "popover-foreground": {
274
+ "$ref": "scales.neutral.steps.dark.12"
275
+ },
276
+ "panel": {
277
+ "$ref": "scales.neutral.steps.dark.2"
278
+ },
279
+ "panel-translucent": "222 84% 5% / 0.9",
280
+ "overlay": "0 0% 0% / 0.6"
281
+ }
282
+ },
283
+ "statusColors": {
284
+ "light": {
285
+ "destructive": "0 84% 60%",
286
+ "destructive-foreground": "0 0% 98%",
287
+ "success": "151 55% 42%",
288
+ "success-foreground": "0 0% 100%",
289
+ "warning": "39 100% 50%",
290
+ "warning-foreground": "39 40% 15%",
291
+ "info": "206 100% 50%",
292
+ "info-foreground": "0 0% 100%"
293
+ },
294
+ "dark": {
295
+ "destructive": "0 63% 31%",
296
+ "destructive-foreground": "0 0% 98%",
297
+ "success": "151 50% 45%",
298
+ "success-foreground": "0 0% 100%",
299
+ "warning": "39 90% 55%",
300
+ "warning-foreground": "39 80% 10%",
301
+ "info": "206 90% 55%",
302
+ "info-foreground": "0 0% 100%"
303
+ }
304
+ },
305
+ "chartColors": {
306
+ "1": {
307
+ "$ref": "scales.primary.steps.light.9"
308
+ },
309
+ "2": "262 83% 58%",
310
+ "3": "25 95% 53%",
311
+ "4": "142 76% 36%",
312
+ "5": "347 77% 50%"
313
+ },
314
+ "sidebarTokens": {
315
+ "light": {
316
+ "background": "0 0% 98%",
317
+ "foreground": {
318
+ "$ref": "scales.neutral.steps.light.9"
319
+ },
320
+ "primary": {
321
+ "$ref": "scales.primary.steps.light.9"
322
+ },
323
+ "primary-foreground": "0 0% 98%",
324
+ "accent": {
325
+ "$ref": "scales.neutral.steps.light.3"
326
+ },
327
+ "accent-foreground": {
328
+ "$ref": "scales.neutral.steps.light.11"
329
+ },
330
+ "border": {
331
+ "$ref": "scales.neutral.steps.light.5"
332
+ },
333
+ "ring": {
334
+ "$ref": "scales.primary.steps.light.9"
335
+ }
336
+ },
337
+ "dark": {
338
+ "background": {
339
+ "$ref": "scales.neutral.steps.dark.1"
340
+ },
341
+ "foreground": {
342
+ "$ref": "scales.neutral.steps.dark.12"
343
+ },
344
+ "primary": {
345
+ "$ref": "scales.primary.steps.dark.9"
346
+ },
347
+ "primary-foreground": "0 0% 100%",
348
+ "accent": {
349
+ "$ref": "scales.neutral.steps.dark.3"
350
+ },
351
+ "accent-foreground": {
352
+ "$ref": "scales.neutral.steps.dark.12"
353
+ },
354
+ "border": {
355
+ "$ref": "scales.neutral.steps.dark.3"
356
+ },
357
+ "ring": {
358
+ "$ref": "scales.primary.steps.dark.9"
359
+ }
360
+ }
361
+ },
362
+ "typography": {
363
+ "fontFamily": {
364
+ "sans": "Inter, system-ui, sans-serif",
365
+ "mono": "JetBrains Mono, monospace"
366
+ },
367
+ "fontFeatureSettings": "\"rlig\" 1, \"calt\" 1"
368
+ },
369
+ "spacing": {
370
+ "radius": "0.375rem",
371
+ "radiusLg": "var(--radius)",
372
+ "radiusMd": "calc(var(--radius) - 2px)",
373
+ "radiusSm": "calc(var(--radius) - 4px)"
374
+ },
375
+ "effects": {
376
+ "glassMorphism": {
377
+ "background": {
378
+ "$ref": "scales.neutral.steps.light.1"
379
+ },
380
+ "backdropBlur": "12px"
381
+ },
382
+ "glow": {
383
+ "default": "0 0 20px",
384
+ "lg": "0 0 40px",
385
+ "color": {
386
+ "$ref": "scales.primary.steps.light.9"
387
+ }
388
+ },
389
+ "gradient": {
390
+ "primary": {
391
+ "from": {
392
+ "$ref": "scales.primary.steps.light.9"
393
+ },
394
+ "to": {
395
+ "$ref": "scales.primary.steps.light.11"
396
+ },
397
+ "direction": "135deg"
398
+ },
399
+ "surface": {
400
+ "from": "0 0% 100%",
401
+ "to": {
402
+ "$ref": "scales.neutral.steps.light.2"
403
+ },
404
+ "direction": "180deg"
405
+ }
406
+ }
407
+ },
408
+ "animations": {
409
+ "shimmer": {
410
+ "duration": "8s",
411
+ "easing": "ease-in-out",
412
+ "iteration": "infinite",
413
+ "keyframes": {
414
+ "0%": {
415
+ "backgroundPosition": "-200% 0"
416
+ },
417
+ "100%": {
418
+ "backgroundPosition": "200% 0"
419
+ }
420
+ }
421
+ },
422
+ "pulse-glow": {
423
+ "duration": "2s",
424
+ "easing": "ease-in-out",
425
+ "iteration": "infinite",
426
+ "keyframes": {
427
+ "0%, 100%": {
428
+ "boxShadow": "0 0 20px hsl(222 80% 45% / 0.3)"
429
+ },
430
+ "50%": {
431
+ "boxShadow": "0 0 40px hsl(222 80% 45% / 0.6)"
432
+ }
433
+ }
434
+ },
435
+ "fade-in": {
436
+ "duration": "0.3s",
437
+ "easing": "ease-out",
438
+ "keyframes": {
439
+ "from": {
440
+ "opacity": "0"
441
+ },
442
+ "to": {
443
+ "opacity": "1"
444
+ }
445
+ }
446
+ },
447
+ "slide-up": {
448
+ "duration": "0.4s",
449
+ "easing": "cubic-bezier(0.16, 1, 0.3, 1)",
450
+ "keyframes": {
451
+ "from": {
452
+ "transform": "translateY(10px)",
453
+ "opacity": "0"
454
+ },
455
+ "to": {
456
+ "transform": "translateY(0)",
457
+ "opacity": "1"
458
+ }
459
+ }
460
+ }
461
+ },
6
462
  "colors": {
7
463
  "light": {
8
464
  "background": "0 0% 100%",