-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
87 lines (80 loc) · 2.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="pt-br">
<head>
<script
src="https://kit.fontawesome.com/61001c87b9.js"
crossorigin="anonymous"
></script>
<link
href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic"
rel="stylesheet"
/>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RGB Generator</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<div class="container">
<header>
<h1>RGB Generator</h1>
</header>
<div id="clock-area">
<p>
<i class="fa fa-eye-dropper"></i>
<span id="date-hour">12/01/2021 - 23:12</span>
</p>
</div>
<div id="rgb-container">
<div id="controllers">
<div id="red-controller" class="controller">
<input
type="range"
name="red"
class="red"
step="1"
min="0"
max="255"
/>
</div>
<div id="green-controller" class="controller">
<input
type="range"
name="green"
class="green"
step="1"
min="0"
max="255"
/>
</div>
<div id="blue-controller" class="controller">
<input
type="range"
name="blue"
class="blue"
step="1"
min="0"
max="255"
/>
</div>
</div>
<div id="circle-color">
<div id="circle"></div>
</div>
<div id="color-output">
<p>RGB(0,0,0)</p>
</div>
</div>
</div>
<footer>
<p>
Made with ♥ by
<a target="_blank" href="https://github.com/matheus-lincon/"
>Matheus Lincon</a
>
</p>
</footer>
<script src="./js/main.js"></script>
</body>
</html>