-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
43 lines (43 loc) · 1.95 KB
/
options.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/icons/logo.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chrome Extensioin + Vanilla + TS + Vite App - Options</title>
</head>
<body>
<div id="app">
<aside>
<div class="theme-icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-moon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-sun disabled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"></path>
<path d="M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7"></path>
</svg>
</div>
</aside>
<main>
<h1>Select available themes:</h1>
<div class="lists-wrapper">
<div class="themes-dark-wrapper">
<h2>Dark themes</h4>
<div class="themes-dark-list theme-list"></div>
</div>
<div class="themes-light-wrapper">
<h2>Light themes</h4>
<div class="themes-light-list theme-list"></div>
</div>
</div>
<h4>
All themes can be viewed here<a href="https://highlightjs.org/static/demo/">Highlight.js themes demo</a>
</h4>
</main>
</div>
<script type="module" src="/src/options/index.ts"></script>
</body>
</html>