27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<meta name="color-scheme" content="dark" />
|
||
|
|
<link
|
||
|
|
rel="icon"
|
||
|
|
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect width='16' height='16' fill='%230a0e0b'/><rect x='3' y='7' width='10' height='6' fill='%234af626'/><rect x='3' y='3' width='10' height='2' fill='%234af626'/></svg>"
|
||
|
|
/>
|
||
|
|
<title>LP TERMINAL</title>
|
||
|
|
<script>
|
||
|
|
// apply the saved theme before first paint (no flash). ?theme= is a
|
||
|
|
// view-only override (screenshots/sharing) — it is not persisted.
|
||
|
|
try {
|
||
|
|
var m = location.search.match(/[?&]theme=(\w+)/)
|
||
|
|
var t = (m && m[1]) || localStorage.getItem('up33.theme.v1')
|
||
|
|
if (/^(mono|phosphor|amber|ice|violet)$/.test(t)) document.documentElement.dataset.theme = t
|
||
|
|
} catch (e) {}
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="root"></div>
|
||
|
|
<script type="module" src="/src/main.tsx"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|