index.html 991 B

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