app.html 607 Bytes
<!doctype html>
<html lang="es">
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1" />

		<!-- Theme initialization - ANTES de cargar CSS para evitar flash -->
		<script>
			(function() {
				const savedTheme = localStorage.getItem('theme');
				if (savedTheme === 'dark') {
					document.documentElement.classList.add('dark');
				}
				// Por defecto modo claro (no detectar sistema)
			})();
		</script>

		%sveltekit.head%
	</head>
	<body data-sveltekit-preload-data="hover">
		<div style="display: contents">%sveltekit.body%</div>
	</body>
</html>