Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/dependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ export function resolveDependencies(projectPath, config) {
pkg.dependencies['tailwind-merge'] = '^2.3.0';
} else if (config.design === 'Dark Terminal') {
pkg.dependencies['lucide-react'] = '^0.378.0'; // For terminal icons
} else if (config.design === 'Neon Cyberpunk') {
pkg.dependencies['framer-motion'] = '^11.2.0'; // For glow/hover animations
}

// 3. Inject routing tools based on Sidebar choice
Expand Down
75 changes: 75 additions & 0 deletions templates/blog/nextjs-monolith/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,81 @@
--radius: 0.25rem;
}


/* ===== Brutalist Theme ===== */
[data-theme="Brutalist"] {
--bg-color: #ffffff;
--bg-secondary: #f0f0f0;
--text-color: #000000;
--text-secondary: #333333;
--primary: #dc2626;
--primary-hover: #b91c1c;
--border-color: #000000;
--card-bg: #ffffff;
--font-family: 'Courier New', ui-monospace, monospace;
--radius: 0;
}

/* ===== Soft Pastel Theme ===== */
[data-theme="Soft Pastel"] {
--bg-color: #fdf4ff;
--bg-secondary: #f5f0ff;
--text-color: #3b1f5e;
--text-secondary: #7c5a9e;
--primary: #a855f7;
--primary-hover: #9333ea;
--border-color: #e9d5ff;
--card-bg: #ffffff;
--font-family: 'Inter', system-ui, sans-serif;
--radius: 1.5rem;
}

/* ===== Corporate Blue Theme ===== */
[data-theme="Corporate Blue"] {
--bg-color: #f8fafc;
--bg-secondary: #f1f5f9;
--text-color: #0f172a;
--text-secondary: #475569;
--primary: #1e40af;
--primary-hover: #1e3a8a;
--border-color: #cbd5e1;
--card-bg: #ffffff;
--font-family: 'Georgia', 'Times New Roman', serif;
--radius: 0.25rem;
}

/* ===== Neon Cyberpunk Theme ===== */
[data-theme="Neon Cyberpunk"] {
--bg-color: #0a0015;
--bg-secondary: #1a0030;
--text-color: #e0f2fe;
--text-secondary: #7dd3fc;
--primary: #f472b6;
--primary-hover: #ec4899;
--border-color: #581c87;
--card-bg: rgba(88, 28, 135, 0.2);
--font-family: 'Inter', system-ui, sans-serif;
--radius: 0.75rem;
}

[data-theme="Neon Cyberpunk"] .neon-glow {
box-shadow: 0 0 10px rgba(244, 114, 182, 0.4), 0 0 20px rgba(244, 114, 182, 0.2);
}

/* ===== Earth Tones Theme ===== */
[data-theme="Earth Tones"] {
--bg-color: #faf7f2;
--bg-secondary: #f5efe6;
--text-color: #3d2c1e;
--text-secondary: #78614e;
--primary: #b45309;
--primary-hover: #92400e;
--border-color: #d6c4a8;
--card-bg: #fffdf8;
--font-family: 'Inter', system-ui, sans-serif;
--radius: 0.75rem;
}

/* ===== Apply variables globally ===== */
body {
background-color: var(--bg-color);
Expand Down
75 changes: 75 additions & 0 deletions templates/ecommerce/nextjs-monolith/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,81 @@
--radius: 0.25rem;
}


/* ===== Brutalist Theme ===== */
[data-theme="Brutalist"] {
--bg-color: #ffffff;
--bg-secondary: #f0f0f0;
--text-color: #000000;
--text-secondary: #333333;
--primary: #dc2626;
--primary-hover: #b91c1c;
--border-color: #000000;
--card-bg: #ffffff;
--font-family: 'Courier New', ui-monospace, monospace;
--radius: 0;
}

/* ===== Soft Pastel Theme ===== */
[data-theme="Soft Pastel"] {
--bg-color: #fdf4ff;
--bg-secondary: #f5f0ff;
--text-color: #3b1f5e;
--text-secondary: #7c5a9e;
--primary: #a855f7;
--primary-hover: #9333ea;
--border-color: #e9d5ff;
--card-bg: #ffffff;
--font-family: 'Inter', system-ui, sans-serif;
--radius: 1.5rem;
}

/* ===== Corporate Blue Theme ===== */
[data-theme="Corporate Blue"] {
--bg-color: #f8fafc;
--bg-secondary: #f1f5f9;
--text-color: #0f172a;
--text-secondary: #475569;
--primary: #1e40af;
--primary-hover: #1e3a8a;
--border-color: #cbd5e1;
--card-bg: #ffffff;
--font-family: 'Georgia', 'Times New Roman', serif;
--radius: 0.25rem;
}

/* ===== Neon Cyberpunk Theme ===== */
[data-theme="Neon Cyberpunk"] {
--bg-color: #0a0015;
--bg-secondary: #1a0030;
--text-color: #e0f2fe;
--text-secondary: #7dd3fc;
--primary: #f472b6;
--primary-hover: #ec4899;
--border-color: #581c87;
--card-bg: rgba(88, 28, 135, 0.2);
--font-family: 'Inter', system-ui, sans-serif;
--radius: 0.75rem;
}

[data-theme="Neon Cyberpunk"] .neon-glow {
box-shadow: 0 0 10px rgba(244, 114, 182, 0.4), 0 0 20px rgba(244, 114, 182, 0.2);
}

/* ===== Earth Tones Theme ===== */
[data-theme="Earth Tones"] {
--bg-color: #faf7f2;
--bg-secondary: #f5efe6;
--text-color: #3d2c1e;
--text-secondary: #78614e;
--primary: #b45309;
--primary-hover: #92400e;
--border-color: #d6c4a8;
--card-bg: #fffdf8;
--font-family: 'Inter', system-ui, sans-serif;
--radius: 0.75rem;
}

