/**
 * EAFCC Theme Variables - Blue/Purple Color Scheme
 */
:root {
  --eafcc-primary-blue: #3b82f6;
  --eafcc-primary-purple: #8b5cf6;
  --eafcc-dark-blue: #1e3a8a;
  --eafcc-dark-purple: #4c1d95;
  --eafcc-near-black: #0f172a;
  --eafcc-dark-grey: #1e293b;
  --eafc-mid-grey: #334155;
  --eafc-light-grey: #475569;
  --eafc-border-grey: #334155;
  --eafc-text-white: #ffffff;
  --eafc-text-grey: #e2e8f0;
  --eafc-text-muted: #94a3b8;
  --eafc-accent: #60a5fa;
  --eafc-success: #10b981;
  --eafc-error: #ef4444;
}
body:not([data-theme="light"]) {
  --bg: var(--eafcc-near-black);
  --card: var(--eafcc-dark-grey);
  --card-bg: var(--eafcc-dark-grey);
  --text-primary: var(--eafc-text-white);
  --text-secondary: var(--eafc-text-grey);
  --border-color: var(--eafc-border-grey);
  --primary: var(--eafcc-primary-blue);
  --primary-600: var(--eafcc-primary-purple);
  --primary-color: var(--eafcc-primary-blue);
  --success-color: var(--eafc-success);
  --error-color: var(--eafc-error);
  --text: var(--eafc-text-white);
  --muted: var(--eafc-text-muted);
  --border: var(--eafc-border-grey);
  --accent: var(--eafc-accent);
}
