| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <link rel="icon" type="image/svg+xml" href="/vite.svg" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Terax — Settings</title> | |
| <script> | |
| (function () { | |
| try { | |
| var t = localStorage.getItem("terax-ui-theme-shadow"); | |
| var resolved = | |
| t === "light" || t === "dark" | |
| ? t | |
| : window.matchMedia("(prefers-color-scheme: dark)").matches | |
| ? "dark" | |
| : "light"; | |
| document.documentElement.classList.add(resolved); | |
| document.documentElement.style.backgroundColor = | |
| resolved === "dark" ? "#0a0a0a" : "#ffffff"; | |
| } catch (e) {} | |
| })(); | |
| </script> | |
| </head> | |
| <body> | |
| <div id="settings-root"></div> | |
| <script type="module" src="/src/settings/main.tsx"></script> | |
| </body> | |
| </html> | |