/* Custom Theme Variables - Loaded from colors.json */

/* Light Theme Variables */
html[data-theme="light"] body {
    /* Text Colors */
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-tertiary: #9CA3AF;
    
    /* Background Colors */
    --background-primary: #F9FAFB;
    --background-secondary: #F3F4F6;
    --background-dots: #E5E7EB;
    --background-modal: rgba(255, 255, 255, 0.9);
    
    /* Border Colors */
    --border-primary: #D1D5DB;
    --border-secondary: #E5E7EB;
    
    /* Accent Colors */
    --accent-success: #059669;
    --accent-warning: #D97706;
    --accent-error: #DC2626;
}

/* Dark Theme Variables */
html[data-theme="dark"] body {
    /* Text Colors */
    --text-primary: #E5E7EB;
    --text-secondary: #9CA3AF;
    --text-tertiary: #6B7280;
    
    /* Background Colors */
    --background-primary: #000;
    --background-secondary: #1F2937;
    --background-dots: #1F2937;
    --background-modal: rgba(0, 0, 0, 0.8);
    
    /* Border Colors */
    --border-primary: #4B5563;
    --border-secondary: #374151;
    
    /* Accent Colors */
    --accent-success: #10B981;
    --accent-warning: #F59E0B;
    --accent-error: #EF4444;
}
