-
-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathrandom.html
52 lines (42 loc) · 1.25 KB
/
random.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
44
45
46
47
48
49
50
51
52
<link rel="stylesheet" href="styles.css">
<form method="dialog">
<h1>Complex Gradients: Random</h1>
<hr />
<label>
<div class="row spread">
<span>Number of colors</span>
</div>
<input type="number" id="cg_count" min=2 max=100 value=5 step=1 />
</label>
<label>
<span>Luminosity</span>
<select id="cg_luminosity">
<option value="random">random</option>
<option value="light">light</option>
<option value="bright">bright</option>
<option value="dark">dark</option>
</select>
</label>
<label>
<span>Hue</span>
<select id="cg_hue">
<option value="random">random</option>
<option value="red">red</option>
<option value="orange">orange</option>
<option value="yellow">yellow</option>
<option value="green">green</option>
<option value="blue">blue</option>
<option value="purple">purple</option>
<option value="pink">pink</option>
<option value="monochrome">monochrome</option>
</select>
</label>
<label class="row">
<input type="checkbox" id="cg_alpha" />
<span>Randomize transparency</span>
</label>
<footer>
<button type="reset" uxp-variant="primary">Cancel</button>
<button type="submit" uxp-variant="cta">Apply</button>
</footer>
</form>