Source for file htmlcolors.php
Documentation is available at htmlcolors.php
//============================================================+
// File name : htmlcolors.php
// Last Update : 2010-10-18
// Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
// -------------------------------------------------------------------
// Copyright (C) 2002-2010 Nicola Asuni - Tecnick.com S.r.l.
// This file is part of TCPDF software library.
// TCPDF is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
// TCPDF is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Lesser General Public License for more details.
// You should have received a copy of the GNU Lesser General Public License
// along with TCPDF. If not, see <http://www.gnu.org/licenses/>.
// See LICENSE.TXT file for more information.
// -------------------------------------------------------------------
// Description : Array of WEB safe colors
//============================================================+
* Array of WEB safe colors.
* @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
* @package com.tecnick.tcpdf
* @link http://www.tcpdf.org
* @license http://www.gnu.org/copyleft/lesser.html LGPL
* @since 2.9.000 (2008-03-26)
* Array of WEB safe colors
'antiquewhite' => 'faebd7',
'aquamarine' => '7fffd4',
'blanchedalmond' => 'ffebcd',
'blueviolet' => '8a2be2',
'chartreuse' => '7fff00',
'cornflowerblue' => '6495ed',
'darkgoldenrod' => 'b8860b',
'darkmagenta' => '8b008b',
'darkolivegreen' => '556b2f',
'darkorange' => 'ff8c00',
'darkorchid' => '9932cc',
'darksalmon' => 'e9967a',
'darkseagreen' => '8fbc8f',
'darkslateblue' => '483d8b',
'darkslategray' => '2f4f4f',
'darkslategrey' => '2f4f4f',
'darkturquoise' => '00ced1',
'darkviolet' => '9400d3',
'deepskyblue' => '00bfff',
'dodgerblue' => '1e90ff',
'floralwhite' => 'fffaf0',
'forestgreen' => '228b22',
'ghostwhite' => 'f8f8ff',
'greenyellow' => 'adff2f',
'lavenderblush' => 'fff0f5',
'lemonchiffon' => 'fffacd',
'lightcoral' => 'f08080',
'lightgoldenrodyellow' => 'fafad2',
'lightgreen' => '90ee90',
'lightsalmon' => 'ffa07a',
'lightseagreen' => '20b2aa',
'lightskyblue' => '87cefa',
'lightslategray' => '778899',
'lightslategrey' => '778899',
'lightsteelblue' => 'b0c4de',
'lightyellow' => 'ffffe0',
'mediumaquamarine' => '66cdaa',
'mediumblue' => '0000cd',
'mediumorchid' => 'ba55d3',
'mediumpurple' => '9370d8',
'mediumseagreen' => '3cb371',
'mediumslateblue' => '7b68ee',
'mediumspringgreen' => '00fa9a',
'mediumturquoise' => '48d1cc',
'mediumvioletred' => 'c71585',
'midnightblue' => '191970',
'navajowhite' => 'ffdead',
'palegoldenrod' => 'eee8aa',
'paleturquoise' => 'afeeee',
'palevioletred' => 'd87093',
'papayawhip' => 'ffefd5',
'powderblue' => 'b0e0e6',
'saddlebrown' => '8b4513',
'sandybrown' => 'f4a460',
'springgreen' => '00ff7f',
'whitesmoke' => 'f5f5f5',
'yellowgreen' => '9acd32'
//============================================================+
//============================================================+
|