-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>FACTORX</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<body>
<div class="content">
<h1 class="title">Theme & <span class="style-color">Style</span> Switcher</h1>
<div class="style-switcher">
<div class="toggle-style-switcher" id="toggle-style-switcher">
<i class="fa fa-cog fa-spin"></i>
</div>
<h5>Style Switcher</h5>
<ul>
<li><a href="#" id="style-pink" style="background-color: var(--color-pink);"></a></li>
<li><a href="#" id="style-blue" style="background-color: var(--color-blue);"></a></li>
<li><a href="#" id="style-orange" style="background-color: var(--color-orange);"></a></li>
<li><a href="#" id="style-yellow" style="background-color: var(--color-yellow);"></a></li>
<li><a href="#" id="style-green" style="background-color: var(--color-green);"></a></li>
</ul>
<h5>Theme</h5>
<button id="dark-mode-toggle"><i class="fa fa-adjust"></i> Theme</button>
</div>
</div>
</body>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>