/*
 * The page colour, applied before the main CSS bundle arrives, so the first frame is the
 * app's background rather than the browser's default white.
 *
 * A separate stylesheet rather than an inline <style> block, for the same reason as
 * i18n-boot.js: inline styles require style-src 'unsafe-inline'. A <link> in <head> is
 * render-blocking, so it lands before the first paint just as the inline block did.
 *
 * Must match --bg in src/styles/tokens.css.
 */
html {
  background: #f7f5f0;
}
