This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A class to parse colour values. Updated by Ben to support colour conversions. | |
* @author Stoyan Stefanov <[email protected]> | |
* @author Ben Taylor <[email protected]> | |
* @link http://www.phpied.com/rgb-color-parser-in-javascript/ | |
* @license Use it if you like it | |
*/ | |
function Colour(colour_string) | |
{ | |
this.ok = false; |