omnidesign 1.0.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 (77) hide show
  1. package/LICENSE +21 -0
  2. package/QUICKREF.md +150 -0
  3. package/README.md +576 -0
  4. package/bin/cli.js +390 -0
  5. package/bin/detect-ide.js +50 -0
  6. package/bin/install.js +8 -0
  7. package/logo.jpg +0 -0
  8. package/package.json +84 -0
  9. package/recipes/components/README.md +29 -0
  10. package/recipes/components/agent-card.md +314 -0
  11. package/recipes/components/ai-chat.md +252 -0
  12. package/recipes/components/bento-grid.md +186 -0
  13. package/recipes/components/code-block.md +503 -0
  14. package/recipes/components/file-upload.md +483 -0
  15. package/recipes/components/forms.md +238 -0
  16. package/recipes/components/hero-section.md +161 -0
  17. package/recipes/components/navbar.md +214 -0
  18. package/recipes/components/prompt-input.md +293 -0
  19. package/recipes/components/thinking-indicator.md +372 -0
  20. package/recipes/motion/README.md +3 -0
  21. package/recipes/motion/motion-system.md +437 -0
  22. package/recipes/patterns/README.md +3 -0
  23. package/skills/aider/omnidesign.md +67 -0
  24. package/skills/amp/SKILL.md +114 -0
  25. package/skills/antigravity/SKILL.md +114 -0
  26. package/skills/claude/omnidesign.md +111 -0
  27. package/skills/continue/omnidesign.yaml +29 -0
  28. package/skills/cursor/omnidesign.md +110 -0
  29. package/skills/kilo/SKILL.md +114 -0
  30. package/skills/opencode/omnidesign.md +110 -0
  31. package/skills/vscode/package.json +66 -0
  32. package/skills/zed/omnidesign.json +7 -0
  33. package/tokens/motion/README.md +3 -0
  34. package/tokens/primitives/README.md +3 -0
  35. package/tokens/primitives/color.json +219 -0
  36. package/tokens/primitives/motion.json +56 -0
  37. package/tokens/primitives/radii.json +37 -0
  38. package/tokens/primitives/shadows.json +34 -0
  39. package/tokens/primitives/spacing.json +67 -0
  40. package/tokens/primitives/typography.json +127 -0
  41. package/tokens/semantic/README.md +3 -0
  42. package/tokens/semantic/color.json +114 -0
  43. package/tokens/semantic/motion.json +44 -0
  44. package/tokens/semantic/radii.json +29 -0
  45. package/tokens/semantic/shadows.json +24 -0
  46. package/tokens/semantic/spacing.json +69 -0
  47. package/tokens/semantic/typography.json +118 -0
  48. package/tokens/shadows/README.md +3 -0
  49. package/tokens/themes/README.md +3 -0
  50. package/tokens/themes/berry.json +143 -0
  51. package/tokens/themes/brutalist.json +143 -0
  52. package/tokens/themes/coral.json +143 -0
  53. package/tokens/themes/corporate.json +143 -0
  54. package/tokens/themes/cream.json +143 -0
  55. package/tokens/themes/cyberpunk.json +143 -0
  56. package/tokens/themes/daylight.json +143 -0
  57. package/tokens/themes/deep-space.json +143 -0
  58. package/tokens/themes/forest.json +143 -0
  59. package/tokens/themes/graphite.json +143 -0
  60. package/tokens/themes/lavender.json +143 -0
  61. package/tokens/themes/midnight.json +143 -0
  62. package/tokens/themes/mint.json +143 -0
  63. package/tokens/themes/navy.json +143 -0
  64. package/tokens/themes/noir.json +143 -0
  65. package/tokens/themes/obsidian.json +143 -0
  66. package/tokens/themes/ocean.json +143 -0
  67. package/tokens/themes/paper.json +143 -0
  68. package/tokens/themes/ruby.json +143 -0
  69. package/tokens/themes/slate.json +143 -0
  70. package/tokens/themes/snow.json +143 -0
  71. package/tokens/themes/solar.json +143 -0
  72. package/tokens/themes/spring.json +143 -0
  73. package/tokens/themes/starry-night.json +143 -0
  74. package/tokens/themes/sunset.json +143 -0
  75. package/tokens/typography/FONT_GUIDE.md +381 -0
  76. package/tokens/typography/README.md +37 -0
  77. package/tokens/typography/font-collection.json +221 -0
