-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnewtab.html
47 lines (41 loc) · 1.74 KB
/
newtab.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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>New Tab</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="format-detection" content="telephone=no">
<meta name="referrer" content="no-referrer">
<link href="style.css" rel="stylesheet" />
<script src="ntc.js"></script>
<script src="util.js"></script>
<script src="newtab.js"></script>
</head>
<body>
<div class="container">
<div class="picker">
<input class="hue" type="range" min="0" max="360" step="1" value="180" />
<input type="number" class="output" min="0" max="360" value="180" />
<input class="saturation" type="range" min="0" max="100" step="1" value="100" />
<input type="number" class="output" min="0" max="100" value="100" />
<input class="lightness" type="range" min="0" max="100" step="1" value="50" />
<input type="number" class="output" min="0" max="100" value="50" />
</div>
<div class="colors-container">
<div class="main-color color" class="light">
<div class="inner-color">
<input type="text" class="main-color-hex editable" spellcheck="false" autocomplete="off" />
<span class="main-color-name"></span>
</div>
</div>
<div class="scheme">
<div id="complementary" class="color"></div>
<div id="triadic-1" class="color"></div>
<div id="triadic-2" class="color"></div>
</div>
</div>
</div>
<button class="random clickable">Random</button>
<a class="settings" href="options.html" target="_blank">Settings</a>
</body>
</html>