-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (46 loc) · 1.6 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Double Love</title>
<meta name="description" content="Double Love:让每个镜头都藏着我未说出口的帧率">
<!-- PWA primary color -->
<meta name="theme-color" content="#212121" media="(prefers-color-scheme: dark)">
<meta name="theme-color" content="#F1F1F1" media="(prefers-color-scheme: light)">
<!-- Icon for Safari -->
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<!-- Icons for different platforms -->
<link rel="icon" type="image/png" href="/Double-Love_96_any.png" sizes="96x96">
<link rel="icon" href="/favicon.ico" sizes="48x48">
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml">
<!-- Apple specific meta tags -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Double Love">
<style>
html {
background-color: #FFFFFF;
}
html.dark {
background-color: #212121;
}
html, body, #root {
min-height: 100%;
height: 100%;
}
body {
margin: 0;
}
</style>
<script>
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
document.documentElement.classList.add('dark');
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>