-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (28 loc) · 935 Bytes
/
index.html
File metadata and controls
34 lines (28 loc) · 935 Bytes
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
33
34
<!doctype html>
<html lang="en">
<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" />
<title>renmuming.top</title>
<script>
;(function preventFouc() {
const STORAGE_KEY = 'rmm_app_theme'
const MEDIA_QUERY = '(prefers-color-scheme: dark)'
const savedTheme = localStorage.getItem(STORAGE_KEY)
const systemPrefersDark = window.matchMedia(MEDIA_QUERY).matches
const resolvedTheme =
savedTheme === 'system' || !savedTheme
? systemPrefersDark
? 'dark'
: 'light'
: savedTheme
document.documentElement.setAttribute('data-theme', resolvedTheme)
})()
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>