reactemplate/index.html

22 lines
777 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>React TypeScript Vite Template</title>
</head>
<body class="dark:text-white dark:bg-hex-121212">
<div id="root"></div>
<script>
(function() {
const prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
const setting = localStorage.getItem('color-schema') || 'auto'
if (setting === 'dark' || (prefersDark && setting !== 'auto'))
document.documentElement.classList.toggle('dark', true)
})()
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>