forked from vishwajeeta/Light-Shield
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
41 lines (33 loc) · 970 Bytes
/
popup.html
File metadata and controls
41 lines (33 loc) · 970 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="header">
<span>Soft Dim</span>
<label class="switch">
<input type="checkbox" id="toggle">
<span class="slider"></span>
</label>
</div>
<div class="settings-toggle" id="settingsBtn">
<span class="gear">⚙</span> Advanced Settings
</div>
<div class="settings" id="settingsPanel">
<div class="label-row">
<label>Opacity</label>
<span id="opacityValue">30%</span>
</div>
<input type="range" min="0.1" max="0.6" step="0.05" id="opacity">
<label>Color</label>
<select id="color">
<option value="black">Soft Black</option>
<option value="#2b2b2b">Dark Gray</option>
<option value="#f5f1e8">Paper Tone</option>
<option value="#3b2f2f">Warm Amber</option>
</select>
</div>
<script src="popup.js"></script>
</body>
</html>