/* Design tokens for the Dashboard PWA.
 *
 * Phase 2 (module split) carried these :root values over VERBATIM from the old single-file
 * index.html <style> block — palette, accent, radius, safe-area insets. Any palette / accent /
 * type-scale redesign is Phase 4/5, not here. */

:root {
  color-scheme: dark;
  --bg: #0f1115;
  --panel: #171a21;
  --panel-raised: #1d2129;
  --text: #e8eaed;
  --muted: #8b93a1;
  --accent: #4f8cff;
  --accent-text: #ffffff;
  --border: #262b35;
  --error-bg: #2a1416;
  --error-border: #7f342f;
  --error-text: #ff9a90;
  --radius: 12px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}
