forked from lawlesscreation/hex-color-visualiser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·58 lines (52 loc) · 2.12 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML Hex color visualiser</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css" />
<link rel="stylesheet" href="styles.css" />
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container">
<div class="navbar-header">
<h1 class="navbar-brand">HTML Hex color visualiser</h1>
</div>
</div>
</nav>
<div class="container">
<p>A quick and dirty tool for visualising and comparing hex colors. Useful in combination with something like <a href="https://www.npmjs.com/package/parker">Parker</a> for comparing all colours within your CSS.</p>
<div class="form-group">
<label for="textarea">Hex codes</label>
<textarea class="form-control" id="textarea" rows="10">
#FFFF00
#000000
#C0C0C0
#F5F5F5
#039DFF
#FFFFFF
#909495
#F9FBFA
#A11360
#EEEEEE
#D9EDF7
#BCE8F1
#2A627D
</textarea>
</div>
<button class="btn btn-primary">Show me…</button>
</div>
<ul class="tiles"></ul>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="scripts.js"></script>
</body>
</html>