/* Pre-boot splash — BranchPOS. Copied verbatim to assets/splash/splash.css.
   Plain CSS, not SCSS: assets are copied, not compiled.
   --splash-accent mirrors this brand's --c-primary-500.
   --splash-name shortens the ON-DEVICE app name (Branch App), so the splash
   matches the icon the user just tapped. Source of truth: android flavor `branchpos` app_name.
   Keep in step with it, NOT with AppBrandInfo (which uses longer strings). */
:root {
  --splash-name: "Branch App";
  --splash-accent: #2563EB;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --splash-accent: #3B82F6;
  }
}
html[data-theme="dark"] {
  --splash-accent: #3B82F6;
}
