forked from elucidator-project/elucidator-blog-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (23 loc) · 832 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#347f76" />
<link rel="apple-touch-icon" href="/pwa-assets/192.png" />
<link rel="mask-icon" href="/pwa-assets/192.png" color="#347f76" />
<link href="https://fonts.googleapis.com/css2?family=Fira+Code&family=Inter:wght@200;400;600&display=swap"
rel="stylesheet" />
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script>
if (window.matchMedia("(prefers-color-scheme: dark)").matches)
document.documentElement.classList.add("dark")
else document.documentElement.classList.add("light")
</script>
</body>
</html>