-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (79 loc) · 4.01 KB
/
index.html
File metadata and controls
100 lines (79 loc) · 4.01 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Colorplane - a color picker for humans</title>
<meta name="author" content="33cc77 - Daniel Zarick">
<meta name="description" content="Colorplane - a color picker for humans.">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Styles for the demo page. Remove this for your site. -->
<link href="//33cc77.com/tools/colorplane/css/colorplane-site-styles.css" media="all" rel="stylesheet" type="text/css" />
<!-- Colorplane requires jQuery. -->
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.min.js" type="text/javascript"></script>
<!-- Colorplane requires TinyColor. -->
<script src="//33cc77.com/tools/colorplane/js/tinycolor.js" type="text/javascript"></script>
<!-- These are the Javascript and CSS files for Colorplane. -->
<script src="//33cc77.com/tools/colorplane/js/colorplane.js" type="text/javascript"></script>
<!-- // <script src="js/colorplane.js" type="text/javascript"></script> -->
<link href="//33cc77.com/tools/colorplane/css/colorplane-styles.css" media="all" rel="stylesheet" type="text/css" />
<!-- Remove this. This is the analytics for the demo page -->
<script src="//33cc77.com/tools/colorplane/js/analytics.js" type="text/javascript"></script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="eight columns offset-by-four">
<div class="logo-colorplane">
<img src="//33cc77.com/tools/colorplane/img/colorplane-header.png" />
</div>
<p class="description center-align">
Most people can't grasp RGB, CMYK, & HEX.
This color picker is for them.
</p>
<p class="center-align">
<a href="https://github.com/33cc77/Colorplane/archive/master.zip" class="button red">Download Colorplane</a>
<a href="http://github.com/33cc77/colorplane" class="button blue">Colorplane on Github</a>
</p>
<hr />
<h3>Demo</h3>
<ul class="colorplane-hex">
<li>Selected: <span class="colorplane-hex-color" id="colorplane-selected-hex">pick one</span></li>
<li>Current: <span class="colorplane-hex-color" id="colorplane-current-hex">pick one</span></li>
<li>Current hue: <span class="colorplane-hex-color" id="colorplane-current-hue">pick one</span></li>
<li>Current saturation: <span class="colorplane-hex-color" id="colorplane-current-satur">pick one</span></li>
<li>Current lightness: <span class="colorplane-hex-color" id="colorplane-current-light">pick one</span></li>
</ul>
<div class="colorplane"></div>
<p class="center-align">
<strong>Dependencies:</strong><br />
<a href="http://jquery.com">jQuery</a><br />
<a href="http://bgrins.github.io/TinyColor/">TinyColor</a>
</p>
<hr />
<h3>Examples</h3>
<p>
<h5>OneShot</h5>
<p>Colorplane was adapted to iOS for OneShot, an app for highlighting screenshots of text and sharing them to Twitter. <a href="http://oneshot.link">(oneshot.link)</a></p>
<img src="//33cc77.com/tools/colorplane/img/colorplane-oneshot.gif" />
</p>
<div class="example">
<h5>Svbtle</h5>
<p>Writers on Svbtle choose a color to represent their profile. Colorplane helps them find just the right color. <a href="http://svbtle.com">(svbtle.com)</a></p>
<img src="//33cc77.com/tools/colorplane/img/colorplane-svbtle.png" />
</div>
<p>
<h5>Green Room</h5>
<p>Colorplane was created for Green Room, a private group chat tool we built to share with our friends. Instead of avatars, users and rooms are represented only by a color. <a href="http://green.33cc77.com">(green.33cc77.com)</a></p>
<img src="//33cc77.com/tools/colorplane/img/colorplane-greenroom.png" />
</p>
<hr />
<footer>
<p>Made by:</p>
<a class="logo-33cc77" href="http://33cc77.com">33cc77</a>
</footer>
</div>
</div>
</body>
</html>