omgkit 2.27.0 → 2.29.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 (51) hide show
  1. package/README.md +57 -1
  2. package/bin/omgkit.js +10 -1
  3. package/lib/cli.js +58 -4
  4. package/lib/theme.js +571 -0
  5. package/package.json +2 -2
  6. package/plugin/agents/sprint-master.md +1 -0
  7. package/plugin/agents/ui-ux-designer.md +25 -0
  8. package/plugin/commands/design/add.md +86 -0
  9. package/plugin/commands/design/builder.md +96 -0
  10. package/plugin/commands/design/from-screenshot.md +64 -0
  11. package/plugin/commands/design/from-url.md +74 -0
  12. package/plugin/commands/design/preview.md +55 -0
  13. package/plugin/commands/design/reset.md +65 -0
  14. package/plugin/commands/design/theme.md +65 -0
  15. package/plugin/commands/design/themes.md +50 -0
  16. package/plugin/commands/sprint/ship.md +264 -0
  17. package/plugin/registry.yaml +12 -3
  18. package/plugin/workflows/sprint/sprint-execution.md +14 -0
  19. package/plugin/workflows/sprint/sprint-retrospective.md +1 -0
  20. package/templates/design/schema/theme.schema.json +102 -0
  21. package/templates/design/themes/corporate-enterprise/consulting.json +81 -0
  22. package/templates/design/themes/corporate-enterprise/corporate-indigo.json +81 -0
  23. package/templates/design/themes/corporate-enterprise/finance.json +81 -0
  24. package/templates/design/themes/corporate-enterprise/healthcare.json +81 -0
  25. package/templates/design/themes/corporate-enterprise/legal.json +81 -0
  26. package/templates/design/themes/corporate-enterprise/ocean-blue.json +81 -0
  27. package/templates/design/themes/creative-bold/candy.json +81 -0
  28. package/templates/design/themes/creative-bold/coral-sunset.json +81 -0
  29. package/templates/design/themes/creative-bold/gradient-dream.json +81 -0
  30. package/templates/design/themes/creative-bold/neon.json +81 -0
  31. package/templates/design/themes/creative-bold/retro.json +81 -0
  32. package/templates/design/themes/creative-bold/studio.json +81 -0
  33. package/templates/design/themes/minimal-clean/minimal-slate.json +81 -0
  34. package/templates/design/themes/minimal-clean/mono.json +81 -0
  35. package/templates/design/themes/minimal-clean/nordic.json +81 -0
  36. package/templates/design/themes/minimal-clean/paper.json +81 -0
  37. package/templates/design/themes/minimal-clean/swiss.json +81 -0
  38. package/templates/design/themes/minimal-clean/zen.json +81 -0
  39. package/templates/design/themes/nature-organic/arctic.json +81 -0
  40. package/templates/design/themes/nature-organic/autumn.json +81 -0
  41. package/templates/design/themes/nature-organic/desert.json +81 -0
  42. package/templates/design/themes/nature-organic/forest.json +81 -0
  43. package/templates/design/themes/nature-organic/lavender.json +81 -0
  44. package/templates/design/themes/nature-organic/ocean.json +81 -0
  45. package/templates/design/themes/tech-ai/electric-cyan.json +81 -0
  46. package/templates/design/themes/tech-ai/hologram.json +81 -0
  47. package/templates/design/themes/tech-ai/matrix-green.json +81 -0
  48. package/templates/design/themes/tech-ai/neo-tokyo.json +81 -0
  49. package/templates/design/themes/tech-ai/neural-dark.json +81 -0
  50. package/templates/design/themes/tech-ai/quantum-purple.json +81 -0
  51. package/templates/omgkit/workflow.yaml +46 -0
