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": "noir",
5
+ "$description": "Pure black and white high contrast for developers who want maximum readability"
6
+ },
7
+ "color": {
8
+ "text": {
9
+ "default": {
10
+ "$type": "color",
11
+ "$value": "#FFFFFF",
12
+ "$description": "Primary text on black - pure white"
13
+ },
14
+ "muted": {
15
+ "$type": "color",
16
+ "$value": "#A0A0A0",
17
+ "$description": "Secondary text - gray for less important content"
18
+ },
19
+ "inverted": {
20
+ "$type": "color",
21
+ "$value": "#000000",
22
+ "$description": "Text color for light surfaces - pure black"
23
+ },
24
+ "link": {
25
+ "$type": "color",
26
+ "$value": "#808080",
27
+ "$description": "Link text color - medium gray"
28
+ },
29
+ "link.hover": {
30
+ "$type": "color",
31
+ "$value": "#C0C0C0",
32
+ "$description": "Link text color on hover - lighter gray"
33
+ }
34
+ },
35
+ "surface": {
36
+ "default": {
37
+ "$type": "color",
38
+ "$value": "#000000",
39
+ "$description": "Default surface background - pure black"
40
+ },
41
+ "raised": {
42
+ "$type": "color",
43
+ "$value": "#0D0D0D",
44
+ "$description": "Elevated surface background - barely lighter black"
45
+ },
46
+ "sunken": {
47
+ "$type": "color",
48
+ "$value": "#000000",
49
+ "$description": "Depressed surface background - pure black with border"
50
+ },
51
+ "overlay": {
52
+ "$type": "color",
53
+ "$value": "rgba(0, 0, 0, 0.9)",
54
+ "$description": "Overlay background for modals - semi-transparent black"
55
+ }
56
+ },
57
+ "border": {
58
+ "default": {
59
+ "$type": "color",
60
+ "$value": "#262626",
61
+ "$description": "Default border color - dark gray border"
62
+ },
63
+ "subtle": {
64
+ "$type": "color",
65
+ "$value": "#1A1A1A",
66
+ "$description": "Subtle border for dividers - barely visible gray"
67
+ },
68
+ "strong": {
69
+ "$type": "color",
70
+ "$value": "#404040",
71
+ "$description": "Stronger border for emphasis - visible gray border"
72
+ }
73
+ },
74
+ "interactive": {
75
+ "primary": {
76
+ "$type": "color",
77
+ "$value": "#FFFFFF",
78
+ "$description": "Primary interactive element color - pure white"
79
+ },
80
+ "primary.hover": {
81
+ "$type": "color",
82
+ "$value": "#E5E5E5",
83
+ "$description": "Primary interactive color on hover - light gray"
84
+ },
85
+ "secondary": {
86
+ "$type": "color",
87
+ "$value": "#262626",
88
+ "$description": "Secondary interactive element color - dark gray"
89
+ }
90
+ },
91
+ "focus": {
92
+ "ring": {
93
+ "$type": "color",
94
+ "$value": "#FFFFFF",
95
+ "$description": "Focus ring outline color - white outline"
96
+ }
97
+ },
98
+ "status": {
99
+ "success": {
100
+ "$type": "color",
101
+ "$value": "#4ADE80",
102
+ "$description": "Success state color - bright green for high contrast"
103
+ },
104
+ "warning": {
105
+ "$type": "color",
106
+ "$value": "#FBBF24",
107
+ "$description": "Warning state color - bright amber"
108
+ },
109
+ "error": {
110
+ "$type": "color",
111
+ "$value": "#FF6B6B",
112
+ "$description": "Error state color - bright coral red"
113
+ },
114
+ "info": {
115
+ "$type": "color",
116
+ "$value": "#FFFFFF",
117
+ "$description": "Info state color - white for high contrast"
118
+ }
119
+ }
120
+ },
121
+ "shadow": {
122
+ "card": {
123
+ "$type": "shadow",
124
+ "$value": "0 4px 6px -1px rgba(255, 255, 255, 0.1), 0 2px 4px -2px rgba(255, 255, 255, 0.05)",
125
+ "$description": "Card elevation shadow - subtle white-tinted shadow"
126
+ },
127
+ "dropdown": {
128
+ "$type": "shadow",
129
+ "$value": "0 10px 15px -3px rgba(0, 0, 0, 0.6), 0 4px 6px -4px rgba(0, 0, 0, 0.4)",
130
+ "$description": "Dropdown menu elevation shadow - pure black shadow"
131
+ },
132
+ "modal": {
133
+ "$type": "shadow",
134
+ "$value": "0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 8px 10px -6px rgba(0, 0, 0, 0.6)",
135
+ "$description": "Modal dialog elevation shadow - deepest black shadow"
136
+ },
137
+ "focus": {
138
+ "$type": "shadow",
139
+ "$value": "0 0 0 3px rgba(255, 255, 255, 0.6)",
140
+ "$description": "Focus ring glow shadow - white glow ring"
141
+ }
142
+ }
143
+ }
@@ -0,0 +1,143 @@
1
+ {
2
+ "theme": {
3
+ "$type": "theme",
4
+ "$value": "obsidian",
5
+ "$description": "Dark gray with subtle warm accent - inspired by Lovable's Obsidian theme"
6
+ },
7
+ "color": {
8
+ "text": {
9
+ "default": {
10
+ "$type": "color",
11
+ "$value": "#DCD7D1",
12
+ "$description": "Primary text on obsidian - warm off-white"
13
+ },
14
+ "muted": {
15
+ "$type": "color",
16
+ "$value": "#A8A097",
17
+ "$description": "Secondary text - warm taupe gray"
18
+ },
19
+ "inverted": {
20
+ "$type": "color",
21
+ "$value": "#282828",
22
+ "$description": "Text color for light surfaces - dark obsidian"
23
+ },
24
+ "link": {
25
+ "$type": "color",
26
+ "$value": "#7AA2F7",
27
+ "$description": "Link text color - warm sage green"
28
+ },
29
+ "link.hover": {
30
+ "$type": "color",
31
+ "$value": "#9BC278",
32
+ "$description": "Link text color on hover - brighter sage green"
33
+ }
34
+ },
35
+ "surface": {
36
+ "default": {
37
+ "$type": "color",
38
+ "$value": "#282828",
39
+ "$description": "Default surface background - obsidian dark gray"
40
+ },
41
+ "raised": {
42
+ "$type": "color",
43
+ "$value": "#323232",
44
+ "$description": "Elevated surface background - lighter obsidian"
45
+ },
46
+ "sunken": {
47
+ "$type": "color",
48
+ "$value": "#1E1E1E",
49
+ "$description": "Depressed surface background - deeper obsidian"
50
+ },
51
+ "overlay": {
52
+ "$type": "color",
53
+ "$value": "rgba(40, 40, 40, 0.85)",
54
+ "$description": "Overlay background for modals - semi-transparent obsidian"
55
+ }
56
+ },
57
+ "border": {
58
+ "default": {
59
+ "$type": "color",
60
+ "$value": "#454545",
61
+ "$description": "Default border color - warm gray border"
62
+ },
63
+ "subtle": {
64
+ "$type": "color",
65
+ "$value": "#323232",
66
+ "$description": "Subtle border for dividers - barely visible"
67
+ },
68
+ "strong": {
69
+ "$type": "color",
70
+ "$value": "#585858",
71
+ "$description": "Stronger border for emphasis - visible gray"
72
+ }
73
+ },
74
+ "interactive": {
75
+ "primary": {
76
+ "$type": "color",
77
+ "$value": "#7AA2F7",
78
+ "$description": "Primary interactive element color - warm sage green"
79
+ },
80
+ "primary.hover": {
81
+ "$type": "color",
82
+ "$value": "#9BC278",
83
+ "$description": "Primary interactive color on hover - lighter sage"
84
+ },
85
+ "secondary": {
86
+ "$type": "color",
87
+ "$value": "#504945",
88
+ "$description": "Secondary interactive element color - warm brown-gray"
89
+ }
90
+ },
91
+ "focus": {
92
+ "ring": {
93
+ "$type": "color",
94
+ "$value": "#7AA2F7",
95
+ "$description": "Focus ring outline color - sage green glow"
96
+ }
97
+ },
98
+ "status": {
99
+ "success": {
100
+ "$type": "color",
101
+ "$value": "#38B764",
102
+ "$description": "Success state color - warm green adjusted for obsidian"
103
+ },
104
+ "warning": {
105
+ "$type": "color",
106
+ "$value": "#FAB005",
107
+ "$description": "Warning state color - warm amber"
108
+ },
109
+ "error": {
110
+ "$type": "color",
111
+ "$value": "#FA5252",
112
+ "$description": "Error state color - warm coral red"
113
+ },
114
+ "info": {
115
+ "$type": "color",
116
+ "$value": "#7AA2F7",
117
+ "$description": "Info state color - sage green"
118
+ }
119
+ }
120
+ },
121
+ "shadow": {
122
+ "card": {
123
+ "$type": "shadow",
124
+ "$value": "0 4px 6px -1px rgba(122, 162, 247, 0.15), 0 2px 4px -2px rgba(122, 162, 247, 0.1)",
125
+ "$description": "Card elevation shadow - subtle green-tinted shadow"
126
+ },
127
+ "dropdown": {
128
+ "$type": "shadow",
129
+ "$value": "0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3)",
130
+ "$description": "Dropdown menu elevation shadow - soft dark shadow"
131
+ },
132
+ "modal": {
133
+ "$type": "shadow",
134
+ "$value": "0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4)",
135
+ "$description": "Modal dialog elevation shadow - prominent soft shadow"
136
+ },
137
+ "focus": {
138
+ "$type": "shadow",
139
+ "$value": "0 0 0 3px rgba(122, 162, 247, 0.4)",
140
+ "$description": "Focus ring glow shadow - warm green glow ring"
141
+ }
142
+ }
143
+ }
@@ -0,0 +1,143 @@
1
+ {
2
+ "theme": {
3
+ "$type": "theme",
4
+ "$value": "ocean",
5
+ "$description": "Deep ocean theme with rich blues and cyan accents - immersive and mysterious"
6
+ },
7
+ "color": {
8
+ "text": {
9
+ "default": {
10
+ "$type": "color",
11
+ "$value": "#E0F2FE",
12
+ "$description": "Primary text - light cyan-blue for contrast on deep surfaces"
13
+ },
14
+ "muted": {
15
+ "$type": "color",
16
+ "$value": "#94A3B8",
17
+ "$description": "Secondary text - slate gray for less important content"
18
+ },
19
+ "inverted": {
20
+ "$type": "color",
21
+ "$value": "#082F49",
22
+ "$description": "Text on light surfaces - deep ocean blue"
23
+ },
24
+ "link": {
25
+ "$type": "color",
26
+ "$value": "#22D3EE",
27
+ "$description": "Link text - vibrant cyan accent"
28
+ },
29
+ "link.hover": {
30
+ "$type": "color",
31
+ "$value": "#67E8F9",
32
+ "$description": "Link on hover - bright cyan"
33
+ }
34
+ },
35
+ "surface": {
36
+ "default": {
37
+ "$type": "color",
38
+ "$value": "#0C4A6E",
39
+ "$description": "Default surface - deep ocean blue"
40
+ },
41
+ "raised": {
42
+ "$type": "color",
43
+ "$value": "#075985",
44
+ "$description": "Elevated surface - slightly lighter deep blue"
45
+ },
46
+ "sunken": {
47
+ "$type": "color",
48
+ "$value": "#083344",
49
+ "$description": "Depressed surface - darker blue-black for inputs"
50
+ },
51
+ "overlay": {
52
+ "$type": "color",
53
+ "$value": "rgba(8, 47, 73, 0.85)",
54
+ "$description": "Overlay - deep blue-tinted backdrop"
55
+ }
56
+ },
57
+ "border": {
58
+ "default": {
59
+ "$type": "color",
60
+ "$value": "#0369A1",
61
+ "$description": "Default border - ocean blue"
62
+ },
63
+ "subtle": {
64
+ "$type": "color",
65
+ "$value": "#0E7490",
66
+ "$description": "Subtle border - faint cyan-blue"
67
+ },
68
+ "strong": {
69
+ "$type": "color",
70
+ "$value": "#0EA5E9",
71
+ "$description": "Strong border - bright ocean cyan"
72
+ }
73
+ },
74
+ "interactive": {
75
+ "primary": {
76
+ "$type": "color",
77
+ "$value": "#22D3EE",
78
+ "$description": "Primary action - vibrant cyan"
79
+ },
80
+ "primary.hover": {
81
+ "$type": "color",
82
+ "$value": "#67E8F9",
83
+ "$description": "Primary hover - bright cyan"
84
+ },
85
+ "secondary": {
86
+ "$type": "color",
87
+ "$value": "#38BDF8",
88
+ "$description": "Secondary action - sky blue"
89
+ }
90
+ },
91
+ "focus": {
92
+ "ring": {
93
+ "$type": "color",
94
+ "$value": "#22D3EE",
95
+ "$description": "Focus ring - cyan glow like bioluminescence"
96
+ }
97
+ },
98
+ "status": {
99
+ "success": {
100
+ "$type": "color",
101
+ "$value": "#34D399",
102
+ "$description": "Success - seafoam green"
103
+ },
104
+ "warning": {
105
+ "$type": "color",
106
+ "$value": "#FBBF24",
107
+ "$description": "Warning - warm amber"
108
+ },
109
+ "error": {
110
+ "$type": "color",
111
+ "$value": "#FB7185",
112
+ "$description": "Error - rose pink"
113
+ },
114
+ "info": {
115
+ "$type": "color",
116
+ "$value": "#38BDF8",
117
+ "$description": "Info - sky blue"
118
+ }
119
+ }
120
+ },
121
+ "shadow": {
122
+ "card": {
123
+ "$type": "shadow",
124
+ "$value": "0 4px 6px -1px rgba(34, 211, 238, 0.15), 0 2px 4px -2px rgba(34, 211, 238, 0.1)",
125
+ "$description": "Card shadow - cyan-tinted ocean depth"
126
+ },
127
+ "dropdown": {
128
+ "$type": "shadow",
129
+ "$value": "0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(34, 211, 238, 0.15)",
130
+ "$description": "Dropdown shadow - deep ocean darkness"
131
+ },
132
+ "modal": {
133
+ "$type": "shadow",
134
+ "$value": "0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(34, 211, 238, 0.2)",
135
+ "$description": "Modal shadow - profound depth"
136
+ },
137
+ "focus": {
138
+ "$type": "shadow",
139
+ "$value": "0 0 0 3px rgba(34, 211, 238, 0.4)",
140
+ "$description": "Focus glow - bioluminescent cyan"
141
+ }
142
+ }
143
+ }
@@ -0,0 +1,143 @@
1
+ {
2
+ "theme": {
3
+ "$type": "theme",
4
+ "$value": "paper",
5
+ "$description": "Warm off-white with burgundy accent - comfortable and refined"
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": "#FAF7F5",
22
+ "$description": "Text color for dark surfaces - warm off-white"
23
+ },
24
+ "link": {
25
+ "$type": "color",
26
+ "$value": "#881337",
27
+ "$description": "Link text color - burgundy accent"
28
+ },
29
+ "link.hover": {
30
+ "$type": "color",
31
+ "$value": "#6B1B34",
32
+ "$description": "Link text color on hover - deeper burgundy"
33
+ }
34
+ },
35
+ "surface": {
36
+ "default": {
37
+ "$type": "color",
38
+ "$value": "#FAF7F5",
39
+ "$description": "Default surface background - warm off-white"
40
+ },
41
+ "raised": {
42
+ "$type": "color",
43
+ "$value": "#F5F0EB",
44
+ "$description": "Elevated surface background - slightly warmer off-white"
45
+ },
46
+ "sunken": {
47
+ "$type": "color",
48
+ "$value": "#EDE7DF",
49
+ "$description": "Depressed surface background - warm beige 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": "#D6D3D1",
61
+ "$description": "Default border color - warm stone"
62
+ },
63
+ "subtle": {
64
+ "$type": "color",
65
+ "$value": "#E7E5E4",
66
+ "$description": "Subtle border for dividers - very faint warm gray"
67
+ },
68
+ "strong": {
69
+ "$type": "color",
70
+ "$value": "#A8A29E",
71
+ "$description": "Stronger border for emphasis - warm gray"
72
+ }
73
+ },
74
+ "interactive": {
75
+ "primary": {
76
+ "$type": "color",
77
+ "$value": "#9F1239",
78
+ "$description": "Primary interactive element color - burgundy"
79
+ },
80
+ "primary.hover": {
81
+ "$type": "color",
82
+ "$value": "#881337",
83
+ "$description": "Primary interactive color on hover - deeper burgundy"
84
+ },
85
+ "secondary": {
86
+ "$type": "color",
87
+ "$value": "#C2410C",
88
+ "$description": "Secondary interactive element color - warm orange accent"
89
+ }
90
+ },
91
+ "focus": {
92
+ "ring": {
93
+ "$type": "color",
94
+ "$value": "#BE123C",
95
+ "$description": "Focus ring outline color - rose glow"
96
+ }
97
+ },
98
+ "status": {
99
+ "success": {
100
+ "$type": "color",
101
+ "$value": "#15803D",
102
+ "$description": "Success state color - forest green"
103
+ },
104
+ "warning": {
105
+ "$type": "color",
106
+ "$value": "#B45309",
107
+ "$description": "Warning state color - warm orange"
108
+ },
109
+ "error": {
110
+ "$type": "color",
111
+ "$value": "#9F1239",
112
+ "$description": "Error state color - burgundy red"
113
+ },
114
+ "info": {
115
+ "$type": "color",
116
+ "$value": "#1D4ED8",
117
+ "$description": "Info state color - blue"
118
+ }
119
+ }
120
+ },
121
+ "shadow": {
122
+ "card": {
123
+ "$type": "shadow",
124
+ "$value": "0 4px 6px -1px rgba(41, 37, 36, 0.05), 0 2px 4px -2px rgba(41, 37, 36, 0.03)",
125
+ "$description": "Card elevation shadow - warm-tinted 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(159, 18, 57, 0.3)",
140
+ "$description": "Focus ring glow shadow - burgundy glow ring"
141
+ }
142
+ }
143
+ }