-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script defer data-domain="rapidtone.netlify.app" src="https://plausible.io/js/plausible.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chroma-js/2.4.2/chroma.min.js"
integrity="sha512-zInFF17qBFVvvvFpIfeBzo7Tj7+rQxLeTJDmbxjBz5/zIr89YVbTNelNhdTT+/DCrxoVzBeUPVFJsczKbB7sew=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;800;900&display=swap" rel="stylesheet" />
<link href="main.css" rel="stylesheet" />
<title>Rapid Tone</title>
</head>
<body>
<div id="app">
<p class="color-name"></p>
<div id="color-comp"></div>
<div class="tooltip"></div>
<p onclick="copyToClipboard(id)" id="color-hex"></p>
<p onclick="copyToClipboard(id)" id="color-rgb"></p>
<footer>
Rapid Tone built by
<a href="https://johnrock.me/" target="_blank" rel="noopener">John Rock</a><br />Powered by
<a href="https://github.com/meodai/color-names" target="_blank" rel="noopener">color-names</a>
</footer>
</div>
<script src="app.js"></script>
</body>
</html>