-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.8 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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<meta name = "viewport" content = "width=device-width, initial-scale=1">
<title>Color Scheme Generator</title>
<meta property = "og:title" content = "Color Scheme Generator">
<meta property = "og:description" content = "A simple color scheme generator webapp">
<link rel = "icon" href = "./images/favicon.png">
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.1.0/modern-normalize.min.css">
<link rel = "stylesheet" href = "style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap"
rel="stylesheet">
</head>
<body>
<div class = container>
<header>
<input type = "color" class = "eye-dropper" id = "eye-dropper">
<select id = "mode" class = "mode">
<option value = "monochrome">Monochrome</option>
<option value = "monochrome-dark">Monochrome-Dark</option>
<option value = "monochrome-light">Monochrome-Light</option>
<option value = "analogic">Analogic</option>
<option value = "complement">Complement</option>
<option value = "analogic-complement">Analogic-Complement</option>
<option value = "triad">Triad</option>
<option value = "quad">Quad</option>
</select>
<button id = "get-color" class = "get-color relative">Get color scheme</button>
</header>
<main>
</main>
<footer>
</footer>
</div>
<script type = "text/javascript" src = "./index.js"></script>
</body>
</html>