@@ -0,0 +1,264 @@
1
+ ---
2
+ description: Complete sprint and ship to production
3
+ allowed-tools: Task, Read, Write, Bash, Grep, Glob
4
+ argument-hint: "[message] [--skip-tests] [--no-pr] [--force]"
5
+ ship:
6
+ auto_test: true
7
+ auto_pr: true
8
+ commit_prefix: "feat(sprint)"
9
+ related_skills:
10
+ - autonomous/project-orchestration
11
+ - omega/omega-sprint
12
+ - devops/workflow-config
13
+ related_commands:
14
+ - /sprint:sprint-end
15
+ - /git:ship
16
+ - /git:commit
17
+ - /git:pr
18
+ ---
19
+
20
+ # Sprint Ship: $ARGUMENTS
21
+
22
+ Complete the current sprint and ship all changes to production in a single workflow.
23
+
24
+ ## Overview
25
+
26
+ This command combines sprint completion with git operations to streamline the release process:
27
+
28
+ 1. **Validate** - Check sprint status and task completion
29
+ 2. **Test** - Run tests to ensure quality
30
+ 3. **End Sprint** - Generate retrospective and archive
31
+ 4. **Commit** - Stage and commit all changes
32
+ 5. **Push** - Push to remote repository
33
+ 6. **PR/Deploy** - Create PR or trigger CI/CD
34
+
35
+ ## Options
36
+
37
+ | Option | Description | Default |
38
+ |--------|-------------|---------|
39
+ | `message` | Commit message (uses sprint name if not provided) | Sprint name |
40
+ | `--skip-tests` | Skip running tests before ship | `false` |
41
+ | `--no-pr` | Push directly without creating PR | `false` |
42
+ | `--force` | Force ship even with incomplete tasks | `false` |
43
+
44
+ ## Workflow Diagram
45
+
46
+ ```
47
+ /sprint:ship "Sprint 1 - Auth"
48
+
49
+
50
+ ┌─────────────────────────────────────────────────────────────┐
51
+ │ PHASE 1: VALIDATION │
52
+ ├─────────────────────────────────────────────────────────────┤
53
+ │ ✓ Check current sprint exists │
54
+ │ ✓ Verify sprint is active/in_progress │
55
+ │ ✓ Check task completion (warn if incomplete) │
56
+ │ ✓ Check for uncommitted changes │
57
+ └─────────────────────────────────────────────────────────────┘
58
+
59
+
60
+ ┌─────────────────────────────────────────────────────────────┐
61
+ │ PHASE 2: TESTING (unless --skip-tests) │
62
+ ├─────────────────────────────────────────────────────────────┤
63
+ │ ► Run: npm test (or configured test command) │
64
+ │ ► Check coverage gates from workflow.yaml │
65
+ │ ► FAIL if tests don't pass │
66
+ └─────────────────────────────────────────────────────────────┘
67
+
68
+
69
+ ┌─────────────────────────────────────────────────────────────┐
70
+ │ PHASE 3: SPRINT END │
71
+ ├─────────────────────────────────────────────────────────────┤
72
+ │ ► Set status: completed │
73
+ │ ► Calculate metrics (completed tasks, velocity) │
74
+ │ ► Generate retrospective │
75
+ │ ► Archive to .omgkit/sprints/archive/ │
76
+ └─────────────────────────────────────────────────────────────┘
77
+
78
+
79
+ ┌─────────────────────────────────────────────────────────────┐
80
+ │ PHASE 4: GIT OPERATIONS │
81
+ ├─────────────────────────────────────────────────────────────┤
82
+ │ ► git add . │
83
+ │ ► git commit -m "feat(sprint): [message]" │
84
+ │ └── Include retrospective summary in body │
85
+ │ ► git push origin [branch] │
86
+ └─────────────────────────────────────────────────────────────┘
87
+
88
+
89
+ ┌─────────────────────────────────────────────────────────────┐
90
+ │ PHASE 5: PR/CI (unless --no-pr) │
91
+ ├─────────────────────────────────────────────────────────────┤
92
+ │ ► Create PR with sprint summary │
93
+ │ ► Add labels: sprint-complete │
94
+ │ ► Link CI/CD status │
95
+ └─────────────────────────────────────────────────────────────┘
96
+
97
+
98
+ ┌─────────────────────────────────────────────────────────────┐
99
+ │ PHASE 6: REPORT │
100
+ ├─────────────────────────────────────────────────────────────┤
101
+ │ 📊 Sprint Summary │
102
+ │ 📝 Commit: abc1234 │
103
+ │ 🔗 PR: https://github.com/org/repo/pull/123 │
104
+ │ 🚀 CI/CD: Running... │
105
+ └─────────────────────────────────────────────────────────────┘
106
+ ```
107
+
108
+ ## Configuration
109
+
110
+ Configure ship behavior in `.omgkit/workflow.yaml`:
111
+
112
+ ```yaml
113
+ ship:
114
+ # Run tests before shipping
115
+ auto_test: true
116
+
117
+ # Test command to run
118
+ test_command: "npm test"
119
+
120
+ # Create PR instead of direct push
121
+ create_pr: true
122
+
123
+ # PR settings
124
+ pr:
125
+ draft: false
126
+ reviewers: []
127
+ labels: ["sprint-complete"]
128
+
129
+ # Commit message format
130
+ commit:
131
+ prefix: "feat(sprint)"
132
+ include_retrospective: true
133
+ include_metrics: true
134
+
135
+ # Force ship even with incomplete tasks
136
+ allow_incomplete: false
137
+
138
+ # Archive sprint after ship
139
+ archive_sprint: true
140
+ ```
141
+
142
+ ## Examples
143
+
144
+ ### Basic Usage
145
+
146
+ ```bash
147
+ # Ship with auto-generated message from sprint name
148
+ /sprint:ship
149
+
150
+ # Ship with custom message
151
+ /sprint:ship "Sprint 1 - User Authentication Complete"
152
+ ```
153
+
154
+ ### With Options
155
+
156
+ ```bash
157
+ # Skip tests (use with caution)
158
+ /sprint:ship "Hotfix Sprint" --skip-tests
159
+
160
+ # Push directly without PR (for trunk-based development)
161
+ /sprint:ship "Sprint 1" --no-pr
162
+
163
+ # Force ship even with incomplete tasks
164
+ /sprint:ship "MVP Sprint" --force
165
+
166
+ # Combine options
167
+ /sprint:ship "Quick Fix" --skip-tests --no-pr
168
+ ```
169
+
170
+ ### Full Workflow Example
171
+
172
+ ```bash
173
+ # 1. Start sprint
174
+ /sprint:sprint-new "Auth Feature" --ref=.omgkit/artifacts/prd-auth.md
175
+
176
+ # 2. Work on sprint
177
+ /sprint:team-run
178
+ /dev:feature "implement login"
179
+ /dev:feature "implement signup"
180
+
181
+ # 3. Ship when done
182
+ /sprint:ship "Sprint 1 - Auth Feature Complete"
183
+ ```
184
+
185
+ ## Output
186
+
187
+ ### Sprint Summary
188
+
189
+ ```markdown
190
+ ## Sprint Shipped: Auth Feature
191
+
192
+ ### Metrics
193
+ - Completed: 8/10 tasks (80%)
194
+ - Velocity: 2.5 tasks/day
195
+ - Duration: 4 days
196
+
197
+ ### Retrospective
198
+ **What Went Well:**
199
+ - Fast iteration on login flow
200
+ - Good test coverage achieved
201
+
202
+ **What Could Improve:**
203
+ - Better estimation for OAuth integration
204
+
205
+ ### Git
206
+ - Commit: `abc1234`
207
+ - Branch: `main`
208
+ - PR: #123
209
+
210
+ ### CI/CD
211
+ - Status: Running
212
+ - URL: https://github.com/org/repo/actions/runs/123
213
+ ```
214
+
215
+ ## Error Handling
216
+
217
+ ### No Active Sprint
218
+
219
+ ```
220
+ ❌ Error: No active sprint found
221
+ Run /sprint:sprint-new to create a sprint first
222
+ ```
223
+
224
+ ### Tests Failed
225
+
226
+ ```
227
+ ❌ Error: Tests failed (12 failing)
228
+ Fix tests before shipping or use --skip-tests (not recommended)
229
+ ```
230
+
231
+ ### Incomplete Tasks
232
+
233
+ ```
234
+ ⚠️ Warning: 2 tasks incomplete
235
+ - [ ] Implement password reset
236
+ - [ ] Add email verification
237
+
238
+ Use --force to ship anyway, or complete tasks first
239
+ ```
240
+
241
+ ## Best Practices
242
+
243
+ 1. **Always run tests** - Don't use `--skip-tests` in production
244
+ 2. **Complete tasks** - Ship complete sprints, not partial work
245
+ 3. **Use meaningful messages** - Commit messages should describe the sprint's value
246
+ 4. **Review before ship** - Run `/dev:review` before `/sprint:ship`
247
+ 5. **Configure workflow.yaml** - Set team preferences for ship behavior
248
+
249
+ ## Comparison with Other Commands
250
+
251
+ | Command | Purpose | When to Use |
252
+ |---------|---------|-------------|
253
+ | `/sprint:sprint-end` | End sprint only | When not ready to commit |
254
+ | `/git:ship` | Commit and PR | For non-sprint commits |
255
+ | `/git:commit` | Commit only | For WIP commits |
256
+ | `/sprint:ship` | Full workflow | Sprint completion |
257
+
258
+ ## Related Commands
259
+
260
+ - `/sprint:sprint-new` - Create new sprint
261
+ - `/sprint:sprint-end` - End sprint (without shipping)
262
+ - `/sprint:team-run` - Execute sprint tasks
263
+ - `/git:ship` - Ship code (standalone)
264
+ - `/git:pr` - Create pull request
@@ -3,7 +3,7 @@
3
3
  # Version: 2.26.1
