-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
48 lines (41 loc) · 1.44 KB
/
Copy pathoptions.html
File metadata and controls
48 lines (41 loc) · 1.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="options.css">
<title>Custom Theme Editor</title>
</head>
<body>
<h1>Custom Theme Editor</h1>
<section class="content">
<div>
<label for="primaryBackground">Primary Background Color:</label>
<input type="color" id="primaryBackground" class="colorPicker">
</div>
<div>
<label for="secondaryBackground">Secondary Background Color:</label>
<input type="color" id="secondaryBackground" class="colorPicker">
</div>
<div>
<label for="contrastBackground">Contrast Background Color:</label>
<input type="color" id="contrastBackground" class="colorPicker">
</div>
<div>
<label for="textColor">Text Color:</label>
<input type="color" id="textColor" class="colorPicker">
</div>
<div>
<label for="highlightColor">Highlight Color:</label>
<input type="color" id="highlightColor" class="colorPicker">
</div>
<div class="toggle-box">
<button class="button" id="saveButton">Save</button>
</div>
<div class="info" id="saved" style="display: none">
Theme has been saved, don't forget to select 'custom' in the menu.
</div>
</section>
<script src="options.js"></script>
</body>
</html>