@theproductguy/create-mission-control 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.
- package/README.md +37 -0
- package/bin/cli.js +170 -0
- package/package.json +44 -0
- package/src/template/App.tsx +28 -0
- package/src/template/agent-os/commands/create-tasks/1-get-spec-requirements.md +19 -0
- package/src/template/agent-os/commands/create-tasks/2-create-tasks-list.md +234 -0
- package/src/template/agent-os/commands/create-tasks/create-tasks.md +254 -0
- package/src/template/agent-os/commands/design-screen/design-screen.md +32 -0
- package/src/template/agent-os/commands/design-shell/design-shell.md +34 -0
- package/src/template/agent-os/commands/design-tokens/design-tokens.md +36 -0
- package/src/template/agent-os/commands/export-product/export-product.md +181 -0
- package/src/template/agent-os/commands/implement-tasks/1-determine-tasks.md +13 -0
- package/src/template/agent-os/commands/implement-tasks/2-implement-tasks.md +63 -0
- package/src/template/agent-os/commands/implement-tasks/3-verify-implementation.md +113 -0
- package/src/template/agent-os/commands/implement-tasks/implement-tasks.md +207 -0
- package/src/template/agent-os/commands/initialize-design/initialize-design.md +67 -0
- package/src/template/agent-os/commands/orchestrate-tasks/orchestrate-tasks.md +180 -0
- package/src/template/agent-os/commands/plan-product/1-product-concept.md +53 -0
- package/src/template/agent-os/commands/plan-product/2-create-mission.md +78 -0
- package/src/template/agent-os/commands/plan-product/3-create-roadmap.md +73 -0
- package/src/template/agent-os/commands/plan-product/4-create-tech-stack.md +46 -0
- package/src/template/agent-os/commands/plan-product/plan-product.md +241 -0
- package/src/template/agent-os/commands/sample-data/sample-data.md +51 -0
- package/src/template/agent-os/commands/scaffold-implementation/scaffold-implementation.md +35 -0
- package/src/template/agent-os/commands/screenshot-design/screenshot-design.md +21 -0
- package/src/template/agent-os/commands/shape-spec/1-initialize-spec.md +95 -0
- package/src/template/agent-os/commands/shape-spec/2-shape-spec.md +300 -0
- package/src/template/agent-os/commands/shape-spec/shape-spec.md +40 -0
- package/src/template/agent-os/commands/write-spec/write-spec.md +134 -0
- package/src/template/agent-os/config.yml +13 -0
- package/src/template/agent-os/product/mission.md +29 -0
- package/src/template/agent-os/product/roadmap.md +9 -0
- package/src/template/agent-os/product/tech-stack.md +14 -0
- package/src/template/agent-os/scripts/generate_docs.sh +150 -0
- package/src/template/agent-os/specs/README.md +1 -0
- package/src/template/agent-os/standards/backend/api.md +10 -0
- package/src/template/agent-os/standards/backend/migrations.md +9 -0
- package/src/template/agent-os/standards/backend/models.md +10 -0
- package/src/template/agent-os/standards/backend/queries.md +9 -0
- package/src/template/agent-os/standards/frontend/accessibility.md +10 -0
- package/src/template/agent-os/standards/frontend/components.md +11 -0
- package/src/template/agent-os/standards/frontend/css.md +7 -0
- package/src/template/agent-os/standards/frontend/responsive.md +11 -0
- package/src/template/agent-os/standards/global/coding-style.md +10 -0
- package/src/template/agent-os/standards/global/commenting.md +5 -0
- package/src/template/agent-os/standards/global/conventions.md +11 -0
- package/src/template/agent-os/standards/global/error-handling.md +9 -0
- package/src/template/agent-os/standards/global/tech-stack.md +31 -0
- package/src/template/agent-os/standards/global/validation.md +11 -0
- package/src/template/agent-os/standards/testing/test-writing.md +9 -0
- package/src/template/agent-os-ui/README.md +73 -0
- package/src/template/agent-os-ui/package.json +54 -0
- package/src/template/agent-os-ui/src/components/AgentShell.tsx +31 -0
- package/src/template/agent-os-ui/src/components/AgentSidebar.tsx +65 -0
- package/src/template/agent-os-ui/src/components/GuidanceCard.tsx +75 -0
- package/src/template/agent-os-ui/src/components/MarkdownViewer.tsx +25 -0
- package/src/template/agent-os-ui/src/components/PromptButton.tsx +28 -0
- package/src/template/agent-os-ui/src/components/StatusItem.tsx +45 -0
- package/src/template/agent-os-ui/src/components/ThemeToggle.tsx +72 -0
- package/src/template/agent-os-ui/src/index.ts +11 -0
- package/src/template/agent-os-ui/src/style.css +3 -0
- package/src/template/agent-os-ui/tsconfig.json +33 -0
- package/src/template/agent-os-ui/vite.config.ts +32 -0
- package/src/template/control-center/backend/index.js +253 -0
- package/src/template/control-center/backend/package.json +19 -0
- package/src/template/control-center/frontend/README.md +73 -0
- package/src/template/control-center/frontend/eslint.config.js +23 -0
- package/src/template/control-center/frontend/index.html +21 -0
- package/src/template/control-center/frontend/package.json +43 -0
- package/src/template/control-center/frontend/postcss.config.js +6 -0
- package/src/template/control-center/frontend/public/favicon.svg +4 -0
- package/src/template/control-center/frontend/public/runtime-config.json +11 -0
- package/src/template/control-center/frontend/public/vite.svg +1 -0
- package/src/template/control-center/frontend/src/App.css +42 -0
- package/src/template/control-center/frontend/src/App.tsx +835 -0
- package/src/template/control-center/frontend/src/assets/react.svg +1 -0
- package/src/template/control-center/frontend/src/components/ThemeToggle.tsx +64 -0
- package/src/template/control-center/frontend/src/components/ui/ToastContext.tsx +81 -0
- package/src/template/control-center/frontend/src/index.css +149 -0
- package/src/template/control-center/frontend/src/main.tsx +14 -0
- package/src/template/control-center/frontend/src/vite-env.d.ts +1 -0
- package/src/template/control-center/frontend/tailwind.config.js +81 -0
- package/src/template/control-center/frontend/tsconfig.app.json +28 -0
- package/src/template/control-center/frontend/tsconfig.json +7 -0
- package/src/template/control-center/frontend/tsconfig.node.json +26 -0
- package/src/template/control-center/frontend/vite.config.ts +21 -0
- package/src/template/design/.claude/commands/design-os/data-model.md +122 -0
- package/src/template/design/.claude/commands/design-os/design-screen.md +309 -0
- package/src/template/design/.claude/commands/design-os/design-shell.md +238 -0
- package/src/template/design/.claude/commands/design-os/design-tokens.md +166 -0
- package/src/template/design/.claude/commands/design-os/export-product.md +1105 -0
- package/src/template/design/.claude/commands/design-os/product-roadmap.md +121 -0
- package/src/template/design/.claude/commands/design-os/product-vision.md +99 -0
- package/src/template/design/.claude/commands/design-os/sample-data.md +263 -0
- package/src/template/design/.claude/commands/design-os/screenshot-design.md +112 -0
- package/src/template/design/.claude/commands/design-os/shape-section.md +138 -0
- package/src/template/design/.claude/skills/frontend-design/SKILL.md +42 -0
- package/src/template/design/.github/CODE_OF_CONDUCT.md +5 -0
- package/src/template/design/.github/CONTRIBUTING.md +51 -0
- package/src/template/design/.github/ISSUE_TEMPLATE/config.yml +22 -0
- package/src/template/design/.github/PULL_REQUEST_TEMPLATE.md +20 -0
- package/src/template/design/.github/SECURITY.yml +5 -0
- package/src/template/design/.github/SUPPORT.md +19 -0
- package/src/template/design/.github/workflows/pr-decline.yml +135 -0
- package/src/template/design/.github/workflows/stale.yml +25 -0
- package/src/template/design/CHANGELOG.md +13 -0
- package/src/template/design/LICENSE +21 -0
- package/src/template/design/README.md +54 -0
- package/src/template/design/agents.md +218 -0
- package/src/template/design/claude.md +1 -0
- package/src/template/design/components.json +22 -0
- package/src/template/design/docs/codebase-implementation.md +153 -0
- package/src/template/design/docs/design-section.md +135 -0
- package/src/template/design/docs/export.md +149 -0
- package/src/template/design/docs/getting-started.md +59 -0
- package/src/template/design/docs/index.md +56 -0
- package/src/template/design/docs/product-planning.md +113 -0
- package/src/template/design/docs/requirements.md +22 -0
- package/src/template/design/docs/usage.md +62 -0
- package/src/template/design/eslint.config.js +23 -0
- package/src/template/design/index.html +21 -0
- package/src/template/design/package.json +46 -0
- package/src/template/design/postcss.config.js +6 -0
- package/src/template/design/public/favicon.svg +4 -0
- package/src/template/design/public/vite.svg +1 -0
- package/src/template/design/src/assets/react.svg +1 -0
- package/src/template/design/src/components/AppLayout.tsx +95 -0
- package/src/template/design/src/components/DataCard.tsx +139 -0
- package/src/template/design/src/components/DataModelPage.tsx +120 -0
- package/src/template/design/src/components/DesignPage.tsx +284 -0
- package/src/template/design/src/components/EmptyState.tsx +158 -0
- package/src/template/design/src/components/ExportPage.tsx +354 -0
- package/src/template/design/src/components/NextPhaseButton.tsx +33 -0
- package/src/template/design/src/components/PhaseNav.tsx +152 -0
- package/src/template/design/src/components/PhaseWarningBanner.tsx +81 -0
- package/src/template/design/src/components/ProductOverviewCard.tsx +102 -0
- package/src/template/design/src/components/ProductPage.tsx +97 -0
- package/src/template/design/src/components/ScreenDesignPage.tsx +370 -0
- package/src/template/design/src/components/ScreenDesignsCard.tsx +49 -0
- package/src/template/design/src/components/SectionPage.tsx +256 -0
- package/src/template/design/src/components/SectionsCard.tsx +47 -0
- package/src/template/design/src/components/SectionsPage.tsx +181 -0
- package/src/template/design/src/components/ShellCard.tsx +85 -0
- package/src/template/design/src/components/ShellDesignPage.tsx +242 -0
- package/src/template/design/src/components/SpecCard.tsx +121 -0
- package/src/template/design/src/components/StepIndicator.tsx +75 -0
- package/src/template/design/src/components/ThemeToggle.tsx +86 -0
- package/src/template/design/src/components/ui/ToastContext.tsx +81 -0
- package/src/template/design/src/components/ui/avatar.tsx +53 -0
- package/src/template/design/src/components/ui/badge.tsx +46 -0
- package/src/template/design/src/components/ui/button.tsx +60 -0
- package/src/template/design/src/components/ui/card.tsx +92 -0
- package/src/template/design/src/components/ui/collapsible.tsx +48 -0
- package/src/template/design/src/components/ui/dialog.tsx +143 -0
- package/src/template/design/src/components/ui/dropdown-menu.tsx +255 -0
- package/src/template/design/src/components/ui/input.tsx +21 -0
- package/src/template/design/src/components/ui/label.tsx +22 -0
- package/src/template/design/src/components/ui/progress.tsx +24 -0
- package/src/template/design/src/components/ui/scroll-area.tsx +18 -0
- package/src/template/design/src/components/ui/select.tsx +67 -0
- package/src/template/design/src/components/ui/separator.tsx +28 -0
- package/src/template/design/src/components/ui/sheet.tsx +137 -0
- package/src/template/design/src/components/ui/skeleton.tsx +13 -0
- package/src/template/design/src/components/ui/switch.tsx +46 -0
- package/src/template/design/src/components/ui/table.tsx +116 -0
- package/src/template/design/src/components/ui/tabs.tsx +64 -0
- package/src/template/design/src/index.css +239 -0
- package/src/template/design/src/lib/data-model-loader.ts +91 -0
- package/src/template/design/src/lib/design-system-loader.ts +101 -0
- package/src/template/design/src/lib/product-loader.ts +221 -0
- package/src/template/design/src/lib/router.tsx +61 -0
- package/src/template/design/src/lib/section-loader.ts +272 -0
- package/src/template/design/src/lib/shell-loader.ts +175 -0
- package/src/template/design/src/lib/utils.ts +6 -0
- package/src/template/design/src/main.tsx +15 -0
- package/src/template/design/src/sections/.gitkeep +0 -0
- package/src/template/design/src/sections/ai-orchestration-engine-oai/OrchestrationEngine.tsx +348 -0
- package/src/template/design/src/sections/core-platform-shell/AppShell.tsx +403 -0
- package/src/template/design/src/sections/gemini-live-integration/GeminiIntegration.tsx +332 -0
- package/src/template/design/src/sections/interactive-2d-canvas/WhiteboardCanvas.tsx +334 -0
- package/src/template/design/src/sections/participation-equity-tracker/EquityTracker.tsx +383 -0
- package/src/template/design/src/sections/persistent-memory-system/PersistentMemory.tsx +308 -0
- package/src/template/design/src/sections/real-time-communication-layer/VideoSession.tsx +342 -0
- package/src/template/design/src/sections/visual-intelligence-agents/VisualAgents.tsx +311 -0
- package/src/template/design/src/types/product.ts +97 -0
- package/src/template/design/src/types/section.ts +33 -0
- package/src/template/design/tailwind.config.js +77 -0
- package/src/template/design/tsconfig.app.json +34 -0
- package/src/template/design/tsconfig.json +13 -0
- package/src/template/design/tsconfig.node.json +26 -0
- package/src/template/design/vite.config.ts +17 -0
- package/src/template/index.css +102 -0
- package/src/template/package.json +27 -0
- package/src/template/tailwind.config.js +80 -0
- package/src/template/vite.config.ts +9 -0
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
@tailwind base;
|
|
2
|
+
@tailwind components;
|
|
3
|
+
@tailwind utilities;
|
|
4
|
+
|
|
5
|
+
@layer base {
|
|
6
|
+
:root {
|
|
7
|
+
--radius: 0.5rem;
|
|
8
|
+
--background: 0.985 0.001 106.424;
|
|
9
|
+
/* oklch components if using tailwind 4, but for T3 we use values */
|
|
10
|
+
/* Reverting to hex/standard values or using the T3 CSS var format */
|
|
11
|
+
/* Actually, copying the Oklch values is fine if we use postcss-preset-env or if browser supports it.
|
|
12
|
+
Tailwind 3 doesn't automatically parse "0.985 0.001 106.424" without "oklch(...)".
|
|
13
|
+
The previous CSS file used `oklch(...)`. I should use that.
|
|
14
|
+
*/
|
|
15
|
+
--background: oklch(0.985 0.001 106.424);
|
|
16
|
+
--foreground: oklch(0.216 0.006 56.043);
|
|
17
|
+
--card: oklch(1 0 0);
|
|
18
|
+
--card-foreground: oklch(0.216 0.006 56.043);
|
|
19
|
+
--popover: oklch(1 0 0);
|
|
20
|
+
--popover-foreground: oklch(0.216 0.006 56.043);
|
|
21
|
+
--primary: oklch(0.216 0.006 56.043);
|
|
22
|
+
--primary-foreground: oklch(0.985 0.001 106.424);
|
|
23
|
+
--secondary: oklch(0.970 0.001 106.424);
|
|
24
|
+
--secondary-foreground: oklch(0.216 0.006 56.043);
|
|
25
|
+
--muted: oklch(0.970 0.001 106.424);
|
|
26
|
+
--muted-foreground: oklch(0.370 0.010 67.558);
|
|
27
|
+
--accent: oklch(0.970 0.001 106.424);
|
|
28
|
+
--accent-foreground: oklch(0.216 0.006 56.043);
|
|
29
|
+
--destructive: oklch(0.586 0.253 17.585);
|
|
30
|
+
--destructive-foreground: oklch(0.985 0.001 106.424);
|
|
31
|
+
/* Added missing dest-bg */
|
|
32
|
+
--border: oklch(0.923 0.003 48.717);
|
|
33
|
+
--input: oklch(0.923 0.003 48.717);
|
|
34
|
+
--ring: oklch(0.553 0.013 58.071);
|
|
35
|
+
|
|
36
|
+
--chart-1: oklch(0.532 0.157 131.589);
|
|
37
|
+
--chart-2: oklch(0.6 0.118 184.704);
|
|
38
|
+
--chart-3: oklch(0.398 0.07 227.392);
|
|
39
|
+
--chart-4: oklch(0.828 0.189 84.429);
|
|
40
|
+
--chart-5: oklch(0.769 0.188 70.08);
|
|
41
|
+
|
|
42
|
+
--sidebar: oklch(0.985 0.001 106.424);
|
|
43
|
+
--sidebar-foreground: oklch(0.216 0.006 56.043);
|
|
44
|
+
--sidebar-primary: oklch(0.216 0.006 56.043);
|
|
45
|
+
--sidebar-primary-foreground: oklch(0.985 0.001 106.424);
|
|
46
|
+
--sidebar-accent: oklch(0.970 0.001 106.424);
|
|
47
|
+
--sidebar-accent-foreground: oklch(0.216 0.006 56.043);
|
|
48
|
+
--sidebar-border: oklch(0.923 0.003 48.717);
|
|
49
|
+
--sidebar-ring: oklch(0.553 0.013 58.071);
|
|
50
|
+
|
|
51
|
+
--font-display: "DM Sans", system-ui, sans-serif;
|
|
52
|
+
--font-sans: "DM Sans", system-ui, sans-serif;
|
|
53
|
+
--font-mono: "IBM Plex Mono", ui-monospace, monospace;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.dark {
|
|
57
|
+
--background: oklch(0.216 0.006 56.043);
|
|
58
|
+
--foreground: oklch(0.985 0.001 106.424);
|
|
59
|
+
--card: oklch(0.268 0.007 34.298);
|
|
60
|
+
--card-foreground: oklch(0.985 0.001 106.424);
|
|
61
|
+
--popover: oklch(0.268 0.007 34.298);
|
|
62
|
+
--popover-foreground: oklch(0.985 0.001 106.424);
|
|
63
|
+
--primary: oklch(0.923 0.003 48.717);
|
|
64
|
+
--primary-foreground: oklch(0.216 0.006 56.043);
|
|
65
|
+
--secondary: oklch(0.318 0.008 43.185);
|
|
66
|
+
--secondary-foreground: oklch(0.985 0.001 106.424);
|
|
67
|
+
--muted: oklch(0.318 0.008 43.185);
|
|
68
|
+
--muted-foreground: oklch(0.709 0.01 56.259);
|
|
69
|
+
--accent: oklch(0.318 0.008 43.185);
|
|
70
|
+
--accent-foreground: oklch(0.985 0.001 106.424);
|
|
71
|
+
--destructive: oklch(0.712 0.194 13.428);
|
|
72
|
+
--destructive-foreground: oklch(0.985 0.001 106.424);
|
|
73
|
+
--border: oklch(0.370 0.010 67.558);
|
|
74
|
+
--input: oklch(0.370 0.010 67.558);
|
|
75
|
+
--ring: oklch(0.553 0.013 58.071);
|
|
76
|
+
|
|
77
|
+
--chart-1: oklch(0.648 0.2 131.684);
|
|
78
|
+
--chart-2: oklch(0.696 0.17 162.48);
|
|
79
|
+
--chart-3: oklch(0.769 0.188 70.08);
|
|
80
|
+
--chart-4: oklch(0.627 0.265 303.9);
|
|
81
|
+
--chart-5: oklch(0.645 0.246 16.439);
|
|
82
|
+
|
|
83
|
+
--sidebar: oklch(0.268 0.007 34.298);
|
|
84
|
+
--sidebar-foreground: oklch(0.985 0.001 106.424);
|
|
85
|
+
--sidebar-primary: oklch(0.648 0.2 131.684);
|
|
86
|
+
--sidebar-primary-foreground: oklch(0.216 0.006 56.043);
|
|
87
|
+
--sidebar-accent: oklch(0.318 0.008 43.185);
|
|
88
|
+
--sidebar-accent-foreground: oklch(0.985 0.001 106.424);
|
|
89
|
+
--sidebar-border: oklch(0.370 0.010 67.558);
|
|
90
|
+
--sidebar-ring: oklch(0.553 0.013 58.071);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@layer base {
|
|
95
|
+
* {
|
|
96
|
+
@apply border-border;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
body {
|
|
100
|
+
@apply bg-background text-foreground font-sans;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agent-os-app",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"workspaces": [
|
|
7
|
+
"app",
|
|
8
|
+
"control-center/frontend",
|
|
9
|
+
"control-center/backend",
|
|
10
|
+
"design-system",
|
|
11
|
+
"agent-os-ui"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "npm run build:ui && npm run start:all",
|
|
15
|
+
"build:ui": "cd agent-os-ui && npm run build",
|
|
16
|
+
"start:all": "concurrently \"npm run start:api\" \"npm run start:design\" \"npm run start:control\" \"npm run start:app\"",
|
|
17
|
+
"start:api": "cd control-center/backend && PORT=5403 npm start",
|
|
18
|
+
"start:design": "cd design-system && npm run dev -- --port 5400",
|
|
19
|
+
"start:control": "cd control-center/frontend && npm run dev -- --port 5401",
|
|
20
|
+
"start:app": "cd app && npm run dev -- --port 5402",
|
|
21
|
+
"build": "npm run build --workspaces",
|
|
22
|
+
"test": "npm run test --workspaces"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"concurrently": "^8.2.2"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
/** @type {import('tailwindcss').Config} */
|
|
2
|
+
export default {
|
|
3
|
+
darkMode: ["class"],
|
|
4
|
+
content: [
|
|
5
|
+
"./index.html",
|
|
6
|
+
"./src/**/*.{js,ts,jsx,tsx}",
|
|
7
|
+
"./node_modules/@builderos/agent-os-ui/dist/**/*.{js,ts,jsx,tsx}" // Support for installed UI lib if built
|
|
8
|
+
],
|
|
9
|
+
theme: {
|
|
10
|
+
extend: {
|
|
11
|
+
fontFamily: {
|
|
12
|
+
display: ["DM Sans", "system-ui", "sans-serif"],
|
|
13
|
+
body: ["DM Sans", "system-ui", "sans-serif"],
|
|
14
|
+
sans: ["DM Sans", "system-ui", "sans-serif"],
|
|
15
|
+
mono: ["IBM Plex Mono", "ui-monospace", "monospace"]
|
|
16
|
+
},
|
|
17
|
+
borderRadius: {
|
|
18
|
+
lg: 'var(--radius)',
|
|
19
|
+
md: 'calc(var(--radius) - 2px)',
|
|
20
|
+
sm: 'calc(var(--radius) - 4px)',
|
|
21
|
+
xl: 'calc(var(--radius) + 4px)'
|
|
22
|
+
},
|
|
23
|
+
colors: {
|
|
24
|
+
background: 'var(--background)',
|
|
25
|
+
foreground: 'var(--foreground)',
|
|
26
|
+
card: {
|
|
27
|
+
DEFAULT: 'var(--card)',
|
|
28
|
+
foreground: 'var(--card-foreground)'
|
|
29
|
+
},
|
|
30
|
+
popover: {
|
|
31
|
+
DEFAULT: 'var(--popover)',
|
|
32
|
+
foreground: 'var(--popover-foreground)'
|
|
33
|
+
},
|
|
34
|
+
primary: {
|
|
35
|
+
DEFAULT: 'var(--primary)',
|
|
36
|
+
foreground: 'var(--primary-foreground)'
|
|
37
|
+
},
|
|
38
|
+
secondary: {
|
|
39
|
+
DEFAULT: 'var(--secondary)',
|
|
40
|
+
foreground: 'var(--secondary-foreground)'
|
|
41
|
+
},
|
|
42
|
+
muted: {
|
|
43
|
+
DEFAULT: 'var(--muted)',
|
|
44
|
+
foreground: 'var(--muted-foreground)'
|
|
45
|
+
},
|
|
46
|
+
accent: {
|
|
47
|
+
DEFAULT: 'var(--accent)',
|
|
48
|
+
foreground: 'var(--accent-foreground)'
|
|
49
|
+
},
|
|
50
|
+
destructive: {
|
|
51
|
+
DEFAULT: 'var(--destructive)',
|
|
52
|
+
foreground: 'var(--destructive-foreground)'
|
|
53
|
+
},
|
|
54
|
+
border: 'var(--border)',
|
|
55
|
+
input: 'var(--input)',
|
|
56
|
+
ring: 'var(--ring)',
|
|
57
|
+
chart: {
|
|
58
|
+
'1': 'var(--chart-1)',
|
|
59
|
+
'2': 'var(--chart-2)',
|
|
60
|
+
'3': 'var(--chart-3)',
|
|
61
|
+
'4': 'var(--chart-4)',
|
|
62
|
+
'5': 'var(--chart-5)'
|
|
63
|
+
},
|
|
64
|
+
sidebar: {
|
|
65
|
+
DEFAULT: 'var(--sidebar)',
|
|
66
|
+
foreground: 'var(--sidebar-foreground)',
|
|
67
|
+
primary: 'var(--sidebar-primary)',
|
|
68
|
+
'primary-foreground': 'var(--sidebar-primary-foreground)',
|
|
69
|
+
accent: 'var(--sidebar-accent)',
|
|
70
|
+
'accent-foreground': 'var(--sidebar-accent-foreground)',
|
|
71
|
+
border: 'var(--sidebar-border)',
|
|
72
|
+
ring: 'var(--sidebar-ring)'
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
plugins: [
|
|
78
|
+
require("tailwindcss-animate")
|
|
79
|
+
],
|
|
80
|
+
}
|