24 lines
619 B
HTML
24 lines
619 B
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<title>Shade Observer</title>
|
||
|
|
<style>
|
||
|
|
:root { color-scheme: dark; }
|
||
|
|
html, body { margin: 0; padding: 0; }
|
||
|
|
body {
|
||
|
|
background: #0a0a0a;
|
||
|
|
color: #e5e5e5;
|
||
|
|
font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
|
||
|
|
min-height: 100vh;
|
||
|
|
}
|
||
|
|
#root { min-height: 100vh; }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="root"></div>
|
||
|
|
<script type="module" src="/src/main.tsx"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|