/**
 * Basecoat UI / Shadcn CSS Variables
 * Темна палітра для WordPress
 * 
 * ВАЖЛИВО: Всі змінні мають бути в форматі HSL БЕЗ обгортки hsl()
 * Формат: --primary: 217.2 91.2% 59.8%; (НЕ --primary: #795bda;)
 * Використання: color: hsl(var(--primary));
 */

:root {
    /* HSL значення БЕЗ hsl() обгортки */
    --background: 0 0% 3.9%;
    --foreground: 0 0% 98%;
    --card: 0 0% 3.9%;
    --card-foreground: 0 0% 98%;
    --popover: 0 0% 3.9%;
    --popover-foreground: 0 0% 98%;
    --primary: 217.2 91.2% 59.8%;
    --primary-foreground: 0 0% 98%;
    --secondary: 0 0% 14.9%;
    --secondary-foreground: 0 0% 98%;
    --muted: 0 0% 14.9%;
    --muted-foreground: 0 0% 63.9%;
    --accent: 0 0% 14.9%;
    --accent-foreground: 0 0% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 14.9%;
    --input: 0 0% 14.9%;
    --ring: 217.2 91.2% 59.8%;
    --radius: 0.5rem;
}

body.dark {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
}
