-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolortheorist.html
72 lines (49 loc) · 2.88 KB
/
colortheorist.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width = device-width, initial-scale = 1">
<title>Colortheorist</title>
<meta name="description" content="One stop shop for quick color theoryy">
<meta name="author" content="Lavodan">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;500;800&family=Raleway:wght@100;500;900&family=Rubik:wght@300;500;800&display=swap>" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,800;0,900;1,900&family=Roboto:wght@100;300;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="stylesheet.css">
<script src="https://cdn.jsdelivr.net/npm/@jaames/iro@5"></script>
</head>
<!-- OWO -->
<body>
<div class="row">
<div class="text-center">
<button id="usgBtn" type="button active" class="topBtns">Usage</button>
<button id="theoBtn" type="button" class="topBtns">Theorize</button>
<button id="contactBtn" type="button" class="topBtns">Contact</button>
</div>
</div>
<div id="mainPickerElemenet" class="wrapper centerMe">
<svg id="svg1" width="400" height="650">
<rect id="rectangle" height="600" width="400" y="0" x="0" stroke="#000" fill="#444444"/>
</svg>
<div id="iconSelects">
<img id="iconSelect1" src="/resources/Monochrome.svg" width="60px" height="auto">
<img id="iconSelect2" src="/resources/Analog.svg" width="60px" height="auto">
<img id="iconSelect3" src="/resources/Complementary.svg" width="60px" height="auto">
<img id="iconSelect4" src="/resources/Tetradic.svg" width="60px" height="auto">
<img id="iconSelect5" src="/resources/Triadic.svg" width="60px" height="auto">
<img id="iconSelect6" src="/resources/Diadic.svg" width="60px" height="auto">
</div>
<span class="colorPickers" id="mono"></span>
<!--<span class="colorPickers" id="triad"></span>
<span class="colorPickers" id="complimentary"></span>
<span class="colorPickers" id="splitComplimentary"></span>-->
</div>
<!-- Scripts /-->
<script src="index.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js "integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
<script src="Colortheorist.js"></script>
</body>
</html>