<?php
/**
* CSS Compressor [VERSION]
* [DATE]
* Corey Hart @ http://www.codenothing.com
*/
// Hex codes to short names
$hex2short = array(
"#f0ffff" => "azure",
"#f5f5dc" => "beige",
"#ffe4c4" => "bisque",
"#a52a2a" => "brown",
"#ff7f50" => "coral",
"#ffd700" => "gold",
"#808080" => "gray",
"#008000" => "green",
"#4b0082" => "indigo",
"#fffff0" => "ivory",
"#f0e68c" => "khaki",
"#faf0e6" => "linen",
"#800000" => "maroon",
"#000080" => "navy",
"#808000" => "olive",
"#ffa500" => "orange",
"#da70d6" => "orchid",
"#cd853f" => "peru",
"#ffc0cb" => "pink",
"#dda0dd" => "plum",
"#800080" => "purple",
"#ff0000" => "red",
"#fa8072" => "salmon",
"#a0522d" => "sienna",
"#c0c0c0" => "silver",
"#fffafa" => "snow",
"#d2b48c" => "tan",
"#008080" => "teal",
"#ff6347" => "tomato",
"#ee82ee" => "violet",
"#f5deb3" => "wheat",
// Red is the only string value that is less than the 3# hex value
"#f00" => "red",
);
?>
|