create-turbosvelte
Version:
This is an unofficial SvelteKit monorepo starter powered by Turborepo.
27 lines (26 loc) • 805 B
HTML
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Svelte demo app" />
<link rel="icon" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script>
// On page load or when changing themes, best to add inline in `head` to avoid FOUC
if (
localStorage.theme === 'dark' ||
(!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)
) {
document.documentElement.classList.add('dark');
} else {
document.documentElement.classList.remove('dark');
}
</script>
%svelte.head%
</head>
<body
class="font-body pt-1 bg-white text-black dark:bg-[#282C31] dark:text-gray-200 font-normal scroll-pt-40"
>
<div>%svelte.body%</div>
</body>
</html>