/*
 * themes.css
 *
 * Contains CSS variables for the dark theme.
 * This provides centralized color management for the entire site.
 */

:root {
  /* Dark Theme Colors */
  --primary-color: #3b82f6;
  --primary-hover: #2563eb;
  --secondary-color: #9ca3af;
  --accent-color: #06b6d4;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;
  --border-color: #475569;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3);
}
