|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00002 //============================================================+ 00003 // File name : htmlcolors.php 00004 // Version : 1.0.008 00005 // Begin : 2002-04-09 00006 // Last Update : 2010-12-16 00007 // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com 00008 // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) 00009 // ------------------------------------------------------------------- 00010 // Copyright (C) 2002-2010 Nicola Asuni - Tecnick.com S.r.l. 00011 // 00012 // This file is part of TCPDF software library. 00013 // 00014 // TCPDF is free software: you can redistribute it and/or modify it 00015 // under the terms of the GNU Lesser General Public License as 00016 // published by the Free Software Foundation, either version 3 of the 00017 // License, or (at your option) any later version. 00018 // 00019 // TCPDF is distributed in the hope that it will be useful, but 00020 // WITHOUT ANY WARRANTY; without even the implied warranty of 00021 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00022 // See the GNU Lesser General Public License for more details. 00023 // 00024 // You should have received a copy of the GNU Lesser General Public License 00025 // along with TCPDF. If not, see <http://www.gnu.org/licenses/>. 00026 // 00027 // See LICENSE.TXT file for more information. 00028 // ------------------------------------------------------------------- 00029 // 00030 // Description : Array of WEB safe colors 00031 // 00032 //============================================================+ 00033 00045 $webcolor = array ( 00046 'aliceblue' => 'f0f8ff', 00047 'antiquewhite' => 'faebd7', 00048 'aqua' => '00ffff', 00049 'aquamarine' => '7fffd4', 00050 'azure' => 'f0ffff', 00051 'beige' => 'f5f5dc', 00052 'bisque' => 'ffe4c4', 00053 'black' => '000000', 00054 'blanchedalmond' => 'ffebcd', 00055 'blue' => '0000ff', 00056 'blueviolet' => '8a2be2', 00057 'brown' => 'a52a2a', 00058 'burlywood' => 'deb887', 00059 'cadetblue' => '5f9ea0', 00060 'chartreuse' => '7fff00', 00061 'chocolate' => 'd2691e', 00062 'coral' => 'ff7f50', 00063 'cornflowerblue' => '6495ed', 00064 'cornsilk' => 'fff8dc', 00065 'crimson' => 'dc143c', 00066 'cyan' => '00ffff', 00067 'darkblue' => '00008b', 00068 'darkcyan' => '008b8b', 00069 'darkgoldenrod' => 'b8860b', 00070 'dkgray' => 'a9a9a9', 00071 'darkgray' => 'a9a9a9', 00072 'darkgrey' => 'a9a9a9', 00073 'darkgreen' => '006400', 00074 'darkkhaki' => 'bdb76b', 00075 'darkmagenta' => '8b008b', 00076 'darkolivegreen' => '556b2f', 00077 'darkorange' => 'ff8c00', 00078 'darkorchid' => '9932cc', 00079 'darkred' => '8b0000', 00080 'darksalmon' => 'e9967a', 00081 'darkseagreen' => '8fbc8f', 00082 'darkslateblue' => '483d8b', 00083 'darkslategray' => '2f4f4f', 00084 'darkslategrey' => '2f4f4f', 00085 'darkturquoise' => '00ced1', 00086 'darkviolet' => '9400d3', 00087 'deeppink' => 'ff1493', 00088 'deepskyblue' => '00bfff', 00089 'dimgray' => '696969', 00090 'dimgrey' => '696969', 00091 'dodgerblue' => '1e90ff', 00092 'firebrick' => 'b22222', 00093 'floralwhite' => 'fffaf0', 00094 'forestgreen' => '228b22', 00095 'fuchsia' => 'ff00ff', 00096 'gainsboro' => 'dcdcdc', 00097 'ghostwhite' => 'f8f8ff', 00098 'gold' => 'ffd700', 00099 'goldenrod' => 'daa520', 00100 'gray' => '808080', 00101 'grey' => '808080', 00102 'green' => '008000', 00103 'greenyellow' => 'adff2f', 00104 'honeydew' => 'f0fff0', 00105 'hotpink' => 'ff69b4', 00106 'indianred' => 'cd5c5c', 00107 'indigo' => '4b0082', 00108 'ivory' => 'fffff0', 00109 'khaki' => 'f0e68c', 00110 'lavender' => 'e6e6fa', 00111 'lavenderblush' => 'fff0f5', 00112 'lawngreen' => '7cfc00', 00113 'lemonchiffon' => 'fffacd', 00114 'lightblue' => 'add8e6', 00115 'lightcoral' => 'f08080', 00116 'lightcyan' => 'e0ffff', 00117 'lightgoldenrodyellow' => 'fafad2', 00118 'ltgray' => 'd3d3d3', 00119 'lightgray' => 'd3d3d3', 00120 'lightgrey' => 'd3d3d3', 00121 'lightgreen' => '90ee90', 00122 'lightpink' => 'ffb6c1', 00123 'lightsalmon' => 'ffa07a', 00124 'lightseagreen' => '20b2aa', 00125 'lightskyblue' => '87cefa', 00126 'lightslategray' => '778899', 00127 'lightslategrey' => '778899', 00128 'lightsteelblue' => 'b0c4de', 00129 'lightyellow' => 'ffffe0', 00130 'lime' => '00ff00', 00131 'limegreen' => '32cd32', 00132 'linen' => 'faf0e6', 00133 'magenta' => 'ff00ff', 00134 'maroon' => '800000', 00135 'mediumaquamarine' => '66cdaa', 00136 'mediumblue' => '0000cd', 00137 'mediumorchid' => 'ba55d3', 00138 'mediumpurple' => '9370d8', 00139 'mediumseagreen' => '3cb371', 00140 'mediumslateblue' => '7b68ee', 00141 'mediumspringgreen' => '00fa9a', 00142 'mediumturquoise' => '48d1cc', 00143 'mediumvioletred' => 'c71585', 00144 'midnightblue' => '191970', 00145 'mintcream' => 'f5fffa', 00146 'mistyrose' => 'ffe4e1', 00147 'moccasin' => 'ffe4b5', 00148 'navajowhite' => 'ffdead', 00149 'navy' => '000080', 00150 'oldlace' => 'fdf5e6', 00151 'olive' => '808000', 00152 'olivedrab' => '6b8e23', 00153 'orange' => 'ffa500', 00154 'orangered' => 'ff4500', 00155 'orchid' => 'da70d6', 00156 'palegoldenrod' => 'eee8aa', 00157 'palegreen' => '98fb98', 00158 'paleturquoise' => 'afeeee', 00159 'palevioletred' => 'd87093', 00160 'papayawhip' => 'ffefd5', 00161 'peachpuff' => 'ffdab9', 00162 'peru' => 'cd853f', 00163 'pink' => 'ffc0cb', 00164 'plum' => 'dda0dd', 00165 'powderblue' => 'b0e0e6', 00166 'purple' => '800080', 00167 'red' => 'ff0000', 00168 'rosybrown' => 'bc8f8f', 00169 'royalblue' => '4169e1', 00170 'saddlebrown' => '8b4513', 00171 'salmon' => 'fa8072', 00172 'sandybrown' => 'f4a460', 00173 'seagreen' => '2e8b57', 00174 'seashell' => 'fff5ee', 00175 'sienna' => 'a0522d', 00176 'silver' => 'c0c0c0', 00177 'skyblue' => '87ceeb', 00178 'slateblue' => '6a5acd', 00179 'slategray' => '708090', 00180 'slategrey' => '708090', 00181 'snow' => 'fffafa', 00182 'springgreen' => '00ff7f', 00183 'steelblue' => '4682b4', 00184 'tan' => 'd2b48c', 00185 'teal' => '008080', 00186 'thistle' => 'd8bfd8', 00187 'tomato' => 'ff6347', 00188 'turquoise' => '40e0d0', 00189 'violet' => 'ee82ee', 00190 'wheat' => 'f5deb3', 00191 'white' => 'ffffff', 00192 'whitesmoke' => 'f5f5f5', 00193 'yellow' => 'ffff00', 00194 'yellowgreen' => '9acd32' 00195 ); 00196 00197 //============================================================+ 00198 // END OF FILE 00199 //============================================================+