4
4
  # Updated: 2026-01-06
5
5
 
6
- version: "2.26.1"
6
+ version: "2.28.0"
7
7
 
8
8
  # =============================================================================
9
9
  # OPTIMIZED ALIGNMENT PRINCIPLE (OAP)
@@ -409,6 +409,7 @@ agents:
409
409
  - /sprint:sprint-start
410
410
  - /sprint:sprint-current
411
411
  - /sprint:sprint-end
412
+ - /sprint:ship
412
413
  - /sprint:backlog-add
413
414
  - /sprint:backlog-show
414
415
  - /sprint:backlog-prioritize
@@ -436,6 +437,14 @@ agents:
436
437
  - /design:enhance
437
438
  - /design:fast
438
439
  - /design:good
440
+ - /design:themes
441
+ - /design:theme
442
+ - /design:preview
443
+ - /design:add
444
+ - /design:from-screenshot
445
+ - /design:from-url
446
+ - /design:builder
447
+ - /design:reset
439
448
 
440
449
  api-designer:
441
450
  file: agents/api-designer.md
@@ -870,13 +879,13 @@ workflows:
870
879
  skills:
871
880
  - omega/omega-sprint
872
881
  - methodology/executing-plans
873
- commands: [/sprint:sprint-current, /sprint:team-run, /sprint:team-status, /dev:fix, /sprint:sprint-end]
882
+ commands: [/sprint:sprint-current, /sprint:team-run, /sprint:team-status, /dev:fix, /sprint:sprint-end, /sprint:ship]
874
883
 
