29 lines
882 B
HTML
29 lines
882 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script>
|
|
(function() {
|
|
try {
|
|
const theme = localStorage.getItem('prefers-color-scheme');
|
|
document.documentElement.classList.remove('dark', 'light');
|
|
if (theme === 'dark' || theme === 'light') {
|
|
document.documentElement.classList.add(theme);
|
|
} else {
|
|
const systemTheme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
|
document.documentElement.classList.add(systemTheme);
|
|
}
|
|
} catch(e) {}
|
|
})();
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
|
|
</html>
|