29 lines
852 B
HTML
29 lines
852 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Quippy</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
let theme = 'light';
|
|
if(window.matchMedia('(prefers-color-scheme: dark)').matches){
|
|
theme = 'dark';
|
|
}
|
|
document.body.classList.add(theme);
|
|
|
|
//Force light theme when printing. Then set it back after
|
|
window.addEventListener('beforeprint', () => {
|
|
document.body.classList.replace(theme, "light");
|
|
})
|
|
window.addEventListener('afterprint', ()=>{
|
|
document.body.classList.replace("light", theme);
|
|
})
|
|
</script>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|