-
Notifications
You must be signed in to change notification settings - Fork 3
/
pantone-spring-2014-colortable.html
112 lines (108 loc) · 2.71 KB
/
pantone-spring-2014-colortable.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
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
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pantone Spring 2014 Color table</title>
<script>WebFontConfig = { google: { families: [ 'Cuprum::latin' ] } }; (function() { var wf = document.createElement('script'); wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js'; wf.type = 'text/javascript'; wf.async = 'true'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wf, s); })();</script>
<!-- <link href='http://fonts.googleapis.com/css?family=Cuprum:700' rel='stylesheet' type='text/css'> -->
<link rel="stylesheet" href="../assets/css/pantone2014spring.css">
</head>
<body>
<header>
<h1>Pantone Fashion Colors</h1>
<p>Spring 2014</p>
</header>
<table>
<col />
<col />
<col />
<thead>
<tr>
<th scope="col">Pantone Color</th>
<th scope="col">CMYK</th>
<th scope="col">HEX</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">15-3920 Placid Blue</th>
<td>47.17.2.0</td>
<td>#87d4fa</td>
</tr>
<tr>
<th scope="row">16-3823 Violet Tulip</th>
<td>44.39.0.0</td>
<td>#8f9cff</td>
</tr>
<tr>
<th scope="row">15-6114 Hemlock</th>
<td>39.4.35.0</td>
<td>#9cf5a6</td>
</tr>
<tr>
<th scope="row">16-0000 Paloma</th>
<td>35.24.27.0</td>
<td>#a6c2ba</td>
</tr>
<tr>
<th scope="row">15-1225 Sand</th>
<td>20.27.48.0</td>
<td>#ccba85</td>
</tr>
<tr>
<th scope="row">14-0852 Freesia</th>
<td>0.14.100.0</td>
<td>#ffdb00</td>
</tr>
<tr>
<th scope="row">18-1651 Cayenne</th>
<td>6.74.56.0</td>
<td>#f04270</td>
</tr>
<tr>
<th scope="row">17-1360 Celosia Orange</th>
<td>0.63.80.0</td>
<td>#ff5e33</td>
</tr>
<tr>
<th scope="row">18-3224 Radiant Orchid</th>
<td>32.65.0.0</td>
<td>#ad59ff</td>
</tr>
<tr>
<th scope="row">18-3949 Dazzling Blue</th>
<td>92.57.0.0</td>
<td>#146eff</td>
</tr>
<tr>
<th scope="row">18-3718 Purple Haze</th>
<td>56.51.15.0</td>
<td>#707dd9</td>
</tr>
<tr>
<th scope="row">18-6216 Comfrey</th>
<td>74.28.63.10</td>
<td>#3ca555</td>
</tr>
<tr>
<th scope="row">19-2428 Magenta Purple</th>
<td>51.94.24.24</td>
<td>#752563</td>
</tr>
</tbody>
<tfoot>
<tr>
<td><a href="http://codepen.io/atelierbram/pen/hdbjc">on CodePen</a></td>
<td></td>
<td></td>
</tr>
</tfoot>
</table>
<footer>
<ul>
<li><a href="http://www.pantone.com/downloads/support/FCR/PANTONE_FCR_Spring_2014.pdf">Fashion Color Report 2014 (PDF direct link)</a></li>
<li><a href="http://web.forret.com/tools/color.asp">CMYK to RGB converter</a></li>
</ul>
</footer>
</body>
</html>