-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.2 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Color Scheme Generator</title>
</head>
<body>
<main>
<h1>Color Scheme Generator</h1>
<form class="color-picker">
<input type="color" id="base-color" name="base-color" value="#ff0000">
<select id="scheme-type" name="scheme-type">
<option value="monochrome" selected>Monochrome</option>
<option value="monochrome-light">Monochrome-light</option>
<option value="monochrome-dark">Monochrome-dark</option>
<option value="complement">Complement</option>
<option value="analogic">Analogic</option>
<option value="analogic-complement">Analogic-complement</option>
<option value="triad">Triad</option>
</select>
</form>
<div class="color-scheme" id="color-scheme">
</div>
</main>
<div class="copied-message" id="copied-message">
<p>Color code copied to clipboard!</p>
</div>
<script src="main.js"></script>
</body>
</html>