mirror of
https://github.com/colanode/colanode.git
synced 2026-02-24 11:59:53 +01:00
37 lines
890 B
HTML
37 lines
890 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta name="description" content="Colanode" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<title>Colanode</title>
|
|
|
|
<style>
|
|
:root {
|
|
--background: oklch(1 0 0);
|
|
--foreground: oklch(0.145 0 0);
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background: oklch(0.145 0 0);
|
|
--foreground: oklch(0.985 0 0);
|
|
}
|
|
}
|
|
|
|
body,
|
|
html {
|
|
background-color: var(--background);
|
|
color: var(--foreground);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|