875
884
  sprint/sprint-retrospective:
876
885
  agents: [sprint-master, project-manager, journal-writer]
877
886
  skills:
878
887
  - omega/omega-sprint
879
- commands: [/sprint:sprint-end, /planning:doc]
888
+ commands: [/sprint:sprint-end, /sprint:ship, /planning:doc]
880
889
 
881
890
  # Fullstack workflows
882
891
  fullstack/full-feature:
@@ -19,6 +19,7 @@ commands:
19
19
  - /sprint:team-status
20
20
  - /dev:fix
21
21
  - /sprint:sprint-end
22
+ - /sprint:ship
22
23
  prerequisites:
23
24
  - Sprint created and started
24
25
  - Tasks assigned
@@ -109,6 +110,19 @@ Complete sprint:
109
110
 
110
111
  **Output:** Sprint completed
111
112
 
113
+ ### Step 6: Ship (Optional)
114
+ **Agent:** sprint-master
115
+ **Command:** `/sprint:ship`
116
+ **Duration:** 5-15 minutes
117
+
118
+ Ship sprint to production:
119
+ - Run tests
120
+ - Commit all changes
121
+ - Push to remote
122
+ - Create PR or deploy
123
+
124
+ **Output:** Sprint shipped
125
+
112
126
  ## Quality Gates
113
127
 
114
128
  - [ ] All high-priority tasks complete
@@ -12,6 +12,7 @@ skills:
12
12
  - omega/omega-sprint
13
13
  commands:
14
14
  - /sprint:sprint-end
15
+ - /sprint:ship
15
16
  - /planning:doc
16
17
  prerequisites:
17
18
  - Sprint completed
