-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (57 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<body>
<div
style="
width: 300px;
height: 200px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #000;
"
class="backgroundColor"
>
<h3 style="font-size: 25px; color: #fff; mix-blend-mode: difference">
Choose the color
</h3>
<button
style="
padding: 10px;
color: aliceblue;
background: #000;
border-radius: 20px;
cursor: pointer;
"
class="changeColorBtn"
>
Pick Color
</button>
<div
class="selectedColor"
style="display: flex; align-items: center; margin-top: 20px"
></div>
<span
class="colorGrid"
style="
display: inline-block;
width: 20px;
height: 20px;
border-radius: 2px;
"
></span>
<span></span>
<span
class="colorValue"
style="
margin-left: 5px;
font-weight: bold;
color: #fff;
mix-blend-mode: difference;
"
></span>
</div>
<script src="script.js"></script>
</body>
</html>