-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
52 lines (46 loc) · 2.81 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
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="theme-color" content="#F13D52"/>
<!--<link rel="shortcut icon" type="image/ico" href="/src/assets/favicon.ico"/>-->
<!-- HTML Meta Tags -->
<title>Ambient - generate contrast-safe colors for UI/UX</title>
<meta name="description" content="Create color shades just from primary colors that are APCA contrast safe, all done without the thinking."/>
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Ambient - generate contrast-safe colors for UI/UX"/>
<meta itemprop="description" content="Create color shades just from primary colors that are APCA contrast safe, all done without the thinking."/>
<meta itemprop="image" content="https://i.ibb.co/023K2MR/web-thumbnail.png"/>
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://ambient-rvx.web.app"/>
<meta property="og:type" content="website"/>
<meta property="og:title" content="Ambient - generate contrast-safe colors for UI/UX"/>
<meta property="og:description" content="Create color shades just from primary colors that are APCA contrast safe, all done without the thinking."/>
<meta property="og:image" content="https://i.ibb.co/023K2MR/web-thumbnail.png"/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:title" content="Ambient - generate contrast-safe colors for UI/UX"/>
<meta name="twitter:description" content="Create color shades just from primary colors that are APCA contrast safe, all done without the thinking."/>
<meta name="twitter:image" content="https://i.ibb.co/023K2MR/web-thumbnail.png"/>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/fav.svg" color="#ff2d48">
<meta name="msapplication-TileColor" content="#1e1e1e">
<meta name="theme-color" content="#1e1e1e">
<!-- Font -->
<link rel="preload" href="src/assets/fonts/Hubot-Sans.woff2" as="font" type="font/woff2" crossorigin>
</head>
<body class="bg-am-pink">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script>
window.addEventListener("error", (event) => {
console.log(event);
});
</script>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>