html like color list test
♥0 |
Line 917 |
Modified 2012-08-30 06:51:00 |
MIT License
archived:2017-03-20 09:00:14
ActionScript3 source code
/**
* Copyright Trinkschokolade ( http://wonderfl.net/user/Trinkschokolade )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/dSGB
*/
/*
The list of colors that is used in html and stuff like that.
It translates the color name into by flash readable hexvalues.
It is actually 6 times the same list. just in small, capital and original.
One time stored as variable and the other time stored as Dictionary entry.
*/
package {
import com.bit101.components.PushButton;
import flash.display.Sprite;
import flash.events.*;
public class HtmlColorTest extends Sprite {
public function HtmlColorTest() {
var list:htmlColorList = new htmlColorList();
addChild(new shape(list["RoyalBlue"]));
addChild(new shape(list["ROYALBLUE"]));
addChild(new shape(list["royalblue"]));
addChild(new shape(list.LIME));
addChild(new shape(list.lime));
addChild(new shape(list.Lime));
}
}
}
import flash.display.Sprite;
class shape extends Sprite
{
public function shape(color:Number)
{
var r:Number = Math.random()*47+20;
this.graphics.beginFill(color);
this.graphics.drawCircle(Math.random()*500,Math.random()*450,r);
this.graphics.endFill();
}
}
import flash.utils.Dictionary;
dynamic class htmlColorList extends Dictionary
{
public const Black:Number =0x000000
public const Navy:Number =0x000080
public const DarkBlue:Number =0x00008B
public const MediumBlue:Number =0x0000CD
public const Blue:Number =0x0000FF
public const DarkGreen:Number =0x006400
public const Green:Number =0x008000
public const Teal:Number =0x008080
public const DarkCyan:Number =0x008B8B
public const DeepSkyBlue:Number =0x00BFFF
public const DarkTurquoise:Number =0x00CED1
public const MediumSpringGreen:Number =0x00FA9A
public const Lime:Number =0x00FF00
public const SpringGreen:Number =0x00FF7F
public const Aqua:Number =0x00FFFF
public const Cyan:Number =0x00FFFF
public const MidnightBlue:Number =0x191970
public const DodgerBlue:Number =0x1E90FF
public const LightSeaGreen:Number =0x20B2AA
public const ForestGreen:Number =0x228B22
public const SeaGreen:Number =0x2E8B57
public const DarkSlateGray:Number =0x2F4F4F
public const DarkSlateGrey:Number =0x2F4F4F
public const LimeGreen:Number =0x32CD32
public const MediumSeaGreen:Number =0x3CB371
public const Turquoise:Number =0x40E0D0
public const RoyalBlue:Number =0x4169E1
public const SteelBlue:Number =0x4682B4
public const DarkSlateBlue:Number =0x483D8B
public const MediumTurquoise:Number =0x48D1CC
public const Indigo :Number =0x4B0082
public const DarkOliveGreen:Number =0x556B2F
public const CadetBlue:Number =0x5F9EA0
public const CornflowerBlue:Number =0x6495ED
public const MediumAquaMarine:Number =0x66CDAA
public const DimGray:Number =0x696969
public const DimGrey:Number =0x696969
public const SlateBlue:Number =0x6A5ACD
public const OliveDrab:Number =0x6B8E23
public const SlateGray:Number =0x708090
public const SlateGrey:Number =0x708090
public const LightSlateGray:Number =0x778899
public const LightSlateGrey:Number =0x778899
public const MediumSlateBlue:Number =0x7B68EE
public const LawnGreen:Number =0x7CFC00
public const Chartreuse:Number =0x7FFF00
public const Aquamarine:Number =0x7FFFD4
public const Maroon:Number =0x800000
public const Purple:Number =0x800080
public const Olive:Number =0x808000
public const Gray:Number =0x808080
public const Grey:Number =0x808080
public const SkyBlue:Number =0x87CEEB
public const LightSkyBlue:Number =0x87CEFA
public const BlueViolet:Number =0x8A2BE2
public const DarkRed:Number =0x8B0000
public const DarkMagenta:Number =0x8B008B
public const SaddleBrown:Number =0x8B4513
public const DarkSeaGreen:Number =0x8FBC8F
public const LightGreen:Number =0x90EE90
public const MediumPurple:Number =0x9370D8
public const DarkViolet:Number =0x9400D3
public const PaleGreen:Number =0x98FB98
public const DarkOrchid:Number =0x9932CC
public const YellowGreen:Number =0x9ACD32
public const Sienna:Number =0xA0522D
public const Brown:Number =0xA52A2A
public const DarkGray:Number =0xA9A9A9
public const DarkGrey:Number =0xA9A9A9
public const LightBlue:Number =0xADD8E6
public const GreenYellow:Number =0xADFF2F
public const PaleTurquoise:Number =0xAFEEEE
public const LightSteelBlue:Number =0xB0C4DE
public const PowderBlue:Number =0xB0E0E6
public const FireBrick:Number =0xB22222
public const DarkGoldenRod:Number =0xB8860B
public const MediumOrchid:Number =0xBA55D3
public const RosyBrown:Number =0xBC8F8F
public const DarkKhaki:Number =0xBDB76B
public const Silver:Number =0xC0C0C0
public const MediumVioletRed:Number =0xC71585
public const IndianRed :Number =0xCD5C5C
public const Peru:Number =0xCD853F
public const Chocolate:Number =0xD2691E
public const Tan:Number =0xD2B48C
public const LightGray:Number =0xD3D3D3
public const LightGrey:Number =0xD3D3D3
public const PaleVioletRed:Number =0xD87093
public const Thistle:Number =0xD8BFD8
public const Orchid:Number =0xDA70D6
public const GoldenRod:Number =0xDAA520
public const Crimson:Number =0xDC143C
public const Gainsboro:Number =0xDCDCDC
public const Plum:Number =0xDDA0DD
public const BurlyWood:Number =0xDEB887
public const LightCyan:Number =0xE0FFFF
public const Lavender:Number =0xE6E6FA
public const DarkSalmon:Number =0xE9967A
public const Violet:Number =0xEE82EE
public const PaleGoldenRod:Number =0xEEE8AA
public const LightCoral:Number =0xF08080
public const Khaki:Number =0xF0E68C
public const AliceBlue:Number =0xF0F8FF
public const HoneyDew:Number =0xF0FFF0
public const Azure:Number =0xF0FFFF
public const SandyBrown:Number =0xF4A460
public const Wheat:Number =0xF5DEB3
public const Beige:Number =0xF5F5DC
public const WhiteSmoke:Number =0xF5F5F5
public const MintCream:Number =0xF5FFFA
public const GhostWhite:Number =0xF8F8FF
public const Salmon:Number =0xFA8072
public const AntiqueWhite:Number =0xFAEBD7
public const Linen:Number =0xFAF0E6
public const LightGoldenRodYellow:Number=0xFAFAD2
public const OldLace:Number =0xFDF5E6
public const Red:Number =0xFF0000
public const Fuchsia:Number =0xFF00FF
public const Magenta:Number =0xFF00FF
public const DeepPink:Number =0xFF1493
public const OrangeRed:Number =0xFF4500
public const Tomato:Number =0xFF6347
public const HotPink:Number =0xFF69B4
public const Coral:Number =0xFF7F50
public const Darkorange:Number =0xFF8C00
public const LightSalmon:Number =0xFFA07A
public const Orange:Number =0xFFA500
public const LightPink:Number =0xFFB6C1
public const Pink:Number =0xFFC0CB
public const Gold:Number =0xFFD700
public const PeachPuff:Number =0xFFDAB9
public const NavajoWhite:Number =0xFFDEAD
public const Moccasin:Number =0xFFE4B5
public const Bisque:Number =0xFFE4C4
public const MistyRose:Number =0xFFE4E1
public const BlanchedAlmond:Number =0xFFEBCD
public const PapayaWhip:Number =0xFFEFD5
public const LavenderBlush:Number =0xFFF0F5
public const SeaShell:Number =0xFFF5EE
public const Cornsilk:Number =0xFFF8DC
public const LemonChiffon:Number =0xFFFACD
public const FloralWhite:Number =0xFFFAF0
public const Snow:Number =0xFFFAFA
public const Yellow:Number =0xFFFF00
public const LightYellow:Number =0xFFFFE0
public const Ivory:Number =0xFFFFF0
public const White:Number =0xFFFFFF
public const black:Number =0x000000
public const navy:Number =0x000080
public const darkblue:Number =0x00008b
public const mediumblue:Number =0x0000cd
public const blue:Number =0x0000ff
public const darkgreen:Number =0x006400
public const green:Number =0x008000
public const teal:Number =0x008080
public const darkcyan:Number =0x008b8b
public const deepskyblue:Number =0x00bfff
public const darkturquoise:Number =0x00ced1
public const mediumspringgreen:Number =0x00fa9a
public const lime:Number =0x00ff00
public const springgreen:Number =0x00ff7f
public const aqua:Number =0x00ffff
public const cyan:Number =0x00ffff
public const midnightblue:Number =0x191970
public const dodgerblue:Number =0x1e90ff
public const lightseagreen:Number =0x20b2aa
public const forestgreen:Number =0x228b22
public const seagreen:Number =0x2e8b57
public const darkslategray:Number =0x2f4f4f
public const darkslategrey:Number =0x2f4f4f
public const limegreen:Number =0x32cd32
public const mediumseagreen:Number =0x3cb371
public const turquoise:Number =0x40e0d0
public const royalblue:Number =0x4169e1
public const steelblue:Number =0x4682b4
public const darkslateblue:Number =0x483d8b
public const mediumturquoise:Number =0x48d1cc
public const indigo :Number =0x4b0082
public const darkolivegreen:Number =0x556b2f
public const cadetblue:Number =0x5f9ea0
public const cornflowerblue:Number =0x6495ed
public const mediumaquamarine:Number =0x66cdaa
public const dimgray:Number =0x696969
public const dimgrey:Number =0x696969
public const slateblue:Number =0x6a5acd
public const olivedrab:Number =0x6b8e23
public const slategray:Number =0x708090
public const slategrey:Number =0x708090
public const lightslategray:Number =0x778899
public const lightslategrey:Number =0x778899
public const mediumslateblue:Number =0x7b68ee
public const lawngreen:Number =0x7cfc00
public const chartreuse:Number =0x7fff00
public const aquamarine:Number =0x7fffd4
public const maroon:Number =0x800000
public const purple:Number =0x800080
public const olive:Number =0x808000
public const gray:Number =0x808080
public const grey:Number =0x808080
public const skyblue:Number =0x87ceeb
public const lightskyblue:Number =0x87cefa
public const blueviolet:Number =0x8a2be2
public const darkred:Number =0x8b0000
public const darkmagenta:Number =0x8b008b
public const saddlebrown:Number =0x8b4513
public const darkseagreen:Number =0x8fbc8f
public const lightgreen:Number =0x90ee90
public const mediumpurple:Number =0x9370d8
public const darkviolet:Number =0x9400d3
public const palegreen:Number =0x98fb98
public const darkorchid:Number =0x9932cc
public const yellowgreen:Number =0x9acd32
public const sienna:Number =0xa0522d
public const brown:Number =0xa52a2a
public const darkgray:Number =0xa9a9a9
public const darkgrey:Number =0xa9a9a9
public const lightblue:Number =0xadd8e6
public const greenyellow:Number =0xadff2f
public const paleturquoise:Number =0xafeeee
public const lightsteelblue:Number =0xb0c4de
public const powderblue:Number =0xb0e0e6
public const firebrick:Number =0xb22222
public const darkgoldenrod:Number =0xb8860b
public const mediumorchid:Number =0xba55d3
public const rosybrown:Number =0xbc8f8f
public const darkkhaki:Number =0xbdb76b
public const silver:Number =0xc0c0c0
public const mediumvioletred:Number =0xc71585
public const indianred :Number =0xcd5c5c
public const peru:Number =0xcd853f
public const chocolate:Number =0xd2691e
public const tan:Number =0xd2b48c
public const lightgray:Number =0xd3d3d3
public const lightgrey:Number =0xd3d3d3
public const palevioletred:Number =0xd87093
public const thistle:Number =0xd8bfd8
public const orchid:Number =0xda70d6
public const goldenrod:Number =0xdaa520
public const crimson:Number =0xdc143c
public const gainsboro:Number =0xdcdcdc
public const plum:Number =0xdda0dd
public const burlywood:Number =0xdeb887
public const lightcyan:Number =0xe0ffff
public const lavender:Number =0xe6e6fa
public const darksalmon:Number =0xe9967a
public const violet:Number =0xee82ee
public const palegoldenrod:Number =0xeee8aa
public const lightcoral:Number =0xf08080
public const khaki:Number =0xf0e68c
public const aliceblue:Number =0xf0f8ff
public const honeydew:Number =0xf0fff0
public const azure:Number =0xf0ffff
public const sandybrown:Number =0xf4a460
public const wheat:Number =0xf5deb3
public const beige:Number =0xf5f5dc
public const whitesmoke:Number =0xf5f5f5
public const mintcream:Number =0xf5fffa
public const ghostwhite:Number =0xf8f8ff
public const salmon:Number =0xfa8072
public const antiquewhite:Number =0xfaebd7
public const linen:Number =0xfaf0e6
public const lightgoldenrodyellow:Number=0xfafad2
public const oldlace:Number =0xfdf5e6
public const red:Number =0xff0000
public const fuchsia:Number =0xff00ff
public const magenta:Number =0xff00ff
public const deeppink:Number =0xff1493
public const orangered:Number =0xff4500
public const tomato:Number =0xff6347
public const hotpink:Number =0xff69b4
public const coral:Number =0xff7f50
public const darkorange:Number =0xff8c00
public const lightsalmon:Number =0xffa07a
public const orange:Number =0xffa500
public const lightpink:Number =0xffb6c1
public const pink:Number =0xffc0cb
public const gold:Number =0xffd700
public const peachpuff:Number =0xffdab9
public const navajowhite:Number =0xffdead
public const moccasin:Number =0xffe4b5
public const bisque:Number =0xffe4c4
public const mistyrose:Number =0xffe4e1
public const blanchedalmond:Number =0xffebcd
public const papayawhip:Number =0xffefd5
public const lavenderblush:Number =0xfff0f5
public const seashell:Number =0xfff5ee
public const cornsilk:Number =0xfff8dc
public const lemonchiffon:Number =0xfffacd
public const floralwhite:Number =0xfffaf0
public const snow:Number =0xfffafa
public const yellow:Number =0xffff00
public const lightyellow:Number =0xffffe0
public const ivory:Number =0xfffff0
public const white:Number =0xffffff
public const BLACK:Number =0X000000
public const NAVY:Number =0X000080
public const DARKBLUE:Number =0X00008B
public const MEDIUMBLUE:Number =0X0000CD
public const BLUE:Number =0X0000FF
public const DARKGREEN:Number =0X006400
public const GREEN:Number =0X008000
public const TEAL:Number =0X008080
public const DARKCYAN:Number =0X008B8B
public const DEEPSKYBLUE:Number =0X00BFFF
public const DARKTURQUOISE:Number =0X00CED1
public const MEDIUMSPRINGGREEN:Number =0X00FA9A
public const LIME:Number =0X00FF00
public const SPRINGGREEN:Number =0X00FF7F
public const AQUA:Number =0X00FFFF
public const CYAN:Number =0X00FFFF
public const MIDNIGHTBLUE:Number =0X191970
public const DODGERBLUE:Number =0X1E90FF
public const LIGHTSEAGREEN:Number =0X20B2AA
public const FORESTGREEN:Number =0X228B22
public const SEAGREEN:Number =0X2E8B57
public const DARKSLATEGRAY:Number =0X2F4F4F
public const DARKSLATEGREY:Number =0X2F4F4F
public const LIMEGREEN:Number =0X32CD32
public const MEDIUMSEAGREEN:Number =0X3CB371
public const TURQUOISE:Number =0X40E0D0
public const ROYALBLUE:Number =0X4169E1
public const STEELBLUE:Number =0X4682B4
public const DARKSLATEBLUE:Number =0X483D8B
public const MEDIUMTURQUOISE:Number =0X48D1CC
public const INDIGO :Number =0X4B0082
public const DARKOLIVEGREEN:Number =0X556B2F
public const CADETBLUE:Number =0X5F9EA0
public const CORNFLOWERBLUE:Number =0X6495ED
public const MEDIUMAQUAMARINE:Number =0X66CDAA
public const DIMGRAY:Number =0X696969
public const DIMGREY:Number =0X696969
public const SLATEBLUE:Number =0X6A5ACD
public const OLIVEDRAB:Number =0X6B8E23
public const SLATEGRAY:Number =0X708090
public const SLATEGREY:Number =0X708090
public const LIGHTSLATEGRAY:Number =0X778899
public const LIGHTSLATEGREY:Number =0X778899
public const MEDIUMSLATEBLUE:Number =0X7B68EE
public const LAWNGREEN:Number =0X7CFC00
public const CHARTREUSE:Number =0X7FFF00
public const AQUAMARINE:Number =0X7FFFD4
public const MAROON:Number =0X800000
public const PURPLE:Number =0X800080
public const OLIVE:Number =0X808000
public const GRAY:Number =0X808080
public const GREY:Number =0X808080
public const SKYBLUE:Number =0X87CEEB
public const LIGHTSKYBLUE:Number =0X87CEFA
public const BLUEVIOLET:Number =0X8A2BE2
public const DARKRED:Number =0X8B0000
public const DARKMAGENTA:Number =0X8B008B
public const SADDLEBROWN:Number =0X8B4513
public const DARKSEAGREEN:Number =0X8FBC8F
public const LIGHTGREEN:Number =0X90EE90
public const MEDIUMPURPLE:Number =0X9370D8
public const DARKVIOLET:Number =0X9400D3
public const PALEGREEN:Number =0X98FB98
public const DARKORCHID:Number =0X9932CC
public const YELLOWGREEN:Number =0X9ACD32
public const SIENNA:Number =0XA0522D
public const BROWN:Number =0XA52A2A
public const DARKGRAY:Number =0XA9A9A9
public const DARKGREY:Number =0XA9A9A9
public const LIGHTBLUE:Number =0XADD8E6
public const GREENYELLOW:Number =0XADFF2F
public const PALETURQUOISE:Number =0XAFEEEE
public const LIGHTSTEELBLUE:Number =0XB0C4DE
public const POWDERBLUE:Number =0XB0E0E6
public const FIREBRICK:Number =0XB22222
public const DARKGOLDENROD:Number =0XB8860B
public const MEDIUMORCHID:Number =0XBA55D3
public const ROSYBROWN:Number =0XBC8F8F
public const DARKKHAKI:Number =0XBDB76B
public const SILVER:Number =0XC0C0C0
public const MEDIUMVIOLETRED:Number =0XC71585
public const INDIANRED :Number =0XCD5C5C
public const PERU:Number =0XCD853F
public const CHOCOLATE:Number =0XD2691E
public const TAN:Number =0XD2B48C
public const LIGHTGRAY:Number =0XD3D3D3
public const LIGHTGREY:Number =0XD3D3D3
public const PALEVIOLETRED:Number =0XD87093
public const THISTLE:Number =0XD8BFD8
public const ORCHID:Number =0XDA70D6
public const GOLDENROD:Number =0XDAA520
public const CRIMSON:Number =0XDC143C
public const GAINSBORO:Number =0XDCDCDC
public const PLUM:Number =0XDDA0DD
public const BURLYWOOD:Number =0XDEB887
public const LIGHTCYAN:Number =0XE0FFFF
public const LAVENDER:Number =0XE6E6FA
public const DARKSALMON:Number =0XE9967A
public const VIOLET:Number =0XEE82EE
public const PALEGOLDENROD:Number =0XEEE8AA
public const LIGHTCORAL:Number =0XF08080
public const KHAKI:Number =0XF0E68C
public const ALICEBLUE:Number =0XF0F8FF
public const HONEYDEW:Number =0XF0FFF0
public const AZURE:Number =0XF0FFFF
public const SANDYBROWN:Number =0XF4A460
public const WHEAT:Number =0XF5DEB3
public const BEIGE:Number =0XF5F5DC
public const WHITESMOKE:Number =0XF5F5F5
public const MINTCREAM:Number =0XF5FFFA
public const GHOSTWHITE:Number =0XF8F8FF
public const SALMON:Number =0XFA8072
public const ANTIQUEWHITE:Number =0XFAEBD7
public const LINEN:Number =0XFAF0E6
public const LIGHTGOLDENRODYELLOW:Number=0XFAFAD2
public const OLDLACE:Number =0XFDF5E6
public const RED:Number =0XFF0000
public const FUCHSIA:Number =0XFF00FF
public const MAGENTA:Number =0XFF00FF
public const DEEPPINK:Number =0XFF1493
public const ORANGERED:Number =0XFF4500
public const TOMATO:Number =0XFF6347
public const HOTPINK:Number =0XFF69B4
public const CORAL:Number =0XFF7F50
public const DARKORANGE:Number =0XFF8C00
public const LIGHTSALMON:Number =0XFFA07A
public const ORANGE:Number =0XFFA500
public const LIGHTPINK:Number =0XFFB6C1
public const PINK:Number =0XFFC0CB
public const GOLD:Number =0XFFD700
public const PEACHPUFF:Number =0XFFDAB9
public const NAVAJOWHITE:Number =0XFFDEAD
public const MOCCASIN:Number =0XFFE4B5
public const BISQUE:Number =0XFFE4C4
public const MISTYROSE:Number =0XFFE4E1
public const BLANCHEDALMOND:Number =0XFFEBCD
public const PAPAYAWHIP:Number =0XFFEFD5
public const LAVENDERBLUSH:Number =0XFFF0F5
public const SEASHELL:Number =0XFFF5EE
public const CORNSILK:Number =0XFFF8DC
public const LEMONCHIFFON:Number =0XFFFACD
public const FLORALWHITE:Number =0XFFFAF0
public const SNOW:Number =0XFFFAFA
public const YELLOW:Number =0XFFFF00
public const LIGHTYELLOW:Number =0XFFFFE0
public const IVORY:Number =0XFFFFF0
public const WHITE:Number =0XFFFFFF
public function htmlColorList(weakKeys:Boolean=false)
{
super(weakKeys);
this["Black"] =0x000000
this["Navy"] =0x000080
this["DarkBlue"] =0x00008B
this["MediumBlue"] =0x0000CD
this["Blue"] =0x0000FF
this["DarkGreen"] =0x006400
this["Green"] =0x008000
this["Teal"] =0x008080
this["DarkCyan"] =0x008B8B
this["DeepSkyBlue"] =0x00BFFF
this["DarkTurquoise"] =0x00CED1
this["MediumSpringGreen"] =0x00FA9A
this["Lime"] =0x00FF00
this["SpringGreen"] =0x00FF7F
this["Aqua"] =0x00FFFF
this["Cyan"] =0x00FFFF
this["MidnightBlue"] =0x191970
this["DodgerBlue"] =0x1E90FF
this["LightSeaGreen"] =0x20B2AA
this["ForestGreen"] =0x228B22
this["SeaGreen"] =0x2E8B57
this["DarkSlateGray"] =0x2F4F4F
this["DarkSlateGrey"] =0x2F4F4F
this["LimeGreen"] =0x32CD32
this["MediumSeaGreen"] =0x3CB371
this["Turquoise"] =0x40E0D0
this["RoyalBlue"] =0x4169E1
this["SteelBlue"] =0x4682B4
this["DarkSlateBlue"] =0x483D8B
this["MediumTurquoise"] =0x48D1CC
this["Indigo "] =0x4B0082
this["DarkOliveGreen"] =0x556B2F
this["CadetBlue"] =0x5F9EA0
this["CornflowerBlue"] =0x6495ED
this["MediumAquaMarine"] =0x66CDAA
this["DimGray"] =0x696969
this["DimGrey"] =0x696969
this["SlateBlue"] =0x6A5ACD
this["OliveDrab"] =0x6B8E23
this["SlateGray"] =0x708090
this["SlateGrey"] =0x708090
this["LightSlateGray"] =0x778899
this["LightSlateGrey"] =0x778899
this["MediumSlateBlue"] =0x7B68EE
this["LawnGreen"] =0x7CFC00
this["Chartreuse"] =0x7FFF00
this["Aquamarine"] =0x7FFFD4
this["Maroon"] =0x800000
this["Purple"] =0x800080
this["Olive"] =0x808000
this["Gray"] =0x808080
this["Grey"] =0x808080
this["SkyBlue"] =0x87CEEB
this["LightSkyBlue"] =0x87CEFA
this["BlueViolet"] =0x8A2BE2
this["DarkRed"] =0x8B0000
this["DarkMagenta"] =0x8B008B
this["SaddleBrown"] =0x8B4513
this["DarkSeaGreen"] =0x8FBC8F
this["LightGreen"] =0x90EE90
this["MediumPurple"] =0x9370D8
this["DarkViolet"] =0x9400D3
this["PaleGreen"] =0x98FB98
this["DarkOrchid"] =0x9932CC
this["YellowGreen"] =0x9ACD32
this["Sienna"] =0xA0522D
this["Brown"] =0xA52A2A
this["DarkGray"] =0xA9A9A9
this["DarkGrey"] =0xA9A9A9
this["LightBlue"] =0xADD8E6
this["GreenYellow"] =0xADFF2F
this["PaleTurquoise"] =0xAFEEEE
this["LightSteelBlue"] =0xB0C4DE
this["PowderBlue"] =0xB0E0E6
this["FireBrick"] =0xB22222
this["DarkGoldenRod"] =0xB8860B
this["MediumOrchid"] =0xBA55D3
this["RosyBrown"] =0xBC8F8F
this["DarkKhaki"] =0xBDB76B
this["Silver"] =0xC0C0C0
this["MediumVioletRed"] =0xC71585
this["IndianRed "] =0xCD5C5C
this["Peru"] =0xCD853F
this["Chocolate"] =0xD2691E
this["Tan"] =0xD2B48C
this["LightGray"] =0xD3D3D3
this["LightGrey"] =0xD3D3D3
this["PaleVioletRed"] =0xD87093
this["Thistle"] =0xD8BFD8
this["Orchid"] =0xDA70D6
this["GoldenRod"] =0xDAA520
this["Crimson"] =0xDC143C
this["Gainsboro"] =0xDCDCDC
this["Plum"] =0xDDA0DD
this["BurlyWood"] =0xDEB887
this["LightCyan"] =0xE0FFFF
this["Lavender"] =0xE6E6FA
this["DarkSalmon"] =0xE9967A
this["Violet"] =0xEE82EE
this["PaleGoldenRod"] =0xEEE8AA
this["LightCoral"] =0xF08080
this["Khaki"] =0xF0E68C
this["AliceBlue"] =0xF0F8FF
this["HoneyDew"] =0xF0FFF0
this["Azure"] =0xF0FFFF
this["SandyBrown"] =0xF4A460
this["Wheat"] =0xF5DEB3
this["Beige"] =0xF5F5DC
this["WhiteSmoke"] =0xF5F5F5
this["MintCream"] =0xF5FFFA
this["GhostWhite"] =0xF8F8FF
this["Salmon"] =0xFA8072
this["AntiqueWhite"] =0xFAEBD7
this["Linen"] =0xFAF0E6
this["LightGoldenRodYello"] =0xFAFAD2
this["OldLace"] =0xFDF5E6
this["Red"] =0xFF0000
this["Fuchsia"] =0xFF00FF
this["Magenta"] =0xFF00FF
this["DeepPink"] =0xFF1493
this["OrangeRed"] =0xFF4500
this["Tomato"] =0xFF6347
this["HotPink"] =0xFF69B4
this["Coral"] =0xFF7F50
this["Darkorange"] =0xFF8C00
this["LightSalmon"] =0xFFA07A
this["Orange"] =0xFFA500
this["LightPink"] =0xFFB6C1
this["Pink"] =0xFFC0CB
this["Gold"] =0xFFD700
this["PeachPuff"] =0xFFDAB9
this["NavajoWhite"] =0xFFDEAD
this["Moccasin"] =0xFFE4B5
this["Bisque"] =0xFFE4C4
this["MistyRose"] =0xFFE4E1
this["BlanchedAlmond"] =0xFFEBCD
this["PapayaWhip"] =0xFFEFD5
this["LavenderBlush"] =0xFFF0F5
this["SeaShell"] =0xFFF5EE
this["Cornsilk"] =0xFFF8DC
this["LemonChiffon"] =0xFFFACD
this["FloralWhite"] =0xFFFAF0
this["Snow"] =0xFFFAFA
this["Yellow"] =0xFFFF00
this["LightYellow"] =0xFFFFE0
this["Ivory"] =0xFFFFF0
this["White"] =0xFFFFFF
this["black"] =0x000000
this["navy"] =0x000080
this["darkblue"] =0x00008b
this["mediumblue"] =0x0000cd
this["blue"] =0x0000ff
this["darkgreen"] =0x006400
this["green"] =0x008000
this["teal"] =0x008080
this["darkcyan"] =0x008b8b
this["deepskyblue"] =0x00bfff
this["darkturquoise"] =0x00ced1
this["mediumspringgreen"] =0x00fa9a
this["lime"] =0x00ff00
this["springgreen"] =0x00ff7f
this["aqua"] =0x00ffff
this["cyan"] =0x00ffff
this["midnightblue"] =0x191970
this["dodgerblue"] =0x1e90ff
this["lightseagreen"] =0x20b2aa
this["forestgreen"] =0x228b22
this["seagreen"] =0x2e8b57
this["darkslategray"] =0x2f4f4f
this["darkslategrey"] =0x2f4f4f
this["limegreen"] =0x32cd32
this["mediumseagreen"] =0x3cb371
this["turquoise"] =0x40e0d0
this["royalblue"] =0x4169e1
this["steelblue"] =0x4682b4
this["darkslateblue"] =0x483d8b
this["mediumturquoise"] =0x48d1cc
this["indigo "] =0x4b0082
this["darkolivegreen"] =0x556b2f
this["cadetblue"] =0x5f9ea0
this["cornflowerblue"] =0x6495ed
this["mediumaquamarine"] =0x66cdaa
this["dimgray"] =0x696969
this["dimgrey"] =0x696969
this["slateblue"] =0x6a5acd
this["olivedrab"] =0x6b8e23
this["slategray"] =0x708090
this["slategrey"] =0x708090
this["lightslategray"] =0x778899
this["lightslategrey"] =0x778899
this["mediumslateblue"] =0x7b68ee
this["lawngreen"] =0x7cfc00
this["chartreuse"] =0x7fff00
this["aquamarine"] =0x7fffd4
this["maroon"] =0x800000
this["purple"] =0x800080
this["olive"] =0x808000
this["gray"] =0x808080
this["grey"] =0x808080
this["skyblue"] =0x87ceeb
this["lightskyblue"] =0x87cefa
this["blueviolet"] =0x8a2be2
this["darkred"] =0x8b0000
this["darkmagenta"] =0x8b008b
this["saddlebrown"] =0x8b4513
this["darkseagreen"] =0x8fbc8f
this["lightgreen"] =0x90ee90
this["mediumpurple"] =0x9370d8
this["darkviolet"] =0x9400d3
this["palegreen"] =0x98fb98
this["darkorchid"] =0x9932cc
this["yellowgreen"] =0x9acd32
this["sienna"] =0xa0522d
this["brown"] =0xa52a2a
this["darkgray"] =0xa9a9a9
this["darkgrey"] =0xa9a9a9
this["lightblue"] =0xadd8e6
this["greenyellow"] =0xadff2f
this["paleturquoise"] =0xafeeee
this["lightsteelblue"] =0xb0c4de
this["powderblue"] =0xb0e0e6
this["firebrick"] =0xb22222
this["darkgoldenrod"] =0xb8860b
this["mediumorchid"] =0xba55d3
this["rosybrown"] =0xbc8f8f
this["darkkhaki"] =0xbdb76b
this["silver"] =0xc0c0c0
this["mediumvioletred"] =0xc71585
this["indianred "] =0xcd5c5c
this["peru"] =0xcd853f
this["chocolate"] =0xd2691e
this["tan"] =0xd2b48c
this["lightgray"] =0xd3d3d3
this["lightgrey"] =0xd3d3d3
this["palevioletred"] =0xd87093
this["thistle"] =0xd8bfd8
this["orchid"] =0xda70d6
this["goldenrod"] =0xdaa520
this["crimson"] =0xdc143c
this["gainsboro"] =0xdcdcdc
this["plum"] =0xdda0dd
this["burlywood"] =0xdeb887
this["lightcyan"] =0xe0ffff
this["lavender"] =0xe6e6fa
this["darksalmon"] =0xe9967a
this["violet"] =0xee82ee
this["palegoldenrod"] =0xeee8aa
this["lightcoral"] =0xf08080
this["khaki"] =0xf0e68c
this["aliceblue"] =0xf0f8ff
this["honeydew"] =0xf0fff0
this["azure"] =0xf0ffff
this["sandybrown"] =0xf4a460
this["wheat"] =0xf5deb3
this["beige"] =0xf5f5dc
this["whitesmoke"] =0xf5f5f5
this["mintcream"] =0xf5fffa
this["ghostwhite"] =0xf8f8ff
this["salmon"] =0xfa8072
this["antiquewhite"] =0xfaebd7
this["linen"] =0xfaf0e6
this["lightgoldenrodyello"] =0xfafad2
this["oldlace"] =0xfdf5e6
this["red"] =0xff0000
this["fuchsia"] =0xff00ff
this["magenta"] =0xff00ff
this["deeppink"] =0xff1493
this["orangered"] =0xff4500
this["tomato"] =0xff6347
this["hotpink"] =0xff69b4
this["coral"] =0xff7f50
this["darkorange"] =0xff8c00
this["lightsalmon"] =0xffa07a
this["orange"] =0xffa500
this["lightpink"] =0xffb6c1
this["pink"] =0xffc0cb
this["gold"] =0xffd700
this["peachpuff"] =0xffdab9
this["navajowhite"] =0xffdead
this["moccasin"] =0xffe4b5
this["bisque"] =0xffe4c4
this["mistyrose"] =0xffe4e1
this["blanchedalmond"] =0xffebcd
this["papayawhip"] =0xffefd5
this["lavenderblush"] =0xfff0f5
this["seashell"] =0xfff5ee
this["cornsilk"] =0xfff8dc
this["lemonchiffon"] =0xfffacd
this["floralwhite"] =0xfffaf0
this["snow"] =0xfffafa
this["yellow"] =0xffff00
this["lightyellow"] =0xffffe0
this["ivory"] =0xfffff0
this["white"] =0xffffff
this["BLACK"] =0x000000
this["NAVY"] =0x000080
this["DARKBLUE"] =0x00008B
this["MEDIUMBLUE"] =0x0000CD
this["BLUE"] =0x0000FF
this["DARKGREEN"] =0x006400
this["GREEN"] =0x008000
this["TEAL"] =0x008080
this["DARKCYAN"] =0x008B8B
this["DEEPSKYBLUE"] =0x00BFFF
this["DARKTURQUOISE"] =0x00CED1
this["MEDIUMSPRINGGREEN"] =0x00FA9A
this["LIME"] =0x00FF00
this["SPRINGGREEN"] =0x00FF7F
this["AQUA"] =0x00FFFF
this["CYAN"] =0x00FFFF
this["MIDNIGHTBLUE"] =0x191970
this["DODGERBLUE"] =0x1E90FF
this["LIGHTSEAGREEN"] =0x20B2AA
this["FORESTGREEN"] =0x228B22
this["SEAGREEN"] =0x2E8B57
this["DARKSLATEGRAY"] =0x2F4F4F
this["DARKSLATEGREY"] =0x2F4F4F
this["LIMEGREEN"] =0x32CD32
this["MEDIUMSEAGREEN"] =0x3CB371
this["TURQUOISE"] =0x40E0D0
this["ROYALBLUE"] =0x4169E1
this["STEELBLUE"] =0x4682B4
this["DARKSLATEBLUE"] =0x483D8B
this["MEDIUMTURQUOISE"] =0x48D1CC
this["INDIGO "] =0x4B0082
this["DARKOLIVEGREEN"] =0x556B2F
this["CADETBLUE"] =0x5F9EA0
this["CORNFLOWERBLUE"] =0x6495ED
this["MEDIUMAQUAMARINE"] =0x66CDAA
this["DIMGRAY"] =0x696969
this["DIMGREY"] =0x696969
this["SLATEBLUE"] =0x6A5ACD
this["OLIVEDRAB"] =0x6B8E23
this["SLATEGRAY"] =0x708090
this["SLATEGREY"] =0x708090
this["LIGHTSLATEGRAY"] =0x778899
this["LIGHTSLATEGREY"] =0x778899
this["MEDIUMSLATEBLUE"] =0x7B68EE
this["LAWNGREEN"] =0x7CFC00
this["CHARTREUSE"] =0x7FFF00
this["AQUAMARINE"] =0x7FFFD4
this["MAROON"] =0x800000
this["PURPLE"] =0x800080
this["OLIVE"] =0x808000
this["GRAY"] =0x808080
this["GREY"] =0x808080
this["SKYBLUE"] =0x87CEEB
this["LIGHTSKYBLUE"] =0x87CEFA
this["BLUEVIOLET"] =0x8A2BE2
this["DARKRED"] =0x8B0000
this["DARKMAGENTA"] =0x8B008B
this["SADDLEBROWN"] =0x8B4513
this["DARKSEAGREEN"] =0x8FBC8F
this["LIGHTGREEN"] =0x90EE90
this["MEDIUMPURPLE"] =0x9370D8
this["DARKVIOLET"] =0x9400D3
this["PALEGREEN"] =0x98FB98
this["DARKORCHID"] =0x9932CC
this["YELLOWGREEN"] =0x9ACD32
this["SIENNA"] =0xA0522D
this["BROWN"] =0xA52A2A
this["DARKGRAY"] =0xA9A9A9
this["DARKGREY"] =0xA9A9A9
this["LIGHTBLUE"] =0xADD8E6
this["GREENYELLOW"] =0xADFF2F
this["PALETURQUOISE"] =0xAFEEEE
this["LIGHTSTEELBLUE"] =0xB0C4DE
this["POWDERBLUE"] =0xB0E0E6
this["FIREBRICK"] =0xB22222
this["DARKGOLDENROD"] =0xB8860B
this["MEDIUMORCHID"] =0xBA55D3
this["ROSYBROWN"] =0xBC8F8F
this["DARKKHAKI"] =0xBDB76B
this["SILVER"] =0xC0C0C0
this["MEDIUMVIOLETRED"] =0xC71585
this["INDIANRED "] =0xCD5C5C
this["PERU"] =0xCD853F
this["CHOCOLATE"] =0xD2691E
this["TAN"] =0xD2B48C
this["LIGHTGRAY"] =0xD3D3D3
this["LIGHTGREY"] =0xD3D3D3
this["PALEVIOLETRED"] =0xD87093
this["THISTLE"] =0xD8BFD8
this["ORCHID"] =0xDA70D6
this["GOLDENROD"] =0xDAA520
this["CRIMSON"] =0xDC143C
this["GAINSBORO"] =0xDCDCDC
this["PLUM"] =0xDDA0DD
this["BURLYWOOD"] =0xDEB887
this["LIGHTCYAN"] =0xE0FFFF
this["LAVENDER"] =0xE6E6FA
this["DARKSALMON"] =0xE9967A
this["VIOLET"] =0xEE82EE
this["PALEGOLDENROD"] =0xEEE8AA
this["LIGHTCORAL"] =0xF08080
this["KHAKI"] =0xF0E68C
this["ALICEBLUE"] =0xF0F8FF
this["HONEYDEW"] =0xF0FFF0
this["AZURE"] =0xF0FFFF
this["SANDYBROWN"] =0xF4A460
this["WHEAT"] =0xF5DEB3
this["BEIGE"] =0xF5F5DC
this["WHITESMOKE"] =0xF5F5F5
this["MINTCREAM"] =0xF5FFFA
this["GHOSTWHITE"] =0xF8F8FF
this["SALMON"] =0xFA8072
this["ANTIQUEWHITE"] =0xFAEBD7
this["LINEN"] =0xFAF0E6
this["LIGHTGOLDENRODYELLO"] =0xFAFAD2
this["OLDLACE"] =0xFDF5E6
this["RED"] =0xFF0000
this["FUCHSIA"] =0xFF00FF
this["MAGENTA"] =0xFF00FF
this["DEEPPINK"] =0xFF1493
this["ORANGERED"] =0xFF4500
this["TOMATO"] =0xFF6347
this["HOTPINK"] =0xFF69B4
this["CORAL"] =0xFF7F50
this["DARKORANGE"] =0xFF8C00
this["LIGHTSALMON"] =0xFFA07A
this["ORANGE"] =0xFFA500
this["LIGHTPINK"] =0xFFB6C1
this["PINK"] =0xFFC0CB
this["GOLD"] =0xFFD700
this["PEACHPUFF"] =0xFFDAB9
this["NAVAJOWHITE"] =0xFFDEAD
this["MOCCASIN"] =0xFFE4B5
this["BISQUE"] =0xFFE4C4
this["MISTYROSE"] =0xFFE4E1
this["BLANCHEDALMOND"] =0xFFEBCD
this["PAPAYAWHIP"] =0xFFEFD5
this["LAVENDERBLUSH"] =0xFFF0F5
this["SEASHELL"] =0xFFF5EE
this["CORNSILK"] =0xFFF8DC
this["LEMONCHIFFON"] =0xFFFACD
this["FLORALWHITE"] =0xFFFAF0
this["SNOW"] =0xFFFAFA
this["YELLOW"] =0xFFFF00
this["LIGHTYELLOW"] =0xFFFFE0
this["IVORY"] =0xFFFFF0
this["WHITE"] =0xFFFFFF
}
}