@@ -0,0 +1,102 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "OMGKIT Theme Schema",
4
+ "description": "Schema for OMGKIT design system themes (shadcn/ui compatible)",
5
+ "type": "object",
6
+ "required": ["name", "id", "category", "colors"],
7
+ "properties": {
8
+ "name": {
9
+ "type": "string",
10
+ "description": "Display name of the theme"
11
+ },
12
+ "id": {
13
+ "type": "string",
14
+ "pattern": "^[a-z0-9-]+$",
15
+ "description": "Unique identifier (kebab-case)"
16
+ },
17
+ "category": {
18
+ "type": "string",
19
+ "enum": ["tech-ai", "minimal-clean", "corporate-enterprise", "creative-bold", "nature-organic"],
20
+ "description": "Theme category"
21
+ },
22
+ "description": {
23
+ "type": "string",
24
+ "description": "Brief description of the theme aesthetic"
25
+ },
26
+ "colors": {
27
+ "type": "object",
28
+ "required": ["light", "dark"],
29
+ "properties": {
30
+ "light": { "$ref": "#/definitions/colorPalette" },
31
+ "dark": { "$ref": "#/definitions/colorPalette" }
32
+ }
33
+ },
34
+ "radius": {
35
+ "type": "string",
36
+ "default": "0.5rem",
37
+ "description": "Border radius for components"
38
+ },
39
+ "fontFamily": {
40
+ "type": "object",
41
+ "properties": {
42
+ "sans": { "type": "string", "default": "Inter, system-ui, sans-serif" },
43
+ "mono": { "type": "string", "default": "JetBrains Mono, monospace" }
44
+ }
45
+ }
46
+ },
47
+ "definitions": {
48
+ "colorPalette": {
49
+ "type": "object",
50
+ "required": [
51
+ "background", "foreground",
52
+ "primary", "primary-foreground",
53
+ "secondary", "secondary-foreground",
54
+ "muted", "muted-foreground",
55
+ "accent", "accent-foreground",
56
+ "destructive", "destructive-foreground",
57
+ "border", "input", "ring",
58
+ "card", "card-foreground",
59
+ "popover", "popover-foreground"
60
+ ],
61
+ "properties": {
62
+ "background": { "$ref": "#/definitions/hslColor" },
63
+ "foreground": { "$ref": "#/definitions/hslColor" },
64
+ "primary": { "$ref": "#/definitions/hslColor" },
65
+ "primary-foreground": { "$ref": "#/definitions/hslColor" },
66
+ "secondary": { "$ref": "#/definitions/hslColor" },
67
+ "secondary-foreground": { "$ref": "#/definitions/hslColor" },
68
+ "muted": { "$ref": "#/definitions/hslColor" },
69
+ "muted-foreground": { "$ref": "#/definitions/hslColor" },
70
+ "accent": { "$ref": "#/definitions/hslColor" },
71
+ "accent-foreground": { "$ref": "#/definitions/hslColor" },
72
+ "destructive": { "$ref": "#/definitions/hslColor" },
73
+ "destructive-foreground": { "$ref": "#/definitions/hslColor" },
74
+ "border": { "$ref": "#/definitions/hslColor" },
75
+ "input": { "$ref": "#/definitions/hslColor" },
76
+ "ring": { "$ref": "#/definitions/hslColor" },
77
+ "card": { "$ref": "#/definitions/hslColor" },
78
+ "card-foreground": { "$ref": "#/definitions/hslColor" },
79
+ "popover": { "$ref": "#/definitions/hslColor" },
80
+ "popover-foreground": { "$ref": "#/definitions/hslColor" },
81
+ "chart-1": { "$ref": "#/definitions/hslColor" },
82
+ "chart-2": { "$ref": "#/definitions/hslColor" },
83
+ "chart-3": { "$ref": "#/definitions/hslColor" },
84
+ "chart-4": { "$ref": "#/definitions/hslColor" },
85
+ "chart-5": { "$ref": "#/definitions/hslColor" },
86
+ "sidebar-background": { "$ref": "#/definitions/hslColor" },
87
+ "sidebar-foreground": { "$ref": "#/definitions/hslColor" },
88
+ "sidebar-primary": { "$ref": "#/definitions/hslColor" },
89
+ "sidebar-primary-foreground": { "$ref": "#/definitions/hslColor" },
90
+ "sidebar-accent": { "$ref": "#/definitions/hslColor" },
91
+ "sidebar-accent-foreground": { "$ref": "#/definitions/hslColor" },
92
+ "sidebar-border": { "$ref": "#/definitions/hslColor" },
93
+ "sidebar-ring": { "$ref": "#/definitions/hslColor" }
94
+ }
95
+ },
96
+ "hslColor": {
97
+ "type": "string",
98
+ "pattern": "^\\d+(\\.\\d+)?\\s+\\d+(\\.\\d+)?%\\s+\\d+(\\.\\d+)?%$",
99
+ "description": "HSL color without hsl() wrapper, e.g., '220 14.3% 95.9%'"
100
+ }
101
+ }
102
+ }
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "Consulting",
3
+ "id": "consulting",
4
+ "category": "corporate-enterprise",
5
+ "description": "Management consulting aesthetic like McKinsey and BCG",
6
+ "colors": {
7
+ "light": {
8
+ "background": "0 0% 100%",
9
+ "foreground": "222 47% 11%",
10
+ "primary": "222 80% 28%",
11
+ "primary-foreground": "0 0% 100%",
12
+ "secondary": "220 20% 96%",
13
+ "secondary-foreground": "222 47% 15%",
14
+ "muted": "220 20% 96%",
15
+ "muted-foreground": "220 15% 45%",
16
+ "accent": "35 80% 45%",
17
+ "accent-foreground": "0 0% 100%",
18
+ "destructive": "0 84.2% 60.2%",
19
+ "destructive-foreground": "0 0% 98%",
20
+ "border": "220 15% 90%",
21
+ "input": "220 15% 90%",
22
+ "ring": "222 80% 28%",
23
+ "card": "0 0% 100%",
24
+ "card-foreground": "222 47% 11%",
25
+ "popover": "0 0% 100%",
26
+ "popover-foreground": "222 47% 11%",
27
+ "chart-1": "222 80% 28%",
28
+ "chart-2": "35 80% 45%",
29
+ "chart-3": "160 70% 40%",
30
+ "chart-4": "0 70% 55%",
31
+ "chart-5": "270 60% 55%",
32
+ "sidebar-background": "220 20% 98%",
33
+ "sidebar-foreground": "222 47% 15%",
34
+ "sidebar-primary": "222 80% 28%",
35
+ "sidebar-primary-foreground": "0 0% 100%",
36
+ "sidebar-accent": "220 20% 94%",
37
+ "sidebar-accent-foreground": "222 47% 15%",
38
+ "sidebar-border": "220 15% 90%",
39
+ "sidebar-ring": "222 80% 28%"
40
+ },
41
+ "dark": {
42
+ "background": "222 47% 6%",
43
+ "foreground": "220 20% 96%",
44
+ "primary": "222 60% 50%",
45
+ "primary-foreground": "0 0% 100%",
46
+ "secondary": "222 30% 15%",
47
+ "secondary-foreground": "220 20% 96%",
48
+ "muted": "222 30% 15%",
49
+ "muted-foreground": "220 15% 55%",
50
+ "accent": "35 80% 55%",
51
+ "accent-foreground": "222 47% 6%",
52
+ "destructive": "0 62.8% 30.6%",
53
+ "destructive-foreground": "0 0% 98%",
54
+ "border": "222 30% 18%",
55
+ "input": "222 30% 18%",
56
+ "ring": "222 60% 50%",
57
+ "card": "222 47% 8%",
58
+ "card-foreground": "220 20% 96%",
59
+ "popover": "222 47% 6%",
60
+ "popover-foreground": "220 20% 96%",
61
+ "chart-1": "222 60% 60%",
62
+ "chart-2": "35 80% 65%",
63
+ "chart-3": "160 70% 50%",
64
+ "chart-4": "0 70% 65%",
65
+ "chart-5": "270 60% 65%",
66
+ "sidebar-background": "222 47% 6%",
67
+ "sidebar-foreground": "220 20% 96%",
68
+ "sidebar-primary": "222 60% 50%",
69
+ "sidebar-primary-foreground": "0 0% 100%",
70
+ "sidebar-accent": "222 30% 15%",
71
+ "sidebar-accent-foreground": "220 20% 96%",
72
+ "sidebar-border": "222 30% 18%",
73
+ "sidebar-ring": "222 60% 50%"
74
+ }
75
+ },
76
+ "radius": "0.375rem",
77
+ "fontFamily": {
78
+ "sans": "Inter, system-ui, sans-serif",
79
+ "mono": "JetBrains Mono, monospace"
80
+ }
81
+ }
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "Corporate Indigo",
3
+ "id": "corporate-indigo",
4
+ "category": "corporate-enterprise",
5
+ "description": "Professional SaaS aesthetic like Stripe and Intercom",
6
+ "colors": {
7
+ "light": {
8
+ "background": "0 0% 100%",
9
+ "foreground": "224 71.4% 4.1%",
10
+ "primary": "238.7 83.5% 66.7%",
11
+ "primary-foreground": "0 0% 100%",
12
+ "secondary": "220 14.3% 95.9%",
13
+ "secondary-foreground": "220.9 39.3% 11%",
14
+ "muted": "220 14.3% 95.9%",
15
+ "muted-foreground": "220 8.9% 46.1%",
16
+ "accent": "220 14.3% 95.9%",
17
+ "accent-foreground": "220.9 39.3% 11%",
18
+ "destructive": "0 84.2% 60.2%",
19
+ "destructive-foreground": "0 0% 98%",
20
+ "border": "220 13% 91%",
21
+ "input": "220 13% 91%",
22
+ "ring": "238.7 83.5% 66.7%",
23
+ "card": "0 0% 100%",
24
+ "card-foreground": "224 71.4% 4.1%",
25
+ "popover": "0 0% 100%",
26
+ "popover-foreground": "224 71.4% 4.1%",
27
+ "chart-1": "238.7 83.5% 66.7%",
28
+ "chart-2": "173 58% 39%",
29
+ "chart-3": "197 37% 24%",
30
+ "chart-4": "43 74% 66%",
31
+ "chart-5": "27 87% 67%",
32
+ "sidebar-background": "0 0% 98%",
33
+ "sidebar-foreground": "240 5.3% 26.1%",
34
+ "sidebar-primary": "238.7 83.5% 66.7%",
35
+ "sidebar-primary-foreground": "0 0% 98%",
36
+ "sidebar-accent": "240 4.8% 95.9%",
37
+ "sidebar-accent-foreground": "240 5.9% 10%",
38
+ "sidebar-border": "220 13% 91%",
39
+ "sidebar-ring": "238.7 83.5% 66.7%"
40
+ },
41
+ "dark": {
42
+ "background": "224 71.4% 4.1%",
43
+ "foreground": "210 20% 98%",
44
+ "primary": "238.7 83.5% 66.7%",
45
+ "primary-foreground": "0 0% 100%",
46
+ "secondary": "215 27.9% 16.9%",
47
+ "secondary-foreground": "210 20% 98%",
48
+ "muted": "215 27.9% 16.9%",
49
+ "muted-foreground": "217.9 10.6% 64.9%",
50
+ "accent": "215 27.9% 16.9%",
51
+ "accent-foreground": "210 20% 98%",
52
+ "destructive": "0 62.8% 30.6%",
53
+ "destructive-foreground": "210 20% 98%",
54
+ "border": "215 27.9% 16.9%",
55
+ "input": "215 27.9% 16.9%",
56
+ "ring": "238.7 83.5% 66.7%",
57
+ "card": "224 71.4% 4.1%",
58
+ "card-foreground": "210 20% 98%",
59
+ "popover": "224 71.4% 4.1%",
60
+ "popover-foreground": "210 20% 98%",
61
+ "chart-1": "220 70% 50%",
62
+ "chart-2": "160 60% 45%",
63
+ "chart-3": "30 80% 55%",
64
+ "chart-4": "280 65% 60%",
65
+ "chart-5": "340 75% 55%",
66
+ "sidebar-background": "224 71.4% 4.1%",
67
+ "sidebar-foreground": "210 20% 98%",
68
+ "sidebar-primary": "238.7 83.5% 66.7%",
69
+ "sidebar-primary-foreground": "0 0% 100%",
70
+ "sidebar-accent": "215 27.9% 16.9%",
71
+ "sidebar-accent-foreground": "210 20% 98%",
72
+ "sidebar-border": "215 27.9% 16.9%",
73
+ "sidebar-ring": "238.7 83.5% 66.7%"
74
+ }
75
+ },
76
+ "radius": "0.5rem",
77
+ "fontFamily": {
78
+ "sans": "Inter, system-ui, sans-serif",
79
+ "mono": "JetBrains Mono, monospace"
80
+ }
81
+ }