/* Pre-boot stylesheet — shown only for the ~100ms before the Flutter engine
   attaches. Colour values mirror the design tokens in lib/theme/colors.dart:
     --bg-light  = AppColors.lightBackground  (#FAFAF7)
     --bg-dark   = AppColors.darkBackground   (#141413)
     --accent    = AppColors.accent           (#1D9E75)
   After boot, Flutter paints everything; this file is never consulted again. */

:root {
  --bg-light: #FAFAF7;
  --bg-dark: #141413;
  --accent: #1D9E75;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg-light);
}

@media (prefers-color-scheme: dark) {
  html,
  body {
    background: var(--bg-dark);
  }
}
