-- =============================================================================
-- SEED: 3 Published Themes for testing
-- Idempotent — uses ON CONFLICT DO NOTHING on slug
-- =============================================================================

BEGIN;

INSERT INTO platform.themes (
    id, name, slug, description, "isPublished", "isActive", settings,
    "createdBy", "updatedBy"
)
VALUES

-- Theme 1: Ocean (cool blue)
(
    gen_random_uuid()::text,
    'Ocean',
    'ocean',
    'Clean and professional blue theme — great for tech and electronics stores.',
    TRUE, TRUE,
    '{
        "primaryColor":   "#0EA5E9",
        "primaryHover":   "#0284C7",
        "accentColor":    "#F59E0B",
        "surfaceColor":   "#FFFFFF",
        "bgColor":        "#F0F9FF",
        "textColor":      "#0C1A2E",
        "textMuted":      "#64748B",
        "borderColor":    "#BAE6FD",
        "successColor":   "#10B981",
        "dangerColor":    "#EF4444",
        "fontFamily":     "Inter, system-ui, sans-serif",
        "borderRadiusSm": "6px",
        "borderRadiusMd": "12px",
        "borderRadiusLg": "20px"
    }'::jsonb,
    'system', 'system'
),

-- Theme 2: Ember (warm red/orange)
(
    gen_random_uuid()::text,
    'Ember',
    'ember',
    'Bold and energetic warm theme — great for fashion and lifestyle brands.',
    TRUE, TRUE,
    '{
        "primaryColor":   "#DC2626",
        "primaryHover":   "#B91C1C",
        "accentColor":    "#F97316",
        "surfaceColor":   "#FFFFFF",
        "bgColor":        "#FFF7ED",
        "textColor":      "#1C0A00",
        "textMuted":      "#78350F",
        "borderColor":    "#FED7AA",
        "successColor":   "#16A34A",
        "dangerColor":    "#991B1B",
        "fontFamily":     "Inter, system-ui, sans-serif",
        "borderRadiusSm": "4px",
        "borderRadiusMd": "8px",
        "borderRadiusLg": "12px"
    }'::jsonb,
    'system', 'system'
),

-- Theme 3: Forest (nature green)
(
    gen_random_uuid()::text,
    'Forest',
    'forest',
    'Natural and earthy green theme — great for organic, food, and wellness stores.',
    TRUE, TRUE,
    '{
        "primaryColor":   "#16A34A",
        "primaryHover":   "#15803D",
        "accentColor":    "#CA8A04",
        "surfaceColor":   "#FFFFFF",
        "bgColor":        "#F0FDF4",
        "textColor":      "#052E16",
        "textMuted":      "#4B7A58",
        "borderColor":    "#BBF7D0",
        "successColor":   "#16A34A",
        "dangerColor":    "#DC2626",
        "fontFamily":     "Inter, system-ui, sans-serif",
        "borderRadiusSm": "8px",
        "borderRadiusMd": "14px",
        "borderRadiusLg": "22px"
    }'::jsonb,
    'system', 'system'
)

ON CONFLICT (slug) DO NOTHING;

COMMIT;
