-
Notifications
You must be signed in to change notification settings - Fork 3
/
pantone-spring-2016-colortable.html
96 lines (93 loc) · 2.46 KB
/
pantone-spring-2016-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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pantone Spring 2016 Color table</title>
<!-- <link href='http://fonts.googleapis.com/css?family=Cuprum:700' rel='stylesheet' type='text/css'> -->
<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 rel="stylesheet" href="../assets/css/pantone2016spring.css">
</head>
<body>
<header>
<h1>Pantone Fashion Colors</h1>
<p>Spring 2016</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">13-1520 Rose Quartz</th>
<td>0.24.15.0</td>
<td>#f7cac9</td>
</tr>
<tr>
<th scope="row">16-1548 Peach Echo</th>
<td>0.65.53.0</td>
<td>#f7786b</td>
</tr>
<tr>
<th scope="row">15-3919 Serenity</th>
<td>42.24.3.0</td>
<td>#91A8d0</td>
</tr>
<tr>
<th scope="row">19-4049 Snorkel Blue</th>
<td>100.49.7.13</td>
<td>#034f84</td>
</tr>
<tr>
<th scope="row">12-0752 Buttercup</th>
<td>2.3.91.0</td>
<td>#fae03c</td>
</tr>
<tr>
<th scope="row">13-4810 Limpet Shell</th>
<td>34.0.18.0</td>
<td>#98ddde</td>
</tr>
<tr>
<th scope="row">16-3905 Lilac Gray</th>
<td>37.31.22.11</td>
<td>#9896a4</td>
</tr>
<tr>
<th scope="row">17-1564 Fiesta</th>
<td>2.85.89.0</td>
<td>#dd4132</td>
</tr>
<tr>
<th scope="row">15-1040 Iced Coffee</th>
<td>21.36.57.18</td>
<td>#b18f6a</td>
</tr>
<tr>
<th scope="row">15-0146 Green Flash</th>
<td>49.0.83.0</td>
<td>#79c753</td>
</tr>
</tbody>
<tfoot>
<tr>
<td><a href="http://codepen.io/atelierbram/pen/RWrNgR">on CodePen</a></td>
<td></td>
<td></td>
</tr>
</tfoot>
</table>
<footer>
<ul>
<li><a href="http://www.pantone.com/pages/fcr/?season=spring&year=2016">PANTONE® FASHION COLOR REPORT SPRING 2016</a></li>
<li><a href="http://www.pantone.com/downloads/support/FCR/PANTONE-Fashion-Color-Report-Spring-2016.pdf">Fashion Color Report 2016 (PDF direct link)</a></li>
</ul>
</footer>
</body>
</html>