/**
 * Moriah Shared Theme Definitions
 * CSS custom properties per theme, consumed by both forms and events CSS.
 */

/* Theme: Minimal */
[data-theme="minimal"] {
    --moriah-bg: transparent;
    --moriah-text: #111827;
    --moriah-text-secondary: #6b7280;
    --moriah-border: #e5e7eb;
    --moriah-input-bg: #fff;
    --moriah-input-border: #d1d5db;
    --moriah-accent: #3b82f6;
    --moriah-radius: 0px;
}

/* Theme: Forest (Dark) */
[data-theme="forest"] {
    --moriah-bg: #1a2e1a;
    --moriah-text: #e5e7eb;
    --moriah-text-secondary: #9ca3af;
    --moriah-border: #3d5a3d;
    --moriah-input-bg: #2d4a2d;
    --moriah-input-border: #3d5a3d;
    --moriah-accent: #22c55e;
    --moriah-radius: 12px;
}

/* Theme: Slate (Dark) */
[data-theme="slate"] {
    --moriah-bg: #1e293b;
    --moriah-text: #e5e7eb;
    --moriah-text-secondary: #9ca3af;
    --moriah-border: #475569;
    --moriah-input-bg: #334155;
    --moriah-input-border: #475569;
    --moriah-accent: #6366f1;
    --moriah-radius: 12px;
}
