Files
profilarr/src/app.html
2025-10-19 22:56:05 +10:30

21 lines
610 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Prevent theme flash by setting theme immediately -->
<script>
(function () {
const stored = localStorage.getItem('theme');
const theme =
stored || (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
document.documentElement.classList.add(theme);
})();
</script>
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>