index.html 937 B

1234567891011121314151617181920212223
  1. <!doctype html>
  2. <html lang="en" class="h-full bg-background-weak">
  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/ico" href="/src/assets/favicon.svg" />
  8. <title>OpenCode</title>
  9. </head>
  10. <body class="h-full overscroll-none select-none">
  11. <script>
  12. ;(function () {
  13. const savedTheme = localStorage.getItem("theme") || "opencode"
  14. const savedDarkMode = localStorage.getItem("darkMode") !== "false"
  15. document.documentElement.setAttribute("data-theme", savedTheme)
  16. document.documentElement.setAttribute("data-dark", savedDarkMode.toString())
  17. })()
  18. </script>
  19. <noscript>You need to enable JavaScript to run this app.</noscript>
  20. <div id="root"></div>
  21. <script src="/src/index.tsx" type="module"></script>
  22. </body>
  23. </html>