index.html 753 B

123456789101112131415161718192021
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <meta name="theme-color" content="#000000" />
  7. <link rel="shortcut icon" type="image/svg+xml" href="/favicon.svg" />
  8. <title>OpenCode</title>
  9. </head>
  10. <body class="antialiased overscroll-none select-none text-12-regular">
  11. <script>
  12. ;(function () {
  13. const savedTheme = localStorage.getItem("theme") || "oc-1"
  14. document.documentElement.setAttribute("data-theme", savedTheme)
  15. })()
  16. </script>
  17. <noscript>You need to enable JavaScript to run this app.</noscript>
  18. <div id="root"></div>
  19. <script src="/src/index.tsx" type="module"></script>
  20. </body>
  21. </html>