index.html raw

   1  <!doctype html>
   2  <html lang="en">
   3  <head>
   4    <meta charset="utf-8">
   5    <title>Smesh Signer</title>
   6    <base href="/">
   7    <meta name="viewport" content="width=device-width, initial-scale=1">
   8    <style>
   9      /* Prevent white flash on load - default to dark, light theme overrides */
  10      html, body { background-color: #0a0a0a; }
  11      @media (prefers-color-scheme: light) {
  12        html, body { background-color: #ffffff; }
  13      }
  14    </style>
  15  <link rel="stylesheet" href="styles.css"></head>
  16  <body>
  17    <app-root></app-root>
  18  <script src="runtime.js" type="module"></script><script src="polyfills.js" type="module"></script><script src="scripts.js" defer></script><script src="main.js" type="module"></script></body>
  19  </html>
  20