/* ===
   TOKENS.CSS - CSS variables: warna, tema, spacing dasar === */

:root {
  /* Default Theme: Blue */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: rgba(37, 99, 235, 0.1);
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text: #1e293b;
  --text-secondary: #64748b;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --sidebar-width: 260px;
}

/* === THEME COLORS (4 Pilihan) === */
body[data-theme-color="green"] {
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: rgba(16, 185, 129, 0.1);
}

body[data-theme-color="purple"] {
  --primary: #8b5cf6;
  --primary-dark: #7c3aed;
  --primary-light: rgba(139, 92, 246, 0.1);
}

body[data-theme-color="orange"] {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: rgba(249, 115, 22, 0.1);
}

[data-theme="dark"] {
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #f87171;
  --bg: #0f172a;
  --card-bg: #1e293b;
  --text: #f1f5f9;
  --text-secondary: #94a3b8;
  --border: #334155;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body[data-theme-color="green"][data-theme="dark"] {
  --primary: #34d399;
  --primary-dark: #10b981;
}

body[data-theme-color="purple"][data-theme="dark"] {
  --primary: #a78bfa;
  --primary-dark: #8b5cf6;
}

body[data-theme-color="orange"][data-theme="dark"] {
  --primary: #fb923c;
  --primary-dark: #f97316;
}

