296 |
aurelien |
1 |
<?php
|
|
|
2 |
//============================================================+
|
|
|
3 |
// File name : htmlcolors.php
|
|
|
4 |
// Version : 1.0.008
|
|
|
5 |
// Begin : 2002-04-09
|
|
|
6 |
// Last Update : 2010-11-11
|
|
|
7 |
// Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
|
|
8 |
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
|
|
|
9 |
// -------------------------------------------------------------------
|
|
|
10 |
// Copyright (C) 2002-2010 Nicola Asuni - Tecnick.com S.r.l.
|
|
|
11 |
//
|
|
|
12 |
// This file is part of TCPDF software library.
|
|
|
13 |
//
|
|
|
14 |
// TCPDF is free software: you can redistribute it and/or modify it
|
|
|
15 |
// under the terms of the GNU Lesser General Public License as
|
|
|
16 |
// published by the Free Software Foundation, either version 3 of the
|
|
|
17 |
// License, or (at your option) any later version.
|
|
|
18 |
//
|
|
|
19 |
// TCPDF is distributed in the hope that it will be useful, but
|
|
|
20 |
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
21 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
22 |
// See the GNU Lesser General Public License for more details.
|
|
|
23 |
//
|
|
|
24 |
// You should have received a copy of the GNU Lesser General Public License
|
|
|
25 |
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>.
|
|
|
26 |
//
|
|
|
27 |
// See LICENSE.TXT file for more information.
|
|
|
28 |
// -------------------------------------------------------------------
|
|
|
29 |
//
|
|
|
30 |
// Description : Array of WEB safe colors
|
|
|
31 |
//
|
|
|
32 |
//============================================================+
|
|
|
33 |
|
|
|
34 |
/**
|
|
|
35 |
* Array of WEB safe colors
|
|
|
36 |
* @author Nicola Asuni
|
|
|
37 |
* @copyright 2002-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
|
|
38 |
* @package com.tecnick.tcpdf
|
|
|
39 |
* @link http://www.tcpdf.org
|
|
|
40 |
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
|
|
41 |
* @since 2.9.000 (2008-03-26)
|
|
|
42 |
*/
|
|
|
43 |
|
|
|
44 |
/**
|
|
|
45 |
* Array of WEB safe colors
|
|
|
46 |
*/
|
|
|
47 |
$webcolor = array (
|
|
|
48 |
'aliceblue' => 'f0f8ff',
|
|
|
49 |
'antiquewhite' => 'faebd7',
|
|
|
50 |
'aqua' => '00ffff',
|
|
|
51 |
'aquamarine' => '7fffd4',
|
|
|
52 |
'azure' => 'f0ffff',
|
|
|
53 |
'beige' => 'f5f5dc',
|
|
|
54 |
'bisque' => 'ffe4c4',
|
|
|
55 |
'black' => '000000',
|
|
|
56 |
'blanchedalmond' => 'ffebcd',
|
|
|
57 |
'blue' => '0000ff',
|
|
|
58 |
'blueviolet' => '8a2be2',
|
|
|
59 |
'brown' => 'a52a2a',
|
|
|
60 |
'burlywood' => 'deb887',
|
|
|
61 |
'cadetblue' => '5f9ea0',
|
|
|
62 |
'chartreuse' => '7fff00',
|
|
|
63 |
'chocolate' => 'd2691e',
|
|
|
64 |
'coral' => 'ff7f50',
|
|
|
65 |
'cornflowerblue' => '6495ed',
|
|
|
66 |
'cornsilk' => 'fff8dc',
|
|
|
67 |
'crimson' => 'dc143c',
|
|
|
68 |
'cyan' => '00ffff',
|
|
|
69 |
'darkblue' => '00008b',
|
|
|
70 |
'darkcyan' => '008b8b',
|
|
|
71 |
'darkgoldenrod' => 'b8860b',
|
|
|
72 |
'dkgray' => 'a9a9a9',
|
|
|
73 |
'darkgray' => 'a9a9a9',
|
|
|
74 |
'darkgrey' => 'a9a9a9',
|
|
|
75 |
'darkgreen' => '006400',
|
|
|
76 |
'darkkhaki' => 'bdb76b',
|
|
|
77 |
'darkmagenta' => '8b008b',
|
|
|
78 |
'darkolivegreen' => '556b2f',
|
|
|
79 |
'darkorange' => 'ff8c00',
|
|
|
80 |
'darkorchid' => '9932cc',
|
|
|
81 |
'darkred' => '8b0000',
|
|
|
82 |
'darksalmon' => 'e9967a',
|
|
|
83 |
'darkseagreen' => '8fbc8f',
|
|
|
84 |
'darkslateblue' => '483d8b',
|
|
|
85 |
'darkslategray' => '2f4f4f',
|
|
|
86 |
'darkslategrey' => '2f4f4f',
|
|
|
87 |
'darkturquoise' => '00ced1',
|
|
|
88 |
'darkviolet' => '9400d3',
|
|
|
89 |
'deeppink' => 'ff1493',
|
|
|
90 |
'deepskyblue' => '00bfff',
|
|
|
91 |
'dimgray' => '696969',
|
|
|
92 |
'dimgrey' => '696969',
|
|
|
93 |
'dodgerblue' => '1e90ff',
|
|
|
94 |
'firebrick' => 'b22222',
|
|
|
95 |
'floralwhite' => 'fffaf0',
|
|
|
96 |
'forestgreen' => '228b22',
|
|
|
97 |
'fuchsia' => 'ff00ff',
|
|
|
98 |
'gainsboro' => 'dcdcdc',
|
|
|
99 |
'ghostwhite' => 'f8f8ff',
|
|
|
100 |
'gold' => 'ffd700',
|
|
|
101 |
'goldenrod' => 'daa520',
|
|
|
102 |
'gray' => '808080',
|
|
|
103 |
'grey' => '808080',
|
|
|
104 |
'green' => '008000',
|
|
|
105 |
'greenyellow' => 'adff2f',
|
|
|
106 |
'honeydew' => 'f0fff0',
|
|
|
107 |
'hotpink' => 'ff69b4',
|
|
|
108 |
'indianred' => 'cd5c5c',
|
|
|
109 |
'indigo' => '4b0082',
|
|
|
110 |
'ivory' => 'fffff0',
|
|
|
111 |
'khaki' => 'f0e68c',
|
|
|
112 |
'lavender' => 'e6e6fa',
|
|
|
113 |
'lavenderblush' => 'fff0f5',
|
|
|
114 |
'lawngreen' => '7cfc00',
|
|
|
115 |
'lemonchiffon' => 'fffacd',
|
|
|
116 |
'lightblue' => 'add8e6',
|
|
|
117 |
'lightcoral' => 'f08080',
|
|
|
118 |
'lightcyan' => 'e0ffff',
|
|
|
119 |
'lightgoldenrodyellow' => 'fafad2',
|
|
|
120 |
'ltgray' => 'd3d3d3',
|
|
|
121 |
'lightgray' => 'd3d3d3',
|
|
|
122 |
'lightgrey' => 'd3d3d3',
|
|
|
123 |
'lightgreen' => '90ee90',
|
|
|
124 |
'lightpink' => 'ffb6c1',
|
|
|
125 |
'lightsalmon' => 'ffa07a',
|
|
|
126 |
'lightseagreen' => '20b2aa',
|
|
|
127 |
'lightskyblue' => '87cefa',
|
|
|
128 |
'lightslategray' => '778899',
|
|
|
129 |
'lightslategrey' => '778899',
|
|
|
130 |
'lightsteelblue' => 'b0c4de',
|
|
|
131 |
'lightyellow' => 'ffffe0',
|
|
|
132 |
'lime' => '00ff00',
|
|
|
133 |
'limegreen' => '32cd32',
|
|
|
134 |
'linen' => 'faf0e6',
|
|
|
135 |
'magenta' => 'ff00ff',
|
|
|
136 |
'maroon' => '800000',
|
|
|
137 |
'mediumaquamarine' => '66cdaa',
|
|
|
138 |
'mediumblue' => '0000cd',
|
|
|
139 |
'mediumorchid' => 'ba55d3',
|
|
|
140 |
'mediumpurple' => '9370d8',
|
|
|
141 |
'mediumseagreen' => '3cb371',
|
|
|
142 |
'mediumslateblue' => '7b68ee',
|
|
|
143 |
'mediumspringgreen' => '00fa9a',
|
|
|
144 |
'mediumturquoise' => '48d1cc',
|
|
|
145 |
'mediumvioletred' => 'c71585',
|
|
|
146 |
'midnightblue' => '191970',
|
|
|
147 |
'mintcream' => 'f5fffa',
|
|
|
148 |
'mistyrose' => 'ffe4e1',
|
|
|
149 |
'moccasin' => 'ffe4b5',
|
|
|
150 |
'navajowhite' => 'ffdead',
|
|
|
151 |
'navy' => '000080',
|
|
|
152 |
'oldlace' => 'fdf5e6',
|
|
|
153 |
'olive' => '808000',
|
|
|
154 |
'olivedrab' => '6b8e23',
|
|
|
155 |
'orange' => 'ffa500',
|
|
|
156 |
'orangered' => 'ff4500',
|
|
|
157 |
'orchid' => 'da70d6',
|
|
|
158 |
'palegoldenrod' => 'eee8aa',
|
|
|
159 |
'palegreen' => '98fb98',
|
|
|
160 |
'paleturquoise' => 'afeeee',
|
|
|
161 |
'palevioletred' => 'd87093',
|
|
|
162 |
'papayawhip' => 'ffefd5',
|
|
|
163 |
'peachpuff' => 'ffdab9',
|
|
|
164 |
'peru' => 'cd853f',
|
|
|
165 |
'pink' => 'ffc0cb',
|
|
|
166 |
'plum' => 'dda0dd',
|
|
|
167 |
'powderblue' => 'b0e0e6',
|
|
|
168 |
'purple' => '800080',
|
|
|
169 |
'red' => 'ff0000',
|
|
|
170 |
'rosybrown' => 'bc8f8f',
|
|
|
171 |
'royalblue' => '4169e1',
|
|
|
172 |
'saddlebrown' => '8b4513',
|
|
|
173 |
'salmon' => 'fa8072',
|
|
|
174 |
'sandybrown' => 'f4a460',
|
|
|
175 |
'seagreen' => '2e8b57',
|
|
|
176 |
'seashell' => 'fff5ee',
|
|
|
177 |
'sienna' => 'a0522d',
|
|
|
178 |
'silver' => 'c0c0c0',
|
|
|
179 |
'skyblue' => '87ceeb',
|
|
|
180 |
'slateblue' => '6a5acd',
|
|
|
181 |
'slategray' => '708090',
|
|
|
182 |
'slategrey' => '708090',
|
|
|
183 |
'snow' => 'fffafa',
|
|
|
184 |
'springgreen' => '00ff7f',
|
|
|
185 |
'steelblue' => '4682b4',
|
|
|
186 |
'tan' => 'd2b48c',
|
|
|
187 |
'teal' => '008080',
|
|
|
188 |
'thistle' => 'd8bfd8',
|
|
|
189 |
'tomato' => 'ff6347',
|
|
|
190 |
'turquoise' => '40e0d0',
|
|
|
191 |
'violet' => 'ee82ee',
|
|
|
192 |
'wheat' => 'f5deb3',
|
|
|
193 |
'white' => 'ffffff',
|
|
|
194 |
'whitesmoke' => 'f5f5f5',
|
|
|
195 |
'yellow' => 'ffff00',
|
|
|
196 |
'yellowgreen' => '9acd32'
|
|
|
197 |
);
|
|
|
198 |
|
|
|
199 |
//============================================================+
|
|
|
200 |
// END OF FILE
|
|
|
201 |
//============================================================+
|