/* Item icon font (item name -> pictogram), reused as-is from the
   original - see src/itemIcons.ts for the key->codepoint map. */
@font-face {
  font-family: "Items";
  src: url("/fonts/Items.ttf") format("truetype");
  font-display: swap;
}

/* Paint the app background before the bundle loads so launching the
   installed app never flashes white (or white-on-dark). */
html {
  background: #fdfdfe;
}

@media (prefers-color-scheme: dark) {
  html {
    background: #131929;
  }
}
