30 lines
752 B
HTML
30 lines
752 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, interactive-widget=resizes-content"
|
|
/>
|
|
<title>Wakey Operator UI</title>
|
|
<script>
|
|
(function () {
|
|
try {
|
|
var t = localStorage.getItem("wakey-ui-theme");
|
|
if (
|
|
t === "dark" ||
|
|
((t === "system" || !t) &&
|
|
window.matchMedia("(prefers-color-scheme: dark)").matches)
|
|
) {
|
|
document.documentElement.classList.add("dark");
|
|
}
|
|
} catch (_) {}
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|