/* ===== Apply variables globally ===== */
body {
background-color: var(--bg-color);
Expand Down
75 changes: 75 additions & 0 deletions templates/ecommerce/vite-react/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,81 @@
--radius: 0.25rem;
}


/* ===== Brutalist Theme ===== */
[data-theme="Brutalist"] {
--bg-color: #ffffff;
--bg-secondary: #f0f0f0;
--text-color: #000000;
--text-secondary: #333333;
--primary: #dc2626;
--primary-hover: #b91c1c;
--border-color: #000000;
--card-bg: #ffffff;
--font-family: 'Courier New', ui-monospace, monospace;
--radius: 0;
}

/* ===== Soft Pastel Theme ===== */
[data-theme="Soft Pastel"] {
--bg-color: #fdf4ff;
--bg-secondary: #f5f0ff;
--text-color: #3b1f5e;
--text-secondary: #7c5a9e;
--primary: #a855f7;
--primary-hover: #9333ea;
--border-color: #e9d5ff;
--card-bg: #ffffff;
--font-family: 'Inter', system-ui, sans-serif;
--radius: 1.5rem;
}

/* ===== Corporate Blue Theme ===== */
[data-theme="Corporate Blue"] {
--bg-color: #f8fafc;
--bg-secondary: #f1f5f9;
--text-color: #0f172a;
--text-secondary: #475569;
--primary: #1e40af;
--primary-hover: #1e3a8a;
--border-color: #cbd5e1;
--card-bg: #ffffff;
--font-family: 'Georgia', 'Times New Roman', serif;
--radius: 0.25rem;
}

/* ===== Neon Cyberpunk Theme ===== */
[data-theme="Neon Cyberpunk"] {
--bg-color: #0a0015;
--bg-secondary: #1a0030;
--text-color: #e0f2fe;
--text-secondary: #7dd3fc;
--primary: #f472b6;
--primary-hover: #ec4899;
--border-color: #581c87;
--card-bg: rgba(88, 28, 135, 0.2);
--font-family: 'Inter', system-ui, sans-serif;
--radius: 0.75rem;
}

[data-theme="Neon Cyberpunk"] .neon-glow {
box-shadow: 0 0 10px rgba(244, 114, 182, 0.4), 0 0 20px rgba(244, 114, 182, 0.2);
}

/* ===== Earth Tones Theme ===== */
[data-theme="Earth Tones"] {
--bg-color: #faf7f2;
--bg-secondary: #f5efe6;
--text-color: #3d2c1e;
--text-secondary: #78614e;
--primary: #b45309;
--primary-hover: #92400e;
--border-color: #d6c4a8;
--card-bg: #fffdf8;
--font-family: 'Inter', system-ui, sans-serif;
--radius: 0.75rem;
}

body {
background-color: var(--bg-color);
color: var(--text-color);
Expand Down
75 changes: 75 additions & 0 deletions templates/portfolio/nextjs-monolith/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,81 @@
--radius: 0.25rem;
}


/* ===== Brutalist Theme ===== */
[data-theme="Brutalist"] {
--bg-color: #ffffff;
--bg-secondary: #f0f0f0;
--text-color: #000000;
--text-secondary: #333333;
--primary: #dc2626;
--primary-hover: #b91c1c;
--border-color: #000000;
--card-bg: #ffffff;
--font-family: 'Courier New', ui-monospace, monospace;
--radius: 0;
}

/* ===== Soft Pastel Theme ===== */
[data-theme="Soft Pastel"] {
--bg-color: #fdf4ff;
--bg-secondary: #f5f0ff;
--text-color: #3b1f5e;
--text-secondary: #7c5a9e;
--primary: #a855f7;
--primary-hover: #9333ea;
--border-color: #e9d5ff;
--card-bg: #ffffff;
--font-family: 'Inter', system-ui, sans-serif;
--radius: 1.5rem;
}

/* ===== Corporate Blue Theme ===== */
[data-theme="Corporate Blue"] {
--bg-color: #f8fafc;
--bg-secondary: #f1f5f9;
--text-color: #0f172a;
--text-secondary: #475569;
--primary: #1e40af;
--primary-hover: #1e3a8a;
--border-color: #cbd5e1;
--card-bg: #ffffff;
--font-family: 'Georgia', 'Times New Roman', serif;
--radius: 0.25rem;
}

/* ===== Neon Cyberpunk Theme ===== */
[data-theme="Neon Cyberpunk"] {
--bg-color: #0a0015;
--bg-secondary: #1a0030;
--text-color: #e0f2fe;
--text-secondary: #7dd3fc;
--primary: #f472b6;
--primary-hover: #ec4899;
--border-color: #581c87;
--card-bg: rgba(88, 28, 135, 0.2);
--font-family: 'Inter', system-ui, sans-serif;
--radius: 0.75rem;
}

[data-theme="Neon Cyberpunk"] .neon-glow {
box-shadow: 0 0 10px rgba(244, 114, 182, 0.4), 0 0 20px rgba(244, 114, 182, 0.2);
}

/* ===== Earth Tones Theme ===== */
[data-theme="Earth Tones"] {
--bg-color: #faf7f2;
--bg-secondary: #f5efe6;
--text-color: #3d2c1e;
--text-secondary: #78614e;
--primary: #b45309;
--primary-hover: #92400e;
--border-color: #d6c4a8;
--card-bg: #fffdf8;
--font-family: 'Inter', system-ui, sans-serif;
--radius: 0.75rem;
}

/* ===== Apply variables globally ===== */
body {
background-color: var(--bg-color);
Expand Down
Loading
Loading