-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 1011 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 1011 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Source+Code+Pro&display=swap" rel="stylesheet" />
<link href="/favicon.png" rel="icon" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<title>Flix Playground</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script>
;(function () {
var stored = localStorage.getItem('theme')
var theme = stored || (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light')
document.documentElement.setAttribute('data-theme', theme)
document.documentElement.setAttribute('data-bs-theme', theme)
})()
</script>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>