File size: 656 Bytes
78aed5c
9f5dff0
78aed5c
 
 
9f5dff0
5bc9ce5
78aed5c
 
9f5dff0
 
78aed5c
814b52d
c6866f1
 
 
 
98051f8
ca85946
814b52d
78aed5c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en" class="h-full">
	<head>
		<meta charset="utf-8" />
		<link rel="icon" href="%sveltekit.assets%/favicon.png" />
		<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
		<title>HuggingChat</title>
		%sveltekit.head%
	</head>
	<body data-sveltekit-preload-data="hover" class="dark:bg-gray-900 h-full">
		<div class="contents h-full">%sveltekit.body%</div>
	</body>
	<script>
		if (
			localStorage.theme === "dark" ||
			(!("theme" in localStorage) && window.matchMedia("(prefers-color-scheme: dark)").matches)
		) {
			document.documentElement.classList.add("dark");
		}
	</script>
</html>