-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
27 lines (26 loc) · 923 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
27
<!doctype html>
<html lang="en" style="color-scheme: light;">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#FFFFFF" />
<!-- google search console - url prefix -->
<meta name="google-site-verification" content="pZC7XQV3JTevyp5wlNCHVy7zEa1QyXkAxp58tAmFmrU" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
try {
if (
localStorage.theme === 'dark' ||
((!('theme' in localStorage) || localStorage.theme === 'system') &&
window.matchMedia('(prefers-color-scheme: dark)').matches)
) {
document.querySelector('meta[name="theme-color"]').setAttribute('content', '#000000');
}
} catch (_) {}
</script>
</body>
</html>