-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.html
37 lines (37 loc) · 1.38 KB
/
sidebar.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Color Extractor</title>
<link rel="stylesheet" href="sidebar.css">
</head>
<body>
<div id="sidebar-content">
<div class="button-container">
<button id="refreshButton" class="icon-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="28" height="28" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M23 4v6h-6"></path>
<path d="M1 20v-6h6"></path>
<path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"></path>
</svg>
</button>
<button id="closeButton" class="icon-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="28" height="28" fill="#D3D3D3">
<path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/>
</svg>
</button>
</div>
<div class="tab">
<button class="tablinks active" id="colorTab">Colors</button>
<button class="tablinks" id="gradientTab">Gradients</button>
</div>
<div id="Colors" class="tabcontent" style="display: block;">
<div id="colorGrid"></div>
</div>
<div id="Gradients" class="tabcontent">
<ul id="gradientList"></ul>
</div>
</div>
<script src="sidebar.js"></script>
</body>
</html>