summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop/index.html
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-10-17 15:22:08 -0500
committerAdam <[email protected]>2025-10-17 15:22:11 -0500
commit335d83365521728181248b13a55386a10ae41ef0 (patch)
tree2400f15608681c84777c3f9a897552cdbdc206a5 /packages/desktop/index.html
parent1dba01e0577eb2012e3b6fe99b3a171875c6dab8 (diff)
downloadopencode-335d83365521728181248b13a55386a10ae41ef0.tar.gz
opencode-335d83365521728181248b13a55386a10ae41ef0.zip
wip: desktop work
Diffstat (limited to 'packages/desktop/index.html')
-rw-r--r--packages/desktop/index.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/packages/desktop/index.html b/packages/desktop/index.html
index c6c543591..c591cb46c 100644
--- a/packages/desktop/index.html
+++ b/packages/desktop/index.html
@@ -1,5 +1,5 @@
<!doctype html>
-<html lang="en" class="h-full bg-background-weak">
+<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
@@ -7,15 +7,15 @@
<link rel="shortcut icon" type="image/ico" href="/src/assets/favicon.svg" />
<title>OpenCode</title>
</head>
- <body class="h-full overscroll-none select-none">
- <script>
- ;(function () {
- const savedTheme = localStorage.getItem("theme") || "opencode"
- const savedDarkMode = localStorage.getItem("darkMode") !== "false"
- document.documentElement.setAttribute("data-theme", savedTheme)
- document.documentElement.setAttribute("data-dark", savedDarkMode.toString())
- })()
- </script>
+ <body class="overscroll-none select-none text-12-regular">
+ <!-- <script> -->
+ <!-- ;(function () { -->
+ <!-- const savedTheme = localStorage.getItem("theme") || "opencode" -->
+ <!-- const savedDarkMode = localStorage.getItem("darkMode") !== "false" -->
+ <!-- document.documentElement.setAttribute("data-theme", savedTheme) -->
+ <!-- document.documentElement.setAttribute("data-dark", savedDarkMode.toString()) -->
+ <!-- })() -->
+ <!-- </script> -->
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="/src/index.tsx" type="module"></script>