File size: 1,251 Bytes
c09f67c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Workbench</title>
<!-- Prevent flash of wrong theme by setting dark class immediately -->
<script>
(() => {
var stored = localStorage.getItem('workbench:theme');
var isDark = stored ? stored === 'dark' : window.matchMedia('(prefers-color-scheme: dark)').matches;
if (isDark) document.documentElement.classList.add('dark');
})();
</script>
<style>
/* Prevent flash - set background immediately */
html { background-color: hsl(0 0% 98%); }
html.dark { background-color: hsl(0 0% 4%); }
</style>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500&family=Hedvig+Letters+Serif:opsz@12..24&family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600&family=Playfair+Display:wght@400;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="./main.tsx"></script>
</body>
</html>
|