-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.23 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.23 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CityBikes</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="manifest" href="/manifest.json" />
<meta id="themeColor" name="theme-color" content="var(--background)" />
<script type="text/javascript">
// quick hack to avoid theme to flicker
const [t, bg, fg] = (localStorage.getItem('theme') ?? 'citybikes').split(';');
bg ? document.documentElement.style.setProperty('--background', bg):null
fg ? document.documentElement.style.setProperty('--text-main', fg):null
t ? document.documentElement.classList.add(t):null
bg ? themeColor.content=bg:null
// Disable annoying install prompt from browsers
window.addEventListener("beforeinstallprompt", (event) => {
event.preventDefault()
})
window.addEventListener('DOMContentLoaded', () => {
themeColor.content = window.getComputedStyle(document.documentElement).getPropertyValue('--background')
})
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>