Uppercase hex color values

This commit is contained in:
Zach Copley 2009-06-17 03:05:48 -07:00
parent ac3cccefb5
commit af4b18b1e2
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ class WebColor {
$hexcolor .= (strlen(dechex($this->blue)) < 2 ? '0' : '') .
dechex($this->blue);
return $hexcolor;
return strtoupper($hexcolor);
}