/**
 * ru7.one — light theme CSS variables (static, loads before page styles).
 * Dark tokens stay in each page's [data-theme="dark"] block.
 * theme.js adds component overrides + toggle UI.
 */
[data-theme="light"] {
  --bg: #f9f9f9;
  --bg2: #eff2f5;
  --surface: #ffffff;
  --surface2: #f5f5f5;
  --border: #dfdfdf;
  --border2: #c4c8ce;
  --mint: #14b8a6;
  --mint-dim: rgba(20, 184, 166, 0.10);
  --pink: #db2777;
  --pink-dim: rgba(219, 39, 119, 0.08);
  --rose: #be185d;
  --orange: #ea580c;
  --text: #1a1a1a;
  --text2: #525866;
  --text3: #9aa0aa;
  --white: #0b0e11;
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.08);
  --green-bg: rgba(34, 197, 94, 0.12);
  --red: #ef4444;
  --red-dim: rgba(239, 68, 68, 0.08);
  --red-bg: rgba(239, 68, 68, 0.12);
  --yellow: #eab308;
  --r: 6px;
  --r2: 10px;
  /* changelog.html aliases */
  --bg-elevated: #ffffff;
  --accent: #14b8a6;
  --accent-dim: rgba(20, 184, 166, 0.10);
  --radius: 6px;
  color-scheme: light;
}

[data-theme="light"] body {
  background: var(--bg);
  color: var(--text);
}
