/* Indigo (default) */
[data-theme="indigo"] {
  --bg: #0d0d0d;
  --surface: #161616;
  --surface2: #1e1e1e;
  --border: #2a2a2a;
  --text: #e8e8e8;
  --text-muted: #888;
  --accent: #6366f1;
  --accent2: #22d3ee;
}

/* Cyan */
[data-theme="cyan"] {
  --bg: #0a0f14;
  --surface: #111820;
  --surface2: #1a2230;
  --border: #243044;
  --text: #e0eaf5;
  --text-muted: #7a95b0;
  --accent: #06b6d4;
  --accent2: #6366f1;
}

/* Amber */
[data-theme="amber"] {
  --bg: #0f0d08;
  --surface: #181510;
  --surface2: #221e14;
  --border: #342e20;
  --text: #f5ead8;
  --text-muted: #8c7a5a;
  --accent: #f59e0b;
  --accent2: #ef4444;
}

/* Rose */
[data-theme="rose"] {
  --bg: #0f0a10;
  --surface: #18121a;
  --surface2: #221828;
  --border: #322040;
  --text: #f5e0f0;
  --text-muted: #9070a0;
  --accent: #ec4899;
  --accent2: #a78bfa;
}

/* Light */
[data-theme="light"] {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface2: #f1f5f9;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --accent: #6366f1;
  --accent2: #06b6d4;
}

[data-theme="light"] body { color-scheme: light; }
[data-theme="light"] input,
[data-theme="light"] textarea,
[data-theme="light"] select {
  background: #ffffff;
  color: #0f172a;
}
[data-theme="light"] .dropdown-menu,
[data-theme="light"] .context-menu,
[data-theme="light"] .modal {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
