-
Notifications
You must be signed in to change notification settings - Fork 34
/
index.html
45 lines (42 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-K47KGMZLE7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-K47KGMZLE7');
</script>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Use LCH color space to come up with predictable and accessible color palettes" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Huetone" />
<meta property="og:title" content="Huetone • Make colors accessible" />
<meta property="og:description"
content="Use LCH color space to come up with predictable and accessible color palettes" />
<meta property="og:url" content="https://huetone.ardov.me" />
<meta property="og:locale" content="en_EN" />
<meta property="og:image" content="/cover.png" />
<meta property="og:image:width" content="1280" />
<meta property="og:image:height" content="640" />
<meta property="twitter:title" content="Huetone • Make colors accessible">
<meta property="twitter:description"
content="Use LCH color space to come up with predictable and accessible color palettes">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="/cover.png">
<meta name="twitter:creator" content="@ardovalexey">
<link rel="manifest" href="/manifest.json" />
<title>Huetone</title>
</head>
<body>
<noscript>Enable JavaScript to make the magic happen ✨</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>