feat(theme): add cotton candy light theme with custom colors
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m28s

This commit is contained in:
2026-03-12 14:05:15 +01:00
parent 52f122a98a
commit 530377272b
2 changed files with 35 additions and 0 deletions

View File

@@ -668,6 +668,34 @@
--gradient-end: #00e5ff; --gradient-end: #00e5ff;
} }
/* ===== COTTON CANDY LIGHT ===== */
[data-theme="cotton-candy-light"] {
color-scheme: light;
--picker-icon-filter: none;
--bg-primary: #fff5f9;
--bg-secondary: #ffe8f2;
--bg-tertiary: #ffd6e8;
--text-primary: #8b2635;
--text-secondary: #b05470;
--accent: #ff85a2;
--accent-hover: #ff6b8d;
--accent-text: #ffffff;
--border: #ffc2d9;
--card-bg: #ffe8f2;
--input-bg: #fff5f9;
--input-border: #ffaac8;
--nav-bg: #ffe8f2;
--sidebar-bg: #ffd6e8;
--hover-bg: #ffd6e8;
--success: #5cb85c;
--warning: #f0ad4e;
--error: #d9534f;
--ring: #ff85a2;
--shadow-color: rgba(255, 133, 162, 0.15);
--gradient-start: #ff85a2;
--gradient-end: #c084fc;
}
@layer components { @layer components {
.btn-primary { .btn-primary {

View File

@@ -160,6 +160,13 @@ export const themes = [
group: 'Community', group: 'Community',
colors: { bg: '#0a0a0f', accent: '#ff0080', text: '#e0e0ff' }, colors: { bg: '#0a0a0f', accent: '#ff0080', text: '#e0e0ff' },
}, },
{
id: 'cotton-candy-light',
name: 'Cotton Candy Light',
type: 'light',
group: 'Community',
colors: { bg: '#fff5f9', accent: '#ff85a2', text: '#8b2635' },
},
]; ];
export function getThemeById(id) { export function getThemeById(id) {