-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
30 lines (28 loc) · 963 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
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<script>
(function() {
try {
const savedTheme = localStorage.getItem('theme-preference')
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches
const hour = new Date().getHours()
const isNight = hour >= 18 || hour < 6
const shouldBeDark = savedTheme
? JSON.parse(savedTheme)
: prefersDark || isNight
if (shouldBeDark)
document.documentElement.classList.add('dark')
} catch (e) {}
})()
</script>
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>重庆邮电大学开源镜像站 | CQUPT OpenSource Mirror</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>