blind_chat / src /app.html
JoFrost
update to current version
5528541
raw history blame
No virus
722 Bytes
<!DOCTYPE html>
<html lang="en" class="h-full">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta property="og:image" content="/chatui/thumbnail.jpg" />
<script>
if (
localStorage.theme === "dark" ||
(!("theme" in localStorage) && window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
document.documentElement.classList.add("dark");
}
</script>
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover" class="h-full dark:bg-gray-900">
<div id="app" class="contents h-full">%sveltekit.body%</div>
</body>
</html>