-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (70 loc) · 3.06 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,[email protected],100..700,0..1,-50..200">
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/styles.css">
<title>Generate Colors!</title>
</head>
<body id="bodyId">
<header id="headerId">
<h1 id="mainTitle">Theme mode switcher | Random color code generator</h1>
<ul class="linksList">
<li class="linkItem">
<a class="link" href="https://github.com/bit-rec98/Theme_Mode_Switcher.git" target="_blank">Code</a>
</li>
<li class="linkItem">
<a class="link" href="https://github.com/bit-rec98" target="_blank">Github</a>
</li>
</ul>
</header>
<main>
<div class="switcher">
<h2>Choose mode:</h2>
<button class="material-symbols-sharp" id="togglerBtnDm">
toggle_on
</button>
<button class="material-symbols-sharp" id="togglerBtnLm">
toggle_off
</button>
</div>
<div class="colorPicker">
<div class="solidPicker">
<label for="solidColorPicker">Pick your solid color here:</label>
<div class="inputPicker">
<button class="material-symbols-sharp" id="solidPaletteBtn">
palette
</button>
<input type="text" value="" id="solidColorPicker" placeholder="#hexCode">
<button class="material-symbols-sharp copyBtn" id="copySolidColorBtn">
content_copy
</button>
</div>
</div>
<div class="gradientPicker">
<label for="gradientColorPicker">Pick your colors for gradient combinations here:</label>
<div class="inputPicker">
<button class="material-symbols-sharp" id="gradientPaletteBtn">
palette
</button>
<input type="text" value="" id="gradientColorPicker" placeholder="#hexCode">
<button class="material-symbols-sharp copyBtn" id="copyGradientColorsBtn">
content_copy
</button>
</div>
</div>
</div>
</main>
<footer id="footerId">
<h3 id="footerTitle">Cristian Recabarren - Front End Web Developer</h3>
<ul class="linksList footerLinks">
<li class="linkItem"><a class="link" href="https://www.linkedin.com/in/rec-cristian98/" target="_blank">LinkedIn</a></li>
<li class="linkItem"><a class="link" href="#" target="_blank">Portfolio</a></li>
</ul>
</footer>
<script type="module" src="js/main.js" ></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</body>
</html>