@@ -0,0 +1,143 @@
1
+ {
2
+ "theme": {
3
+ "$type": "theme",
4
+ "$value": "ruby",
5
+ "$description": "Burgundy and wine red theme for luxury brands - elegant, sophisticated, and premium aesthetic"
6
+ },
7
+ "color": {
8
+ "text": {
9
+ "default": {
10
+ "$type": "color",
11
+ "$value": "#FEF2F2",
12
+ "$description": "Primary text on dark surfaces - near white for readability"
13
+ },
14
+ "muted": {
15
+ "$type": "color",
16
+ "$value": "#FCA5A5",
17
+ "$description": "Secondary text - light rose for less important content"
18
+ },
19
+ "inverted": {
20
+ "$type": "color",
21
+ "$value": "#4C0519",
22
+ "$description": "Text color for light surfaces - deep burgundy"
23
+ },
24
+ "link": {
25
+ "$type": "color",
26
+ "$value": "#FB7185",
27
+ "$description": "Link text color - rose accent"
28
+ },
29
+ "link.hover": {
30
+ "$type": "color",
31
+ "$value": "#FDA4AF",
32
+ "$description": "Link text color on hover - lighter rose"
33
+ }
34
+ },
35
+ "surface": {
36
+ "default": {
37
+ "$type": "color",
38
+ "$value": "#881337",
39
+ "$description": "Default surface background - deep burgundy wine"
40
+ },
41
+ "raised": {
42
+ "$type": "color",
43
+ "$value": "#9F1239",
44
+ "$description": "Elevated surface background - lighter burgundy for cards"
45
+ },
46
+ "sunken": {
47
+ "$type": "color",
48
+ "$value": "#4C0519",
49
+ "$description": "Depressed surface background - even darker wine for inputs"
50
+ },
51
+ "overlay": {
52
+ "$type": "color",
53
+ "$value": "rgba(76, 5, 25, 0.85)",
54
+ "$description": "Overlay background for modals - semi-transparent burgundy"
55
+ }
56
+ },
57
+ "border": {
58
+ "default": {
59
+ "$type": "color",
60
+ "$value": "#9F1239",
61
+ "$description": "Default border color - muted burgundy"
62
+ },
63
+ "subtle": {
64
+ "$type": "color",
65
+ "$value": "#881337",
66
+ "$description": "Subtle border for dividers - faint wine"
67
+ },
68
+ "strong": {
69
+ "$type": "color",
70
+ "$value": "#BE123C",
71
+ "$description": "Stronger border for emphasis - visible burgundy"
72
+ }
73
+ },
74
+ "interactive": {
75
+ "primary": {
76
+ "$type": "color",
77
+ "$value": "#E11D48",
78
+ "$description": "Primary interactive element color - vibrant rose"
79
+ },
80
+ "primary.hover": {
81
+ "$type": "color",
82
+ "$value": "#BE123C",
83
+ "$description": "Primary interactive color on hover - darker rose"
84
+ },
85
+ "secondary": {
86
+ "$type": "color",
87
+ "$value": "#F43F5E",
88
+ "$description": "Secondary interactive element color - pink-red"
89
+ }
90
+ },
91
+ "focus": {
92
+ "ring": {
93
+ "$type": "color",
94
+ "$value": "#FB7185",
95
+ "$description": "Focus ring outline color - rose glow"
96
+ }
97
+ },
98
+ "status": {
99
+ "success": {
100
+ "$type": "color",
101
+ "$value": "#86EFAC",
102
+ "$description": "Success state color - emerald green for contrast"
103
+ },
104
+ "warning": {
105
+ "$type": "color",
106
+ "$value": "#FDE047",
107
+ "$description": "Warning state color - yellow for visibility"
108
+ },
109
+ "error": {
110
+ "$type": "color",
111
+ "$value": "#FDA4AF",
112
+ "$description": "Error state color - pink-red matching theme"
113
+ },
114
+ "info": {
115
+ "$type": "color",
116
+ "$value": "#67E8F9",
117
+ "$description": "Info state color - cyan for clarity"
118
+ }
119
+ }
120
+ },
121
+ "shadow": {
122
+ "card": {
123
+ "$type": "shadow",
124
+ "$value": "0 4px 6px -1px rgba(225, 29, 72, 0.2), 0 2px 4px -1px rgba(225, 29, 72, 0.15)",
125
+ "$description": "Card elevation shadow - rose-tinted shadow"
126
+ },
127
+ "dropdown": {
128
+ "$type": "shadow",
129
+ "$value": "0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3)",
130
+ "$description": "Dropdown menu elevation shadow - deep shadow"
131
+ },
132
+ "modal": {
133
+ "$type": "shadow",
134
+ "$value": "0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 12px 24px -4px rgba(0, 0, 0, 0.4)",
135
+ "$description": "Modal dialog elevation shadow - most prominent"
136
+ },
137
+ "focus": {
138
+ "$type": "shadow",
139
+ "$value": "0 0 0 3px rgba(251, 113, 133, 0.4)",
140
+ "$description": "Focus ring glow shadow - rose glow ring"
141
+ }
142
+ }
143
+ }
@@ -0,0 +1,143 @@
1
+ {
2
+ "theme": {
3
+ "$type": "theme",
4
+ "$value": "slate",
5
+ "$description": "Modern gray with teal accent - clean, contemporary, and tech-forward theme for modern SaaS applications"
6
+ },
7
+ "color": {
8
+ "text": {
9
+ "default": {
10
+ "$type": "color",
11
+ "$value": "#0F172A",
12
+ "$description": "Primary text on light surfaces - deep slate gray"
13
+ },
14
+ "muted": {
15
+ "$type": "color",
16
+ "$value": "#64748B",
17
+ "$description": "Secondary text - cool slate for less important content"
18
+ },
19
+ "inverted": {
20
+ "$type": "color",
21
+ "$value": "#FFFFFF",
22
+ "$description": "Text color for dark surfaces - pure white"
23
+ },
24
+ "link": {
25
+ "$type": "color",
26
+ "$value": "#0D9488",
27
+ "$description": "Link text color - teal accent"
28
+ },
29
+ "link.hover": {
30
+ "$type": "color",
31
+ "$value": "#0F766E",
32
+ "$description": "Link text color on hover - darker teal"
33
+ }
34
+ },
35
+ "surface": {
36
+ "default": {
37
+ "$type": "color",
38
+ "$value": "#FFFFFF",
39
+ "$description": "Default surface background - pure white"
40
+ },
41
+ "raised": {
42
+ "$type": "color",
43
+ "$value": "#F8FAFC",
44
+ "$description": "Elevated surface background - very light slate for cards"
45
+ },
46
+ "sunken": {
47
+ "$type": "color",
48
+ "$value": "#E2E8F0",
49
+ "$description": "Depressed surface background - light slate for inputs"
50
+ },
51
+ "overlay": {
52
+ "$type": "color",
53
+ "$value": "rgba(15, 23, 42, 0.6)",
54
+ "$description": "Overlay background for modals - semi-transparent slate"
55
+ }
56
+ },
57
+ "border": {
58
+ "default": {
59
+ "$type": "color",
60
+ "$value": "#E2E8F0",
61
+ "$description": "Default border color - light slate"
62
+ },
63
+ "subtle": {
64
+ "$type": "color",
65
+ "$value": "#F1F5F9",
66
+ "$description": "Subtle border for dividers - very faint slate"
67
+ },
68
+ "strong": {
69
+ "$type": "color",
70
+ "$value": "#CBD5E1",
71
+ "$description": "Stronger border for emphasis - visible slate"
72
+ }
73
+ },
74
+ "interactive": {
75
+ "primary": {
76
+ "$type": "color",
77
+ "$value": "#14B8A6",
78
+ "$description": "Primary interactive element color - teal"
79
+ },
80
+ "primary.hover": {
81
+ "$type": "color",
82
+ "$value": "#0D9488",
83
+ "$description": "Primary interactive color on hover - darker teal"
84
+ },
85
+ "secondary": {
86
+ "$type": "color",
87
+ "$value": "#475569",
88
+ "$description": "Secondary interactive element color - slate gray"
89
+ }
90
+ },
91
+ "focus": {
92
+ "ring": {
93
+ "$type": "color",
94
+ "$value": "#14B8A6",
95
+ "$description": "Focus ring outline color - teal glow"
96
+ }
97
+ },
98
+ "status": {
99
+ "success": {
100
+ "$type": "color",
101
+ "$value": "#10B981",
102
+ "$description": "Success state color - emerald green"
103
+ },
104
+ "warning": {
105
+ "$type": "color",
106
+ "$value": "#F59E0B",
107
+ "$description": "Warning state color - amber"
108
+ },
109
+ "error": {
110
+ "$type": "color",
111
+ "$value": "#EF4444",
112
+ "$description": "Error state color - red"
113
+ },
114
+ "info": {
115
+ "$type": "color",
116
+ "$value": "#3B82F6",
117
+ "$description": "Info state color - blue"
118
+ }
119
+ }
120
+ },
121
+ "shadow": {
122
+ "card": {
123
+ "$type": "shadow",
124
+ "$value": "0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.06)",
125
+ "$description": "Card elevation shadow - subtle slate-tinted"
126
+ },
127
+ "dropdown": {
128
+ "$type": "shadow",
129
+ "$value": "0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.08)",
130
+ "$description": "Dropdown menu elevation shadow - moderate slate shadow"
131
+ },
132
+ "modal": {
133
+ "$type": "shadow",
134
+ "$value": "0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04)",
135
+ "$description": "Modal dialog elevation shadow - soft prominent"
136
+ },
137
+ "focus": {
138
+ "$type": "shadow",
139
+ "$value": "0 0 0 3px rgba(20, 184, 166, 0.3)",
140
+ "$description": "Focus ring glow shadow - teal glow ring"
141
+ }
142
+ }
143
+ }
@@ -0,0 +1,143 @@
1
+ {
2
+ "theme": {
3
+ "$type": "theme",
4
+ "$value": "snow",
5
+ "$description": "Pure white with subtle gray - the cleanest, most minimal"
6
+ },
7
+ "color": {
8
+ "text": {
9
+ "default": {
10
+ "$type": "color",
11
+ "$value": "#18181B",
12
+ "$description": "Primary text on light surfaces - near black"
13
+ },
14
+ "muted": {
15
+ "$type": "color",
16
+ "$value": "#71717A",
17
+ "$description": "Secondary text - neutral gray"
18
+ },
19
+ "inverted": {
20
+ "$type": "color",
21
+ "$value": "#FFFFFF",
22
+ "$description": "Text color for dark surfaces - pure white"
23
+ },
24
+ "link": {
25
+ "$type": "color",
26
+ "$value": "#3B82F6",
27
+ "$description": "Link text color - neutral blue"
28
+ },
29
+ "link.hover": {
30
+ "$type": "color",
31
+ "$value": "#2563EB",
32
+ "$description": "Link text color on hover - deeper blue"
33
+ }
34
+ },
35
+ "surface": {
36
+ "default": {
37
+ "$type": "color",
38
+ "$value": "#FFFFFF",
39
+ "$description": "Default surface background - pure white"
40
+ },
41
+ "raised": {
42
+ "$type": "color",
43
+ "$value": "#FAFAFA",
44
+ "$description": "Elevated surface background - near-white gray"
45
+ },
46
+ "sunken": {
47
+ "$type": "color",
48
+ "$value": "#F4F4F5",
49
+ "$description": "Depressed surface background - very light gray for inputs"
50
+ },
51
+ "overlay": {
52
+ "$type": "color",
53
+ "$value": "rgba(0, 0, 0, 0.4)",
54
+ "$description": "Overlay background for modals - semi-transparent black"
55
+ }
56
+ },
57
+ "border": {
58
+ "default": {
59
+ "$type": "color",
60
+ "$value": "#E4E4E7",
61
+ "$description": "Default border color - neutral light gray"
62
+ },
63
+ "subtle": {
64
+ "$type": "color",
65
+ "$value": "#F4F4F5",
66
+ "$description": "Subtle border for dividers - very faint gray"
67
+ },
68
+ "strong": {
69
+ "$type": "color",
70
+ "$value": "#A1A1AA",
71
+ "$description": "Stronger border for emphasis - medium gray"
72
+ }
73
+ },
74
+ "interactive": {
75
+ "primary": {
76
+ "$type": "color",
77
+ "$value": "#3B82F6",
78
+ "$description": "Primary interactive element color - blue"
79
+ },
80
+ "primary.hover": {
81
+ "$type": "color",
82
+ "$value": "#2563EB",
83
+ "$description": "Primary interactive color on hover - deeper blue"
84
+ },
85
+ "secondary": {
86
+ "$type": "color",
87
+ "$value": "#71717A",
88
+ "$description": "Secondary interactive element color - neutral gray"
89
+ }
90
+ },
91
+ "focus": {
92
+ "ring": {
93
+ "$type": "color",
94
+ "$value": "#60A5FA",
95
+ "$description": "Focus ring outline color - light blue glow"
96
+ }
97
+ },
98
+ "status": {
99
+ "success": {
100
+ "$type": "color",
101
+ "$value": "#16A34A",
102
+ "$description": "Success state color - green"
103
+ },
104
+ "warning": {
105
+ "$type": "color",
106
+ "$value": "#CA8A04",
107
+ "$description": "Warning state color - yellow"
108
+ },
109
+ "error": {
110
+ "$type": "color",
111
+ "$value": "#DC2626",
112
+ "$description": "Error state color - red"
113
+ },
114
+ "info": {
115
+ "$type": "color",
116
+ "$value": "#3B82F6",
117
+ "$description": "Info state color - blue"
118
+ }
119
+ }
120
+ },
121
+ "shadow": {
122
+ "card": {
123
+ "$type": "shadow",
124
+ "$value": "0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -2px rgba(0, 0, 0, 0.02)",
125
+ "$description": "Card elevation shadow - minimal neutral shadow"
126
+ },
127
+ "dropdown": {
128
+ "$type": "shadow",
129
+ "$value": "0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.04)",
130
+ "$description": "Dropdown menu elevation shadow - minimal shadow"
131
+ },
132
+ "modal": {
133
+ "$type": "shadow",
134
+ "$value": "0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.06)",
135
+ "$description": "Modal dialog elevation shadow - minimal shadow"
136
+ },
137
+ "focus": {
138
+ "$type": "shadow",
139
+ "$value": "0 0 0 3px rgba(59, 130, 246, 0.3)",
140
+ "$description": "Focus ring glow shadow - blue glow ring"
141
+ }
142
+ }
143
+ }
@@ -0,0 +1,143 @@
1
+ {
2
+ "theme": {
3
+ "$type": "theme",
4
+ "$value": "solar",
5
+ "$description": "Light yellow-gold warmth - inspired by Lovable's Solar theme"
6
+ },
7
+ "color": {
8
+ "text": {
9
+ "default": {
10
+ "$type": "color",
11
+ "$value": "#292524",
12
+ "$description": "Primary text on light surfaces - warm dark brown"
13
+ },
14
+ "muted": {
15
+ "$type": "color",
16
+ "$value": "#78716C",
17
+ "$description": "Secondary text - warm stone gray"
18
+ },
19
+ "inverted": {
20
+ "$type": "color",
21
+ "$value": "#FEFCE8",
22
+ "$description": "Text color for dark surfaces - warm yellow-white"
23
+ },
24
+ "link": {
25
+ "$type": "color",
26
+ "$value": "#CA8A04",
27
+ "$description": "Link text color - golden yellow"
28
+ },
29
+ "link.hover": {
30
+ "$type": "color",
31
+ "$value": "#A16207",
32
+ "$description": "Link text color on hover - deeper golden"
33
+ }
34
+ },
35
+ "surface": {
36
+ "default": {
37
+ "$type": "color",
38
+ "$value": "#FEFCE8",
39
+ "$description": "Default surface background - light yellow cream"
40
+ },
41
+ "raised": {
42
+ "$type": "color",
43
+ "$value": "#FEF9C3",
44
+ "$description": "Elevated surface background - warmer yellow"
45
+ },
46
+ "sunken": {
47
+ "$type": "color",
48
+ "$value": "#FEF08A",
49
+ "$description": "Depressed surface background - golden yellow for inputs"
50
+ },
51
+ "overlay": {
52
+ "$type": "color",
53
+ "$value": "rgba(41, 37, 36, 0.5)",
54
+ "$description": "Overlay background for modals - semi-transparent warm dark"
55
+ }
56
+ },
57
+ "border": {
58
+ "default": {
59
+ "$type": "color",
60
+ "$value": "#FDE047",
61
+ "$description": "Default border color - golden yellow"
62
+ },
63
+ "subtle": {
64
+ "$type": "color",
65
+ "$value": "#FEF9C3",
66
+ "$description": "Subtle border for dividers - very faint yellow"
67
+ },
68
+ "strong": {
69
+ "$type": "color",
70
+ "$value": "#FACC15",
71
+ "$description": "Stronger border for emphasis - visible golden"
72
+ }
73
+ },
74
+ "interactive": {
75
+ "primary": {
76
+ "$type": "color",
77
+ "$value": "#EAB308",
78
+ "$description": "Primary interactive element color - golden yellow"
79
+ },
80
+ "primary.hover": {
81
+ "$type": "color",
82
+ "$value": "#CA8A04",
83
+ "$description": "Primary interactive color on hover - deeper golden"
84
+ },
85
+ "secondary": {
86
+ "$type": "color",
87
+ "$value": "#EA580C",
88
+ "$description": "Secondary interactive element color - warm orange accent"
89
+ }
90
+ },
91
+ "focus": {
92
+ "ring": {
93
+ "$type": "color",
94
+ "$value": "#FACC15",
95
+ "$description": "Focus ring outline color - golden glow"
96
+ }
97
+ },
98
+ "status": {
99
+ "success": {
100
+ "$type": "color",
101
+ "$value": "#16A34A",
102
+ "$description": "Success state color - green"
103
+ },
104
+ "warning": {
105
+ "$type": "color",
106
+ "$value": "#CA8A04",
107
+ "$description": "Warning state color - golden yellow"
108
+ },
109
+ "error": {
110
+ "$type": "color",
111
+ "$value": "#DC2626",
112
+ "$description": "Error state color - red"
113
+ },
114
+ "info": {
115
+ "$type": "color",
116
+ "$value": "#EA580C",
117
+ "$description": "Info state color - orange"
118
+ }
119
+ }
120
+ },
121
+ "shadow": {
122
+ "card": {
123
+ "$type": "shadow",
124
+ "$value": "0 4px 6px -1px rgba(234, 179, 8, 0.08), 0 2px 4px -2px rgba(234, 179, 8, 0.05)",
125
+ "$description": "Card elevation shadow - warm golden shadow"
126
+ },
127
+ "dropdown": {
128
+ "$type": "shadow",
129
+ "$value": "0 10px 15px -3px rgba(41, 37, 36, 0.08), 0 4px 6px -4px rgba(41, 37, 36, 0.05)",
130
+ "$description": "Dropdown menu elevation shadow - warm shadow"
131
+ },
132
+ "modal": {
133
+ "$type": "shadow",
134
+ "$value": "0 20px 25px -5px rgba(41, 37, 36, 0.1), 0 8px 10px -6px rgba(41, 37, 36, 0.08)",
135
+ "$description": "Modal dialog elevation shadow - prominent warm shadow"
136
+ },
137
+ "focus": {
138
+ "$type": "shadow",
139
+ "$value": "0 0 0 3px rgba(250, 204, 21, 0.4)",
140
+ "$description": "Focus ring glow shadow - golden glow ring"
141
+ }
142
+ }
143
+ }