Merge pull request #45144 from dalexeev/color-consts
Rename color constants (alternative)
This commit is contained in:
commit
bcbd480c32
|
@ -379,11 +379,11 @@ int Color::find_named_color(const String &p_name) {
|
|||
name = name.replace("_", "");
|
||||
name = name.replace("'", "");
|
||||
name = name.replace(".", "");
|
||||
name = name.to_lower();
|
||||
name = name.to_upper();
|
||||
|
||||
int idx = 0;
|
||||
while (named_colors[idx].name != nullptr) {
|
||||
if (name == named_colors[idx].name) {
|
||||
if (name == String(named_colors[idx].name).replace("_", "")) {
|
||||
return idx;
|
||||
}
|
||||
idx++;
|
||||
|
|
|
@ -9,152 +9,155 @@ struct NamedColor {
|
|||
Color color;
|
||||
};
|
||||
|
||||
// NOTE: This data is duplicated in the file:
|
||||
// modules/mono/glue/GodotSharp/GodotSharp/Core/Colors.cs
|
||||
|
||||
static NamedColor named_colors[] = {
|
||||
{ "aliceblue", Color(0.94, 0.97, 1.00) },
|
||||
{ "antiquewhite", Color(0.98, 0.92, 0.84) },
|
||||
{ "aqua", Color(0.00, 1.00, 1.00) },
|
||||
{ "aquamarine", Color(0.50, 1.00, 0.83) },
|
||||
{ "azure", Color(0.94, 1.00, 1.00) },
|
||||
{ "beige", Color(0.96, 0.96, 0.86) },
|
||||
{ "bisque", Color(1.00, 0.89, 0.77) },
|
||||
{ "black", Color(0.00, 0.00, 0.00) },
|
||||
{ "blanchedalmond", Color(1.00, 0.92, 0.80) },
|
||||
{ "blue", Color(0.00, 0.00, 1.00) },
|
||||
{ "blueviolet", Color(0.54, 0.17, 0.89) },
|
||||
{ "brown", Color(0.65, 0.16, 0.16) },
|
||||
{ "burlywood", Color(0.87, 0.72, 0.53) },
|
||||
{ "cadetblue", Color(0.37, 0.62, 0.63) },
|
||||
{ "chartreuse", Color(0.50, 1.00, 0.00) },
|
||||
{ "chocolate", Color(0.82, 0.41, 0.12) },
|
||||
{ "coral", Color(1.00, 0.50, 0.31) },
|
||||
{ "cornflower", Color(0.39, 0.58, 0.93) },
|
||||
{ "cornsilk", Color(1.00, 0.97, 0.86) },
|
||||
{ "crimson", Color(0.86, 0.08, 0.24) },
|
||||
{ "cyan", Color(0.00, 1.00, 1.00) },
|
||||
{ "darkblue", Color(0.00, 0.00, 0.55) },
|
||||
{ "darkcyan", Color(0.00, 0.55, 0.55) },
|
||||
{ "darkgoldenrod", Color(0.72, 0.53, 0.04) },
|
||||
{ "darkgray", Color(0.66, 0.66, 0.66) },
|
||||
{ "darkgreen", Color(0.00, 0.39, 0.00) },
|
||||
{ "darkkhaki", Color(0.74, 0.72, 0.42) },
|
||||
{ "darkmagenta", Color(0.55, 0.00, 0.55) },
|
||||
{ "darkolivegreen", Color(0.33, 0.42, 0.18) },
|
||||
{ "darkorange", Color(1.00, 0.55, 0.00) },
|
||||
{ "darkorchid", Color(0.60, 0.20, 0.80) },
|
||||
{ "darkred", Color(0.55, 0.00, 0.00) },
|
||||
{ "darksalmon", Color(0.91, 0.59, 0.48) },
|
||||
{ "darkseagreen", Color(0.56, 0.74, 0.56) },
|
||||
{ "darkslateblue", Color(0.28, 0.24, 0.55) },
|
||||
{ "darkslategray", Color(0.18, 0.31, 0.31) },
|
||||
{ "darkturquoise", Color(0.00, 0.81, 0.82) },
|
||||
{ "darkviolet", Color(0.58, 0.00, 0.83) },
|
||||
{ "deeppink", Color(1.00, 0.08, 0.58) },
|
||||
{ "deepskyblue", Color(0.00, 0.75, 1.00) },
|
||||
{ "dimgray", Color(0.41, 0.41, 0.41) },
|
||||
{ "dodgerblue", Color(0.12, 0.56, 1.00) },
|
||||
{ "firebrick", Color(0.70, 0.13, 0.13) },
|
||||
{ "floralwhite", Color(1.00, 0.98, 0.94) },
|
||||
{ "forestgreen", Color(0.13, 0.55, 0.13) },
|
||||
{ "fuchsia", Color(1.00, 0.00, 1.00) },
|
||||
{ "gainsboro", Color(0.86, 0.86, 0.86) },
|
||||
{ "ghostwhite", Color(0.97, 0.97, 1.00) },
|
||||
{ "gold", Color(1.00, 0.84, 0.00) },
|
||||
{ "goldenrod", Color(0.85, 0.65, 0.13) },
|
||||
{ "gray", Color(0.75, 0.75, 0.75) },
|
||||
{ "green", Color(0.00, 1.00, 0.00) },
|
||||
{ "greenyellow", Color(0.68, 1.00, 0.18) },
|
||||
{ "honeydew", Color(0.94, 1.00, 0.94) },
|
||||
{ "hotpink", Color(1.00, 0.41, 0.71) },
|
||||
{ "indianred", Color(0.80, 0.36, 0.36) },
|
||||
{ "indigo", Color(0.29, 0.00, 0.51) },
|
||||
{ "ivory", Color(1.00, 1.00, 0.94) },
|
||||
{ "khaki", Color(0.94, 0.90, 0.55) },
|
||||
{ "lavender", Color(0.90, 0.90, 0.98) },
|
||||
{ "lavenderblush", Color(1.00, 0.94, 0.96) },
|
||||
{ "lawngreen", Color(0.49, 0.99, 0.00) },
|
||||
{ "lemonchiffon", Color(1.00, 0.98, 0.80) },
|
||||
{ "lightblue", Color(0.68, 0.85, 0.90) },
|
||||
{ "lightcoral", Color(0.94, 0.50, 0.50) },
|
||||
{ "lightcyan", Color(0.88, 1.00, 1.00) },
|
||||
{ "lightgoldenrod", Color(0.98, 0.98, 0.82) },
|
||||
{ "lightgray", Color(0.83, 0.83, 0.83) },
|
||||
{ "lightgreen", Color(0.56, 0.93, 0.56) },
|
||||
{ "lightpink", Color(1.00, 0.71, 0.76) },
|
||||
{ "lightsalmon", Color(1.00, 0.63, 0.48) },
|
||||
{ "lightseagreen", Color(0.13, 0.70, 0.67) },
|
||||
{ "lightskyblue", Color(0.53, 0.81, 0.98) },
|
||||
{ "lightslategray", Color(0.47, 0.53, 0.60) },
|
||||
{ "lightsteelblue", Color(0.69, 0.77, 0.87) },
|
||||
{ "lightyellow", Color(1.00, 1.00, 0.88) },
|
||||
{ "lime", Color(0.00, 1.00, 0.00) },
|
||||
{ "limegreen", Color(0.20, 0.80, 0.20) },
|
||||
{ "linen", Color(0.98, 0.94, 0.90) },
|
||||
{ "magenta", Color(1.00, 0.00, 1.00) },
|
||||
{ "maroon", Color(0.69, 0.19, 0.38) },
|
||||
{ "mediumaquamarine", Color(0.40, 0.80, 0.67) },
|
||||
{ "mediumblue", Color(0.00, 0.00, 0.80) },
|
||||
{ "mediumorchid", Color(0.73, 0.33, 0.83) },
|
||||
{ "mediumpurple", Color(0.58, 0.44, 0.86) },
|
||||
{ "mediumseagreen", Color(0.24, 0.70, 0.44) },
|
||||
{ "mediumslateblue", Color(0.48, 0.41, 0.93) },
|
||||
{ "mediumspringgreen", Color(0.00, 0.98, 0.60) },
|
||||
{ "mediumturquoise", Color(0.28, 0.82, 0.80) },
|
||||
{ "mediumvioletred", Color(0.78, 0.08, 0.52) },
|
||||
{ "midnightblue", Color(0.10, 0.10, 0.44) },
|
||||
{ "mintcream", Color(0.96, 1.00, 0.98) },
|
||||
{ "mistyrose", Color(1.00, 0.89, 0.88) },
|
||||
{ "moccasin", Color(1.00, 0.89, 0.71) },
|
||||
{ "navajowhite", Color(1.00, 0.87, 0.68) },
|
||||
{ "navyblue", Color(0.00, 0.00, 0.50) },
|
||||
{ "oldlace", Color(0.99, 0.96, 0.90) },
|
||||
{ "olive", Color(0.50, 0.50, 0.00) },
|
||||
{ "olivedrab", Color(0.42, 0.56, 0.14) },
|
||||
{ "orange", Color(1.00, 0.65, 0.00) },
|
||||
{ "orangered", Color(1.00, 0.27, 0.00) },
|
||||
{ "orchid", Color(0.85, 0.44, 0.84) },
|
||||
{ "palegoldenrod", Color(0.93, 0.91, 0.67) },
|
||||
{ "palegreen", Color(0.60, 0.98, 0.60) },
|
||||
{ "paleturquoise", Color(0.69, 0.93, 0.93) },
|
||||
{ "palevioletred", Color(0.86, 0.44, 0.58) },
|
||||
{ "papayawhip", Color(1.00, 0.94, 0.84) },
|
||||
{ "peachpuff", Color(1.00, 0.85, 0.73) },
|
||||
{ "peru", Color(0.80, 0.52, 0.25) },
|
||||
{ "pink", Color(1.00, 0.75, 0.80) },
|
||||
{ "plum", Color(0.87, 0.63, 0.87) },
|
||||
{ "powderblue", Color(0.69, 0.88, 0.90) },
|
||||
{ "purple", Color(0.63, 0.13, 0.94) },
|
||||
{ "rebeccapurple", Color(0.40, 0.20, 0.60) },
|
||||
{ "red", Color(1.00, 0.00, 0.00) },
|
||||
{ "rosybrown", Color(0.74, 0.56, 0.56) },
|
||||
{ "royalblue", Color(0.25, 0.41, 0.88) },
|
||||
{ "saddlebrown", Color(0.55, 0.27, 0.07) },
|
||||
{ "salmon", Color(0.98, 0.50, 0.45) },
|
||||
{ "sandybrown", Color(0.96, 0.64, 0.38) },
|
||||
{ "seagreen", Color(0.18, 0.55, 0.34) },
|
||||
{ "seashell", Color(1.00, 0.96, 0.93) },
|
||||
{ "sienna", Color(0.63, 0.32, 0.18) },
|
||||
{ "silver", Color(0.75, 0.75, 0.75) },
|
||||
{ "skyblue", Color(0.53, 0.81, 0.92) },
|
||||
{ "slateblue", Color(0.42, 0.35, 0.80) },
|
||||
{ "slategray", Color(0.44, 0.50, 0.56) },
|
||||
{ "snow", Color(1.00, 0.98, 0.98) },
|
||||
{ "springgreen", Color(0.00, 1.00, 0.50) },
|
||||
{ "steelblue", Color(0.27, 0.51, 0.71) },
|
||||
{ "tan", Color(0.82, 0.71, 0.55) },
|
||||
{ "teal", Color(0.00, 0.50, 0.50) },
|
||||
{ "thistle", Color(0.85, 0.75, 0.85) },
|
||||
{ "tomato", Color(1.00, 0.39, 0.28) },
|
||||
{ "transparent", Color(1.00, 1.00, 1.00, 0.00) },
|
||||
{ "turquoise", Color(0.25, 0.88, 0.82) },
|
||||
{ "violet", Color(0.93, 0.51, 0.93) },
|
||||
{ "webgray", Color(0.50, 0.50, 0.50) },
|
||||
{ "webgreen", Color(0.00, 0.50, 0.00) },
|
||||
{ "webmaroon", Color(0.50, 0.00, 0.00) },
|
||||
{ "webpurple", Color(0.50, 0.00, 0.50) },
|
||||
{ "wheat", Color(0.96, 0.87, 0.70) },
|
||||
{ "white", Color(1.00, 1.00, 1.00) },
|
||||
{ "whitesmoke", Color(0.96, 0.96, 0.96) },
|
||||
{ "yellow", Color(1.00, 1.00, 0.00) },
|
||||
{ "yellowgreen", Color(0.60, 0.80, 0.20) },
|
||||
{ "ALICE_BLUE", Color(0.94, 0.97, 1.00) },
|
||||
{ "ANTIQUE_WHITE", Color(0.98, 0.92, 0.84) },
|
||||
{ "AQUA", Color(0.00, 1.00, 1.00) },
|
||||
{ "AQUAMARINE", Color(0.50, 1.00, 0.83) },
|
||||
{ "AZURE", Color(0.94, 1.00, 1.00) },
|
||||
{ "BEIGE", Color(0.96, 0.96, 0.86) },
|
||||
{ "BISQUE", Color(1.00, 0.89, 0.77) },
|
||||
{ "BLACK", Color(0.00, 0.00, 0.00) },
|
||||
{ "BLANCHED_ALMOND", Color(1.00, 0.92, 0.80) },
|
||||
{ "BLUE", Color(0.00, 0.00, 1.00) },
|
||||
{ "BLUE_VIOLET", Color(0.54, 0.17, 0.89) },
|
||||
{ "BROWN", Color(0.65, 0.16, 0.16) },
|
||||
{ "BURLYWOOD", Color(0.87, 0.72, 0.53) },
|
||||
{ "CADET_BLUE", Color(0.37, 0.62, 0.63) },
|
||||
{ "CHARTREUSE", Color(0.50, 1.00, 0.00) },
|
||||
{ "CHOCOLATE", Color(0.82, 0.41, 0.12) },
|
||||
{ "CORAL", Color(1.00, 0.50, 0.31) },
|
||||
{ "CORNFLOWER_BLUE", Color(0.39, 0.58, 0.93) },
|
||||
{ "CORNSILK", Color(1.00, 0.97, 0.86) },
|
||||
{ "CRIMSON", Color(0.86, 0.08, 0.24) },
|
||||
{ "CYAN", Color(0.00, 1.00, 1.00) },
|
||||
{ "DARK_BLUE", Color(0.00, 0.00, 0.55) },
|
||||
{ "DARK_CYAN", Color(0.00, 0.55, 0.55) },
|
||||
{ "DARK_GOLDENROD", Color(0.72, 0.53, 0.04) },
|
||||
{ "DARK_GRAY", Color(0.66, 0.66, 0.66) },
|
||||
{ "DARK_GREEN", Color(0.00, 0.39, 0.00) },
|
||||
{ "DARK_KHAKI", Color(0.74, 0.72, 0.42) },
|
||||
{ "DARK_MAGENTA", Color(0.55, 0.00, 0.55) },
|
||||
{ "DARK_OLIVE_GREEN", Color(0.33, 0.42, 0.18) },
|
||||
{ "DARK_ORANGE", Color(1.00, 0.55, 0.00) },
|
||||
{ "DARK_ORCHID", Color(0.60, 0.20, 0.80) },
|
||||
{ "DARK_RED", Color(0.55, 0.00, 0.00) },
|
||||
{ "DARK_SALMON", Color(0.91, 0.59, 0.48) },
|
||||
{ "DARK_SEA_GREEN", Color(0.56, 0.74, 0.56) },
|
||||
{ "DARK_SLATE_BLUE", Color(0.28, 0.24, 0.55) },
|
||||
{ "DARK_SLATE_GRAY", Color(0.18, 0.31, 0.31) },
|
||||
{ "DARK_TURQUOISE", Color(0.00, 0.81, 0.82) },
|
||||
{ "DARK_VIOLET", Color(0.58, 0.00, 0.83) },
|
||||
{ "DEEP_PINK", Color(1.00, 0.08, 0.58) },
|
||||
{ "DEEP_SKY_BLUE", Color(0.00, 0.75, 1.00) },
|
||||
{ "DIM_GRAY", Color(0.41, 0.41, 0.41) },
|
||||
{ "DODGER_BLUE", Color(0.12, 0.56, 1.00) },
|
||||
{ "FIREBRICK", Color(0.70, 0.13, 0.13) },
|
||||
{ "FLORAL_WHITE", Color(1.00, 0.98, 0.94) },
|
||||
{ "FOREST_GREEN", Color(0.13, 0.55, 0.13) },
|
||||
{ "FUCHSIA", Color(1.00, 0.00, 1.00) },
|
||||
{ "GAINSBORO", Color(0.86, 0.86, 0.86) },
|
||||
{ "GHOST_WHITE", Color(0.97, 0.97, 1.00) },
|
||||
{ "GOLD", Color(1.00, 0.84, 0.00) },
|
||||
{ "GOLDENROD", Color(0.85, 0.65, 0.13) },
|
||||
{ "GRAY", Color(0.75, 0.75, 0.75) },
|
||||
{ "GREEN", Color(0.00, 1.00, 0.00) },
|
||||
{ "GREEN_YELLOW", Color(0.68, 1.00, 0.18) },
|
||||
{ "HONEYDEW", Color(0.94, 1.00, 0.94) },
|
||||
{ "HOT_PINK", Color(1.00, 0.41, 0.71) },
|
||||
{ "INDIAN_RED", Color(0.80, 0.36, 0.36) },
|
||||
{ "INDIGO", Color(0.29, 0.00, 0.51) },
|
||||
{ "IVORY", Color(1.00, 1.00, 0.94) },
|
||||
{ "KHAKI", Color(0.94, 0.90, 0.55) },
|
||||
{ "LAVENDER", Color(0.90, 0.90, 0.98) },
|
||||
{ "LAVENDER_BLUSH", Color(1.00, 0.94, 0.96) },
|
||||
{ "LAWN_GREEN", Color(0.49, 0.99, 0.00) },
|
||||
{ "LEMON_CHIFFON", Color(1.00, 0.98, 0.80) },
|
||||
{ "LIGHT_BLUE", Color(0.68, 0.85, 0.90) },
|
||||
{ "LIGHT_CORAL", Color(0.94, 0.50, 0.50) },
|
||||
{ "LIGHT_CYAN", Color(0.88, 1.00, 1.00) },
|
||||
{ "LIGHT_GOLDENROD", Color(0.98, 0.98, 0.82) },
|
||||
{ "LIGHT_GRAY", Color(0.83, 0.83, 0.83) },
|
||||
{ "LIGHT_GREEN", Color(0.56, 0.93, 0.56) },
|
||||
{ "LIGHT_PINK", Color(1.00, 0.71, 0.76) },
|
||||
{ "LIGHT_SALMON", Color(1.00, 0.63, 0.48) },
|
||||
{ "LIGHT_SEA_GREEN", Color(0.13, 0.70, 0.67) },
|
||||
{ "LIGHT_SKY_BLUE", Color(0.53, 0.81, 0.98) },
|
||||
{ "LIGHT_SLATE_GRAY", Color(0.47, 0.53, 0.60) },
|
||||
{ "LIGHT_STEEL_BLUE", Color(0.69, 0.77, 0.87) },
|
||||
{ "LIGHT_YELLOW", Color(1.00, 1.00, 0.88) },
|
||||
{ "LIME", Color(0.00, 1.00, 0.00) },
|
||||
{ "LIME_GREEN", Color(0.20, 0.80, 0.20) },
|
||||
{ "LINEN", Color(0.98, 0.94, 0.90) },
|
||||
{ "MAGENTA", Color(1.00, 0.00, 1.00) },
|
||||
{ "MAROON", Color(0.69, 0.19, 0.38) },
|
||||
{ "MEDIUM_AQUAMARINE", Color(0.40, 0.80, 0.67) },
|
||||
{ "MEDIUM_BLUE", Color(0.00, 0.00, 0.80) },
|
||||
{ "MEDIUM_ORCHID", Color(0.73, 0.33, 0.83) },
|
||||
{ "MEDIUM_PURPLE", Color(0.58, 0.44, 0.86) },
|
||||
{ "MEDIUM_SEA_GREEN", Color(0.24, 0.70, 0.44) },
|
||||
{ "MEDIUM_SLATE_BLUE", Color(0.48, 0.41, 0.93) },
|
||||
{ "MEDIUM_SPRING_GREEN", Color(0.00, 0.98, 0.60) },
|
||||
{ "MEDIUM_TURQUOISE", Color(0.28, 0.82, 0.80) },
|
||||
{ "MEDIUM_VIOLET_RED", Color(0.78, 0.08, 0.52) },
|
||||
{ "MIDNIGHT_BLUE", Color(0.10, 0.10, 0.44) },
|
||||
{ "MINT_CREAM", Color(0.96, 1.00, 0.98) },
|
||||
{ "MISTY_ROSE", Color(1.00, 0.89, 0.88) },
|
||||
{ "MOCCASIN", Color(1.00, 0.89, 0.71) },
|
||||
{ "NAVAJO_WHITE", Color(1.00, 0.87, 0.68) },
|
||||
{ "NAVY_BLUE", Color(0.00, 0.00, 0.50) },
|
||||
{ "OLD_LACE", Color(0.99, 0.96, 0.90) },
|
||||
{ "OLIVE", Color(0.50, 0.50, 0.00) },
|
||||
{ "OLIVE_DRAB", Color(0.42, 0.56, 0.14) },
|
||||
{ "ORANGE", Color(1.00, 0.65, 0.00) },
|
||||
{ "ORANGE_RED", Color(1.00, 0.27, 0.00) },
|
||||
{ "ORCHID", Color(0.85, 0.44, 0.84) },
|
||||
{ "PALE_GOLDENROD", Color(0.93, 0.91, 0.67) },
|
||||
{ "PALE_GREEN", Color(0.60, 0.98, 0.60) },
|
||||
{ "PALE_TURQUOISE", Color(0.69, 0.93, 0.93) },
|
||||
{ "PALE_VIOLET_RED", Color(0.86, 0.44, 0.58) },
|
||||
{ "PAPAYA_WHIP", Color(1.00, 0.94, 0.84) },
|
||||
{ "PEACH_PUFF", Color(1.00, 0.85, 0.73) },
|
||||
{ "PERU", Color(0.80, 0.52, 0.25) },
|
||||
{ "PINK", Color(1.00, 0.75, 0.80) },
|
||||
{ "PLUM", Color(0.87, 0.63, 0.87) },
|
||||
{ "POWDER_BLUE", Color(0.69, 0.88, 0.90) },
|
||||
{ "PURPLE", Color(0.63, 0.13, 0.94) },
|
||||
{ "REBECCA_PURPLE", Color(0.40, 0.20, 0.60) },
|
||||
{ "RED", Color(1.00, 0.00, 0.00) },
|
||||
{ "ROSY_BROWN", Color(0.74, 0.56, 0.56) },
|
||||
{ "ROYAL_BLUE", Color(0.25, 0.41, 0.88) },
|
||||
{ "SADDLE_BROWN", Color(0.55, 0.27, 0.07) },
|
||||
{ "SALMON", Color(0.98, 0.50, 0.45) },
|
||||
{ "SANDY_BROWN", Color(0.96, 0.64, 0.38) },
|
||||
{ "SEA_GREEN", Color(0.18, 0.55, 0.34) },
|
||||
{ "SEASHELL", Color(1.00, 0.96, 0.93) },
|
||||
{ "SIENNA", Color(0.63, 0.32, 0.18) },
|
||||
{ "SILVER", Color(0.75, 0.75, 0.75) },
|
||||
{ "SKY_BLUE", Color(0.53, 0.81, 0.92) },
|
||||
{ "SLATE_BLUE", Color(0.42, 0.35, 0.80) },
|
||||
{ "SLATE_GRAY", Color(0.44, 0.50, 0.56) },
|
||||
{ "SNOW", Color(1.00, 0.98, 0.98) },
|
||||
{ "SPRING_GREEN", Color(0.00, 1.00, 0.50) },
|
||||
{ "STEEL_BLUE", Color(0.27, 0.51, 0.71) },
|
||||
{ "TAN", Color(0.82, 0.71, 0.55) },
|
||||
{ "TEAL", Color(0.00, 0.50, 0.50) },
|
||||
{ "THISTLE", Color(0.85, 0.75, 0.85) },
|
||||
{ "TOMATO", Color(1.00, 0.39, 0.28) },
|
||||
{ "TRANSPARENT", Color(1.00, 1.00, 1.00, 0.00) },
|
||||
{ "TURQUOISE", Color(0.25, 0.88, 0.82) },
|
||||
{ "VIOLET", Color(0.93, 0.51, 0.93) },
|
||||
{ "WEB_GRAY", Color(0.50, 0.50, 0.50) },
|
||||
{ "WEB_GREEN", Color(0.00, 0.50, 0.00) },
|
||||
{ "WEB_MAROON", Color(0.50, 0.00, 0.00) },
|
||||
{ "WEB_PURPLE", Color(0.50, 0.00, 0.50) },
|
||||
{ "WHEAT", Color(0.96, 0.87, 0.70) },
|
||||
{ "WHITE", Color(1.00, 1.00, 1.00) },
|
||||
{ "WHITE_SMOKE", Color(0.96, 0.96, 0.96) },
|
||||
{ "YELLOW", Color(1.00, 1.00, 0.00) },
|
||||
{ "YELLOW_GREEN", Color(0.60, 0.80, 0.20) },
|
||||
{ nullptr, Color() },
|
||||
};
|
||||
|
|
|
@ -564,442 +564,442 @@
|
|||
</member>
|
||||
</members>
|
||||
<constants>
|
||||
<constant name="aliceblue" value="Color( 0.94, 0.97, 1, 1 )">
|
||||
<constant name="ALICE_BLUE" value="Color( 0.94, 0.97, 1, 1 )">
|
||||
Alice blue color.
|
||||
</constant>
|
||||
<constant name="antiquewhite" value="Color( 0.98, 0.92, 0.84, 1 )">
|
||||
<constant name="ANTIQUE_WHITE" value="Color( 0.98, 0.92, 0.84, 1 )">
|
||||
Antique white color.
|
||||
</constant>
|
||||
<constant name="aqua" value="Color( 0, 1, 1, 1 )">
|
||||
<constant name="AQUA" value="Color( 0, 1, 1, 1 )">
|
||||
Aqua color.
|
||||
</constant>
|
||||
<constant name="aquamarine" value="Color( 0.5, 1, 0.83, 1 )">
|
||||
<constant name="AQUAMARINE" value="Color( 0.5, 1, 0.83, 1 )">
|
||||
Aquamarine color.
|
||||
</constant>
|
||||
<constant name="azure" value="Color( 0.94, 1, 1, 1 )">
|
||||
<constant name="AZURE" value="Color( 0.94, 1, 1, 1 )">
|
||||
Azure color.
|
||||
</constant>
|
||||
<constant name="beige" value="Color( 0.96, 0.96, 0.86, 1 )">
|
||||
<constant name="BEIGE" value="Color( 0.96, 0.96, 0.86, 1 )">
|
||||
Beige color.
|
||||
</constant>
|
||||
<constant name="bisque" value="Color( 1, 0.89, 0.77, 1 )">
|
||||
<constant name="BISQUE" value="Color( 1, 0.89, 0.77, 1 )">
|
||||
Bisque color.
|
||||
</constant>
|
||||
<constant name="black" value="Color( 0, 0, 0, 1 )">
|
||||
<constant name="BLACK" value="Color( 0, 0, 0, 1 )">
|
||||
Black color.
|
||||
</constant>
|
||||
<constant name="blanchedalmond" value="Color( 1, 0.92, 0.8, 1 )">
|
||||
Blanche almond color.
|
||||
<constant name="BLANCHED_ALMOND" value="Color( 1, 0.92, 0.8, 1 )">
|
||||
Blanched almond color.
|
||||
</constant>
|
||||
<constant name="blue" value="Color( 0, 0, 1, 1 )">
|
||||
<constant name="BLUE" value="Color( 0, 0, 1, 1 )">
|
||||
Blue color.
|
||||
</constant>
|
||||
<constant name="blueviolet" value="Color( 0.54, 0.17, 0.89, 1 )">
|
||||
<constant name="BLUE_VIOLET" value="Color( 0.54, 0.17, 0.89, 1 )">
|
||||
Blue violet color.
|
||||
</constant>
|
||||
<constant name="brown" value="Color( 0.65, 0.16, 0.16, 1 )">
|
||||
<constant name="BROWN" value="Color( 0.65, 0.16, 0.16, 1 )">
|
||||
Brown color.
|
||||
</constant>
|
||||
<constant name="burlywood" value="Color( 0.87, 0.72, 0.53, 1 )">
|
||||
Burly wood color.
|
||||
<constant name="BURLYWOOD" value="Color( 0.87, 0.72, 0.53, 1 )">
|
||||
Burlywood color.
|
||||
</constant>
|
||||
<constant name="cadetblue" value="Color( 0.37, 0.62, 0.63, 1 )">
|
||||
<constant name="CADET_BLUE" value="Color( 0.37, 0.62, 0.63, 1 )">
|
||||
Cadet blue color.
|
||||
</constant>
|
||||
<constant name="chartreuse" value="Color( 0.5, 1, 0, 1 )">
|
||||
<constant name="CHARTREUSE" value="Color( 0.5, 1, 0, 1 )">
|
||||
Chartreuse color.
|
||||
</constant>
|
||||
<constant name="chocolate" value="Color( 0.82, 0.41, 0.12, 1 )">
|
||||
<constant name="CHOCOLATE" value="Color( 0.82, 0.41, 0.12, 1 )">
|
||||
Chocolate color.
|
||||
</constant>
|
||||
<constant name="coral" value="Color( 1, 0.5, 0.31, 1 )">
|
||||
<constant name="CORAL" value="Color( 1, 0.5, 0.31, 1 )">
|
||||
Coral color.
|
||||
</constant>
|
||||
<constant name="cornflower" value="Color( 0.39, 0.58, 0.93, 1 )">
|
||||
Cornflower color.
|
||||
<constant name="CORNFLOWER_BLUE" value="Color( 0.39, 0.58, 0.93, 1 )">
|
||||
Cornflower blue color.
|
||||
</constant>
|
||||
<constant name="cornsilk" value="Color( 1, 0.97, 0.86, 1 )">
|
||||
Corn silk color.
|
||||
<constant name="CORNSILK" value="Color( 1, 0.97, 0.86, 1 )">
|
||||
Cornsilk color.
|
||||
</constant>
|
||||
<constant name="crimson" value="Color( 0.86, 0.08, 0.24, 1 )">
|
||||
<constant name="CRIMSON" value="Color( 0.86, 0.08, 0.24, 1 )">
|
||||
Crimson color.
|
||||
</constant>
|
||||
<constant name="cyan" value="Color( 0, 1, 1, 1 )">
|
||||
<constant name="CYAN" value="Color( 0, 1, 1, 1 )">
|
||||
Cyan color.
|
||||
</constant>
|
||||
<constant name="darkblue" value="Color( 0, 0, 0.55, 1 )">
|
||||
<constant name="DARK_BLUE" value="Color( 0, 0, 0.55, 1 )">
|
||||
Dark blue color.
|
||||
</constant>
|
||||
<constant name="darkcyan" value="Color( 0, 0.55, 0.55, 1 )">
|
||||
<constant name="DARK_CYAN" value="Color( 0, 0.55, 0.55, 1 )">
|
||||
Dark cyan color.
|
||||
</constant>
|
||||
<constant name="darkgoldenrod" value="Color( 0.72, 0.53, 0.04, 1 )">
|
||||
<constant name="DARK_GOLDENROD" value="Color( 0.72, 0.53, 0.04, 1 )">
|
||||
Dark goldenrod color.
|
||||
</constant>
|
||||
<constant name="darkgray" value="Color( 0.66, 0.66, 0.66, 1 )">
|
||||
<constant name="DARK_GRAY" value="Color( 0.66, 0.66, 0.66, 1 )">
|
||||
Dark gray color.
|
||||
</constant>
|
||||
<constant name="darkgreen" value="Color( 0, 0.39, 0, 1 )">
|
||||
<constant name="DARK_GREEN" value="Color( 0, 0.39, 0, 1 )">
|
||||
Dark green color.
|
||||
</constant>
|
||||
<constant name="darkkhaki" value="Color( 0.74, 0.72, 0.42, 1 )">
|
||||
<constant name="DARK_KHAKI" value="Color( 0.74, 0.72, 0.42, 1 )">
|
||||
Dark khaki color.
|
||||
</constant>
|
||||
<constant name="darkmagenta" value="Color( 0.55, 0, 0.55, 1 )">
|
||||
<constant name="DARK_MAGENTA" value="Color( 0.55, 0, 0.55, 1 )">
|
||||
Dark magenta color.
|
||||
</constant>
|
||||
<constant name="darkolivegreen" value="Color( 0.33, 0.42, 0.18, 1 )">
|
||||
<constant name="DARK_OLIVE_GREEN" value="Color( 0.33, 0.42, 0.18, 1 )">
|
||||
Dark olive green color.
|
||||
</constant>
|
||||
<constant name="darkorange" value="Color( 1, 0.55, 0, 1 )">
|
||||
<constant name="DARK_ORANGE" value="Color( 1, 0.55, 0, 1 )">
|
||||
Dark orange color.
|
||||
</constant>
|
||||
<constant name="darkorchid" value="Color( 0.6, 0.2, 0.8, 1 )">
|
||||
<constant name="DARK_ORCHID" value="Color( 0.6, 0.2, 0.8, 1 )">
|
||||
Dark orchid color.
|
||||
</constant>
|
||||
<constant name="darkred" value="Color( 0.55, 0, 0, 1 )">
|
||||
<constant name="DARK_RED" value="Color( 0.55, 0, 0, 1 )">
|
||||
Dark red color.
|
||||
</constant>
|
||||
<constant name="darksalmon" value="Color( 0.91, 0.59, 0.48, 1 )">
|
||||
<constant name="DARK_SALMON" value="Color( 0.91, 0.59, 0.48, 1 )">
|
||||
Dark salmon color.
|
||||
</constant>
|
||||
<constant name="darkseagreen" value="Color( 0.56, 0.74, 0.56, 1 )">
|
||||
<constant name="DARK_SEA_GREEN" value="Color( 0.56, 0.74, 0.56, 1 )">
|
||||
Dark sea green color.
|
||||
</constant>
|
||||
<constant name="darkslateblue" value="Color( 0.28, 0.24, 0.55, 1 )">
|
||||
<constant name="DARK_SLATE_BLUE" value="Color( 0.28, 0.24, 0.55, 1 )">
|
||||
Dark slate blue color.
|
||||
</constant>
|
||||
<constant name="darkslategray" value="Color( 0.18, 0.31, 0.31, 1 )">
|
||||
<constant name="DARK_SLATE_GRAY" value="Color( 0.18, 0.31, 0.31, 1 )">
|
||||
Dark slate gray color.
|
||||
</constant>
|
||||
<constant name="darkturquoise" value="Color( 0, 0.81, 0.82, 1 )">
|
||||
<constant name="DARK_TURQUOISE" value="Color( 0, 0.81, 0.82, 1 )">
|
||||
Dark turquoise color.
|
||||
</constant>
|
||||
<constant name="darkviolet" value="Color( 0.58, 0, 0.83, 1 )">
|
||||
<constant name="DARK_VIOLET" value="Color( 0.58, 0, 0.83, 1 )">
|
||||
Dark violet color.
|
||||
</constant>
|
||||
<constant name="deeppink" value="Color( 1, 0.08, 0.58, 1 )">
|
||||
<constant name="DEEP_PINK" value="Color( 1, 0.08, 0.58, 1 )">
|
||||
Deep pink color.
|
||||
</constant>
|
||||
<constant name="deepskyblue" value="Color( 0, 0.75, 1, 1 )">
|
||||
<constant name="DEEP_SKY_BLUE" value="Color( 0, 0.75, 1, 1 )">
|
||||
Deep sky blue color.
|
||||
</constant>
|
||||
<constant name="dimgray" value="Color( 0.41, 0.41, 0.41, 1 )">
|
||||
<constant name="DIM_GRAY" value="Color( 0.41, 0.41, 0.41, 1 )">
|
||||
Dim gray color.
|
||||
</constant>
|
||||
<constant name="dodgerblue" value="Color( 0.12, 0.56, 1, 1 )">
|
||||
<constant name="DODGER_BLUE" value="Color( 0.12, 0.56, 1, 1 )">
|
||||
Dodger blue color.
|
||||
</constant>
|
||||
<constant name="firebrick" value="Color( 0.7, 0.13, 0.13, 1 )">
|
||||
<constant name="FIREBRICK" value="Color( 0.7, 0.13, 0.13, 1 )">
|
||||
Firebrick color.
|
||||
</constant>
|
||||
<constant name="floralwhite" value="Color( 1, 0.98, 0.94, 1 )">
|
||||
<constant name="FLORAL_WHITE" value="Color( 1, 0.98, 0.94, 1 )">
|
||||
Floral white color.
|
||||
</constant>
|
||||
<constant name="forestgreen" value="Color( 0.13, 0.55, 0.13, 1 )">
|
||||
<constant name="FOREST_GREEN" value="Color( 0.13, 0.55, 0.13, 1 )">
|
||||
Forest green color.
|
||||
</constant>
|
||||
<constant name="fuchsia" value="Color( 1, 0, 1, 1 )">
|
||||
<constant name="FUCHSIA" value="Color( 1, 0, 1, 1 )">
|
||||
Fuchsia color.
|
||||
</constant>
|
||||
<constant name="gainsboro" value="Color( 0.86, 0.86, 0.86, 1 )">
|
||||
<constant name="GAINSBORO" value="Color( 0.86, 0.86, 0.86, 1 )">
|
||||
Gainsboro color.
|
||||
</constant>
|
||||
<constant name="ghostwhite" value="Color( 0.97, 0.97, 1, 1 )">
|
||||
<constant name="GHOST_WHITE" value="Color( 0.97, 0.97, 1, 1 )">
|
||||
Ghost white color.
|
||||
</constant>
|
||||
<constant name="gold" value="Color( 1, 0.84, 0, 1 )">
|
||||
<constant name="GOLD" value="Color( 1, 0.84, 0, 1 )">
|
||||
Gold color.
|
||||
</constant>
|
||||
<constant name="goldenrod" value="Color( 0.85, 0.65, 0.13, 1 )">
|
||||
<constant name="GOLDENROD" value="Color( 0.85, 0.65, 0.13, 1 )">
|
||||
Goldenrod color.
|
||||
</constant>
|
||||
<constant name="gray" value="Color( 0.75, 0.75, 0.75, 1 )">
|
||||
<constant name="GRAY" value="Color( 0.75, 0.75, 0.75, 1 )">
|
||||
Gray color.
|
||||
</constant>
|
||||
<constant name="green" value="Color( 0, 1, 0, 1 )">
|
||||
<constant name="GREEN" value="Color( 0, 1, 0, 1 )">
|
||||
Green color.
|
||||
</constant>
|
||||
<constant name="greenyellow" value="Color( 0.68, 1, 0.18, 1 )">
|
||||
<constant name="GREEN_YELLOW" value="Color( 0.68, 1, 0.18, 1 )">
|
||||
Green yellow color.
|
||||
</constant>
|
||||
<constant name="honeydew" value="Color( 0.94, 1, 0.94, 1 )">
|
||||
<constant name="HONEYDEW" value="Color( 0.94, 1, 0.94, 1 )">
|
||||
Honeydew color.
|
||||
</constant>
|
||||
<constant name="hotpink" value="Color( 1, 0.41, 0.71, 1 )">
|
||||
<constant name="HOT_PINK" value="Color( 1, 0.41, 0.71, 1 )">
|
||||
Hot pink color.
|
||||
</constant>
|
||||
<constant name="indianred" value="Color( 0.8, 0.36, 0.36, 1 )">
|
||||
<constant name="INDIAN_RED" value="Color( 0.8, 0.36, 0.36, 1 )">
|
||||
Indian red color.
|
||||
</constant>
|
||||
<constant name="indigo" value="Color( 0.29, 0, 0.51, 1 )">
|
||||
<constant name="INDIGO" value="Color( 0.29, 0, 0.51, 1 )">
|
||||
Indigo color.
|
||||
</constant>
|
||||
<constant name="ivory" value="Color( 1, 1, 0.94, 1 )">
|
||||
<constant name="IVORY" value="Color( 1, 1, 0.94, 1 )">
|
||||
Ivory color.
|
||||
</constant>
|
||||
<constant name="khaki" value="Color( 0.94, 0.9, 0.55, 1 )">
|
||||
<constant name="KHAKI" value="Color( 0.94, 0.9, 0.55, 1 )">
|
||||
Khaki color.
|
||||
</constant>
|
||||
<constant name="lavender" value="Color( 0.9, 0.9, 0.98, 1 )">
|
||||
<constant name="LAVENDER" value="Color( 0.9, 0.9, 0.98, 1 )">
|
||||
Lavender color.
|
||||
</constant>
|
||||
<constant name="lavenderblush" value="Color( 1, 0.94, 0.96, 1 )">
|
||||
<constant name="LAVENDER_BLUSH" value="Color( 1, 0.94, 0.96, 1 )">
|
||||
Lavender blush color.
|
||||
</constant>
|
||||
<constant name="lawngreen" value="Color( 0.49, 0.99, 0, 1 )">
|
||||
<constant name="LAWN_GREEN" value="Color( 0.49, 0.99, 0, 1 )">
|
||||
Lawn green color.
|
||||
</constant>
|
||||
<constant name="lemonchiffon" value="Color( 1, 0.98, 0.8, 1 )">
|
||||
<constant name="LEMON_CHIFFON" value="Color( 1, 0.98, 0.8, 1 )">
|
||||
Lemon chiffon color.
|
||||
</constant>
|
||||
<constant name="lightblue" value="Color( 0.68, 0.85, 0.9, 1 )">
|
||||
<constant name="LIGHT_BLUE" value="Color( 0.68, 0.85, 0.9, 1 )">
|
||||
Light blue color.
|
||||
</constant>
|
||||
<constant name="lightcoral" value="Color( 0.94, 0.5, 0.5, 1 )">
|
||||
<constant name="LIGHT_CORAL" value="Color( 0.94, 0.5, 0.5, 1 )">
|
||||
Light coral color.
|
||||
</constant>
|
||||
<constant name="lightcyan" value="Color( 0.88, 1, 1, 1 )">
|
||||
<constant name="LIGHT_CYAN" value="Color( 0.88, 1, 1, 1 )">
|
||||
Light cyan color.
|
||||
</constant>
|
||||
<constant name="lightgoldenrod" value="Color( 0.98, 0.98, 0.82, 1 )">
|
||||
<constant name="LIGHT_GOLDENROD" value="Color( 0.98, 0.98, 0.82, 1 )">
|
||||
Light goldenrod color.
|
||||
</constant>
|
||||
<constant name="lightgray" value="Color( 0.83, 0.83, 0.83, 1 )">
|
||||
<constant name="LIGHT_GRAY" value="Color( 0.83, 0.83, 0.83, 1 )">
|
||||
Light gray color.
|
||||
</constant>
|
||||
<constant name="lightgreen" value="Color( 0.56, 0.93, 0.56, 1 )">
|
||||
<constant name="LIGHT_GREEN" value="Color( 0.56, 0.93, 0.56, 1 )">
|
||||
Light green color.
|
||||
</constant>
|
||||
<constant name="lightpink" value="Color( 1, 0.71, 0.76, 1 )">
|
||||
<constant name="LIGHT_PINK" value="Color( 1, 0.71, 0.76, 1 )">
|
||||
Light pink color.
|
||||
</constant>
|
||||
<constant name="lightsalmon" value="Color( 1, 0.63, 0.48, 1 )">
|
||||
<constant name="LIGHT_SALMON" value="Color( 1, 0.63, 0.48, 1 )">
|
||||
Light salmon color.
|
||||
</constant>
|
||||
<constant name="lightseagreen" value="Color( 0.13, 0.7, 0.67, 1 )">
|
||||
<constant name="LIGHT_SEA_GREEN" value="Color( 0.13, 0.7, 0.67, 1 )">
|
||||
Light sea green color.
|
||||
</constant>
|
||||
<constant name="lightskyblue" value="Color( 0.53, 0.81, 0.98, 1 )">
|
||||
<constant name="LIGHT_SKY_BLUE" value="Color( 0.53, 0.81, 0.98, 1 )">
|
||||
Light sky blue color.
|
||||
</constant>
|
||||
<constant name="lightslategray" value="Color( 0.47, 0.53, 0.6, 1 )">
|
||||
<constant name="LIGHT_SLATE_GRAY" value="Color( 0.47, 0.53, 0.6, 1 )">
|
||||
Light slate gray color.
|
||||
</constant>
|
||||
<constant name="lightsteelblue" value="Color( 0.69, 0.77, 0.87, 1 )">
|
||||
<constant name="LIGHT_STEEL_BLUE" value="Color( 0.69, 0.77, 0.87, 1 )">
|
||||
Light steel blue color.
|
||||
</constant>
|
||||
<constant name="lightyellow" value="Color( 1, 1, 0.88, 1 )">
|
||||
<constant name="LIGHT_YELLOW" value="Color( 1, 1, 0.88, 1 )">
|
||||
Light yellow color.
|
||||
</constant>
|
||||
<constant name="lime" value="Color( 0, 1, 0, 1 )">
|
||||
<constant name="LIME" value="Color( 0, 1, 0, 1 )">
|
||||
Lime color.
|
||||
</constant>
|
||||
<constant name="limegreen" value="Color( 0.2, 0.8, 0.2, 1 )">
|
||||
<constant name="LIME_GREEN" value="Color( 0.2, 0.8, 0.2, 1 )">
|
||||
Lime green color.
|
||||
</constant>
|
||||
<constant name="linen" value="Color( 0.98, 0.94, 0.9, 1 )">
|
||||
<constant name="LINEN" value="Color( 0.98, 0.94, 0.9, 1 )">
|
||||
Linen color.
|
||||
</constant>
|
||||
<constant name="magenta" value="Color( 1, 0, 1, 1 )">
|
||||
<constant name="MAGENTA" value="Color( 1, 0, 1, 1 )">
|
||||
Magenta color.
|
||||
</constant>
|
||||
<constant name="maroon" value="Color( 0.69, 0.19, 0.38, 1 )">
|
||||
<constant name="MAROON" value="Color( 0.69, 0.19, 0.38, 1 )">
|
||||
Maroon color.
|
||||
</constant>
|
||||
<constant name="mediumaquamarine" value="Color( 0.4, 0.8, 0.67, 1 )">
|
||||
<constant name="MEDIUM_AQUAMARINE" value="Color( 0.4, 0.8, 0.67, 1 )">
|
||||
Medium aquamarine color.
|
||||
</constant>
|
||||
<constant name="mediumblue" value="Color( 0, 0, 0.8, 1 )">
|
||||
<constant name="MEDIUM_BLUE" value="Color( 0, 0, 0.8, 1 )">
|
||||
Medium blue color.
|
||||
</constant>
|
||||
<constant name="mediumorchid" value="Color( 0.73, 0.33, 0.83, 1 )">
|
||||
<constant name="MEDIUM_ORCHID" value="Color( 0.73, 0.33, 0.83, 1 )">
|
||||
Medium orchid color.
|
||||
</constant>
|
||||
<constant name="mediumpurple" value="Color( 0.58, 0.44, 0.86, 1 )">
|
||||
<constant name="MEDIUM_PURPLE" value="Color( 0.58, 0.44, 0.86, 1 )">
|
||||
Medium purple color.
|
||||
</constant>
|
||||
<constant name="mediumseagreen" value="Color( 0.24, 0.7, 0.44, 1 )">
|
||||
<constant name="MEDIUM_SEA_GREEN" value="Color( 0.24, 0.7, 0.44, 1 )">
|
||||
Medium sea green color.
|
||||
</constant>
|
||||
<constant name="mediumslateblue" value="Color( 0.48, 0.41, 0.93, 1 )">
|
||||
<constant name="MEDIUM_SLATE_BLUE" value="Color( 0.48, 0.41, 0.93, 1 )">
|
||||
Medium slate blue color.
|
||||
</constant>
|
||||
<constant name="mediumspringgreen" value="Color( 0, 0.98, 0.6, 1 )">
|
||||
<constant name="MEDIUM_SPRING_GREEN" value="Color( 0, 0.98, 0.6, 1 )">
|
||||
Medium spring green color.
|
||||
</constant>
|
||||
<constant name="mediumturquoise" value="Color( 0.28, 0.82, 0.8, 1 )">
|
||||
<constant name="MEDIUM_TURQUOISE" value="Color( 0.28, 0.82, 0.8, 1 )">
|
||||
Medium turquoise color.
|
||||
</constant>
|
||||
<constant name="mediumvioletred" value="Color( 0.78, 0.08, 0.52, 1 )">
|
||||
<constant name="MEDIUM_VIOLET_RED" value="Color( 0.78, 0.08, 0.52, 1 )">
|
||||
Medium violet red color.
|
||||
</constant>
|
||||
<constant name="midnightblue" value="Color( 0.1, 0.1, 0.44, 1 )">
|
||||
<constant name="MIDNIGHT_BLUE" value="Color( 0.1, 0.1, 0.44, 1 )">
|
||||
Midnight blue color.
|
||||
</constant>
|
||||
<constant name="mintcream" value="Color( 0.96, 1, 0.98, 1 )">
|
||||
<constant name="MINT_CREAM" value="Color( 0.96, 1, 0.98, 1 )">
|
||||
Mint cream color.
|
||||
</constant>
|
||||
<constant name="mistyrose" value="Color( 1, 0.89, 0.88, 1 )">
|
||||
<constant name="MISTY_ROSE" value="Color( 1, 0.89, 0.88, 1 )">
|
||||
Misty rose color.
|
||||
</constant>
|
||||
<constant name="moccasin" value="Color( 1, 0.89, 0.71, 1 )">
|
||||
<constant name="MOCCASIN" value="Color( 1, 0.89, 0.71, 1 )">
|
||||
Moccasin color.
|
||||
</constant>
|
||||
<constant name="navajowhite" value="Color( 1, 0.87, 0.68, 1 )">
|
||||
<constant name="NAVAJO_WHITE" value="Color( 1, 0.87, 0.68, 1 )">
|
||||
Navajo white color.
|
||||
</constant>
|
||||
<constant name="navyblue" value="Color( 0, 0, 0.5, 1 )">
|
||||
<constant name="NAVY_BLUE" value="Color( 0, 0, 0.5, 1 )">
|
||||
Navy blue color.
|
||||
</constant>
|
||||
<constant name="oldlace" value="Color( 0.99, 0.96, 0.9, 1 )">
|
||||
<constant name="OLD_LACE" value="Color( 0.99, 0.96, 0.9, 1 )">
|
||||
Old lace color.
|
||||
</constant>
|
||||
<constant name="olive" value="Color( 0.5, 0.5, 0, 1 )">
|
||||
<constant name="OLIVE" value="Color( 0.5, 0.5, 0, 1 )">
|
||||
Olive color.
|
||||
</constant>
|
||||
<constant name="olivedrab" value="Color( 0.42, 0.56, 0.14, 1 )">
|
||||
<constant name="OLIVE_DRAB" value="Color( 0.42, 0.56, 0.14, 1 )">
|
||||
Olive drab color.
|
||||
</constant>
|
||||
<constant name="orange" value="Color( 1, 0.65, 0, 1 )">
|
||||
<constant name="ORANGE" value="Color( 1, 0.65, 0, 1 )">
|
||||
Orange color.
|
||||
</constant>
|
||||
<constant name="orangered" value="Color( 1, 0.27, 0, 1 )">
|
||||
<constant name="ORANGE_RED" value="Color( 1, 0.27, 0, 1 )">
|
||||
Orange red color.
|
||||
</constant>
|
||||
<constant name="orchid" value="Color( 0.85, 0.44, 0.84, 1 )">
|
||||
<constant name="ORCHID" value="Color( 0.85, 0.44, 0.84, 1 )">
|
||||
Orchid color.
|
||||
</constant>
|
||||
<constant name="palegoldenrod" value="Color( 0.93, 0.91, 0.67, 1 )">
|
||||
<constant name="PALE_GOLDENROD" value="Color( 0.93, 0.91, 0.67, 1 )">
|
||||
Pale goldenrod color.
|
||||
</constant>
|
||||
<constant name="palegreen" value="Color( 0.6, 0.98, 0.6, 1 )">
|
||||
<constant name="PALE_GREEN" value="Color( 0.6, 0.98, 0.6, 1 )">
|
||||
Pale green color.
|
||||
</constant>
|
||||
<constant name="paleturquoise" value="Color( 0.69, 0.93, 0.93, 1 )">
|
||||
<constant name="PALE_TURQUOISE" value="Color( 0.69, 0.93, 0.93, 1 )">
|
||||
Pale turquoise color.
|
||||
</constant>
|
||||
<constant name="palevioletred" value="Color( 0.86, 0.44, 0.58, 1 )">
|
||||
<constant name="PALE_VIOLET_RED" value="Color( 0.86, 0.44, 0.58, 1 )">
|
||||
Pale violet red color.
|
||||
</constant>
|
||||
<constant name="papayawhip" value="Color( 1, 0.94, 0.84, 1 )">
|
||||
<constant name="PAPAYA_WHIP" value="Color( 1, 0.94, 0.84, 1 )">
|
||||
Papaya whip color.
|
||||
</constant>
|
||||
<constant name="peachpuff" value="Color( 1, 0.85, 0.73, 1 )">
|
||||
<constant name="PEACH_PUFF" value="Color( 1, 0.85, 0.73, 1 )">
|
||||
Peach puff color.
|
||||
</constant>
|
||||
<constant name="peru" value="Color( 0.8, 0.52, 0.25, 1 )">
|
||||
<constant name="PERU" value="Color( 0.8, 0.52, 0.25, 1 )">
|
||||
Peru color.
|
||||
</constant>
|
||||
<constant name="pink" value="Color( 1, 0.75, 0.8, 1 )">
|
||||
<constant name="PINK" value="Color( 1, 0.75, 0.8, 1 )">
|
||||
Pink color.
|
||||
</constant>
|
||||
<constant name="plum" value="Color( 0.87, 0.63, 0.87, 1 )">
|
||||
<constant name="PLUM" value="Color( 0.87, 0.63, 0.87, 1 )">
|
||||
Plum color.
|
||||
</constant>
|
||||
<constant name="powderblue" value="Color( 0.69, 0.88, 0.9, 1 )">
|
||||
<constant name="POWDER_BLUE" value="Color( 0.69, 0.88, 0.9, 1 )">
|
||||
Powder blue color.
|
||||
</constant>
|
||||
<constant name="purple" value="Color( 0.63, 0.13, 0.94, 1 )">
|
||||
<constant name="PURPLE" value="Color( 0.63, 0.13, 0.94, 1 )">
|
||||
Purple color.
|
||||
</constant>
|
||||
<constant name="rebeccapurple" value="Color( 0.4, 0.2, 0.6, 1 )">
|
||||
<constant name="REBECCA_PURPLE" value="Color( 0.4, 0.2, 0.6, 1 )">
|
||||
Rebecca purple color.
|
||||
</constant>
|
||||
<constant name="red" value="Color( 1, 0, 0, 1 )">
|
||||
<constant name="RED" value="Color( 1, 0, 0, 1 )">
|
||||
Red color.
|
||||
</constant>
|
||||
<constant name="rosybrown" value="Color( 0.74, 0.56, 0.56, 1 )">
|
||||
<constant name="ROSY_BROWN" value="Color( 0.74, 0.56, 0.56, 1 )">
|
||||
Rosy brown color.
|
||||
</constant>
|
||||
<constant name="royalblue" value="Color( 0.25, 0.41, 0.88, 1 )">
|
||||
<constant name="ROYAL_BLUE" value="Color( 0.25, 0.41, 0.88, 1 )">
|
||||
Royal blue color.
|
||||
</constant>
|
||||
<constant name="saddlebrown" value="Color( 0.55, 0.27, 0.07, 1 )">
|
||||
<constant name="SADDLE_BROWN" value="Color( 0.55, 0.27, 0.07, 1 )">
|
||||
Saddle brown color.
|
||||
</constant>
|
||||
<constant name="salmon" value="Color( 0.98, 0.5, 0.45, 1 )">
|
||||
<constant name="SALMON" value="Color( 0.98, 0.5, 0.45, 1 )">
|
||||
Salmon color.
|
||||
</constant>
|
||||
<constant name="sandybrown" value="Color( 0.96, 0.64, 0.38, 1 )">
|
||||
<constant name="SANDY_BROWN" value="Color( 0.96, 0.64, 0.38, 1 )">
|
||||
Sandy brown color.
|
||||
</constant>
|
||||
<constant name="seagreen" value="Color( 0.18, 0.55, 0.34, 1 )">
|
||||
<constant name="SEA_GREEN" value="Color( 0.18, 0.55, 0.34, 1 )">
|
||||
Sea green color.
|
||||
</constant>
|
||||
<constant name="seashell" value="Color( 1, 0.96, 0.93, 1 )">
|
||||
<constant name="SEASHELL" value="Color( 1, 0.96, 0.93, 1 )">
|
||||
Seashell color.
|
||||
</constant>
|
||||
<constant name="sienna" value="Color( 0.63, 0.32, 0.18, 1 )">
|
||||
<constant name="SIENNA" value="Color( 0.63, 0.32, 0.18, 1 )">
|
||||
Sienna color.
|
||||
</constant>
|
||||
<constant name="silver" value="Color( 0.75, 0.75, 0.75, 1 )">
|
||||
<constant name="SILVER" value="Color( 0.75, 0.75, 0.75, 1 )">
|
||||
Silver color.
|
||||
</constant>
|
||||
<constant name="skyblue" value="Color( 0.53, 0.81, 0.92, 1 )">
|
||||
<constant name="SKY_BLUE" value="Color( 0.53, 0.81, 0.92, 1 )">
|
||||
Sky blue color.
|
||||
</constant>
|
||||
<constant name="slateblue" value="Color( 0.42, 0.35, 0.8, 1 )">
|
||||
<constant name="SLATE_BLUE" value="Color( 0.42, 0.35, 0.8, 1 )">
|
||||
Slate blue color.
|
||||
</constant>
|
||||
<constant name="slategray" value="Color( 0.44, 0.5, 0.56, 1 )">
|
||||
<constant name="SLATE_GRAY" value="Color( 0.44, 0.5, 0.56, 1 )">
|
||||
Slate gray color.
|
||||
</constant>
|
||||
<constant name="snow" value="Color( 1, 0.98, 0.98, 1 )">
|
||||
<constant name="SNOW" value="Color( 1, 0.98, 0.98, 1 )">
|
||||
Snow color.
|
||||
</constant>
|
||||
<constant name="springgreen" value="Color( 0, 1, 0.5, 1 )">
|
||||
<constant name="SPRING_GREEN" value="Color( 0, 1, 0.5, 1 )">
|
||||
Spring green color.
|
||||
</constant>
|
||||
<constant name="steelblue" value="Color( 0.27, 0.51, 0.71, 1 )">
|
||||
<constant name="STEEL_BLUE" value="Color( 0.27, 0.51, 0.71, 1 )">
|
||||
Steel blue color.
|
||||
</constant>
|
||||
<constant name="tan" value="Color( 0.82, 0.71, 0.55, 1 )">
|
||||
<constant name="TAN" value="Color( 0.82, 0.71, 0.55, 1 )">
|
||||
Tan color.
|
||||
</constant>
|
||||
<constant name="teal" value="Color( 0, 0.5, 0.5, 1 )">
|
||||
<constant name="TEAL" value="Color( 0, 0.5, 0.5, 1 )">
|
||||
Teal color.
|
||||
</constant>
|
||||
<constant name="thistle" value="Color( 0.85, 0.75, 0.85, 1 )">
|
||||
<constant name="THISTLE" value="Color( 0.85, 0.75, 0.85, 1 )">
|
||||
Thistle color.
|
||||
</constant>
|
||||
<constant name="tomato" value="Color( 1, 0.39, 0.28, 1 )">
|
||||
<constant name="TOMATO" value="Color( 1, 0.39, 0.28, 1 )">
|
||||
Tomato color.
|
||||
</constant>
|
||||
<constant name="transparent" value="Color( 1, 1, 1, 0 )">
|
||||
Transparent color (white with no alpha).
|
||||
<constant name="TRANSPARENT" value="Color( 1, 1, 1, 0 )">
|
||||
Transparent color (white with zero alpha).
|
||||
</constant>
|
||||
<constant name="turquoise" value="Color( 0.25, 0.88, 0.82, 1 )">
|
||||
<constant name="TURQUOISE" value="Color( 0.25, 0.88, 0.82, 1 )">
|
||||
Turquoise color.
|
||||
</constant>
|
||||
<constant name="violet" value="Color( 0.93, 0.51, 0.93, 1 )">
|
||||
<constant name="VIOLET" value="Color( 0.93, 0.51, 0.93, 1 )">
|
||||
Violet color.
|
||||
</constant>
|
||||
<constant name="webgray" value="Color( 0.5, 0.5, 0.5, 1 )">
|
||||
<constant name="WEB_GRAY" value="Color( 0.5, 0.5, 0.5, 1 )">
|
||||
Web gray color.
|
||||
</constant>
|
||||
<constant name="webgreen" value="Color( 0, 0.5, 0, 1 )">
|
||||
<constant name="WEB_GREEN" value="Color( 0, 0.5, 0, 1 )">
|
||||
Web green color.
|
||||
</constant>
|
||||
<constant name="webmaroon" value="Color( 0.5, 0, 0, 1 )">
|
||||
<constant name="WEB_MAROON" value="Color( 0.5, 0, 0, 1 )">
|
||||
Web maroon color.
|
||||
</constant>
|
||||
<constant name="webpurple" value="Color( 0.5, 0, 0.5, 1 )">
|
||||
<constant name="WEB_PURPLE" value="Color( 0.5, 0, 0.5, 1 )">
|
||||
Web purple color.
|
||||
</constant>
|
||||
<constant name="wheat" value="Color( 0.96, 0.87, 0.7, 1 )">
|
||||
<constant name="WHEAT" value="Color( 0.96, 0.87, 0.7, 1 )">
|
||||
Wheat color.
|
||||
</constant>
|
||||
<constant name="white" value="Color( 1, 1, 1, 1 )">
|
||||
<constant name="WHITE" value="Color( 1, 1, 1, 1 )">
|
||||
White color.
|
||||
</constant>
|
||||
<constant name="whitesmoke" value="Color( 0.96, 0.96, 0.96, 1 )">
|
||||
<constant name="WHITE_SMOKE" value="Color( 0.96, 0.96, 0.96, 1 )">
|
||||
White smoke color.
|
||||
</constant>
|
||||
<constant name="yellow" value="Color( 1, 1, 0, 1 )">
|
||||
<constant name="YELLOW" value="Color( 1, 1, 0, 1 )">
|
||||
Yellow color.
|
||||
</constant>
|
||||
<constant name="yellowgreen" value="Color( 0.6, 0.8, 0.2, 1 )">
|
||||
<constant name="YELLOW_GREEN" value="Color( 0.6, 0.8, 0.2, 1 )">
|
||||
Yellow green color.
|
||||
</constant>
|
||||
</constants>
|
||||
|
|
|
@ -681,7 +681,7 @@ namespace Godot
|
|||
name = name.Replace("_", String.Empty);
|
||||
name = name.Replace("'", String.Empty);
|
||||
name = name.Replace(".", String.Empty);
|
||||
name = name.ToLower();
|
||||
name = name.ToUpper();
|
||||
|
||||
if (!Colors.namedColors.ContainsKey(name))
|
||||
{
|
||||
|
|
|
@ -9,301 +9,301 @@ namespace Godot
|
|||
/// </summary>
|
||||
public static class Colors
|
||||
{
|
||||
// Color names and values are derived from core/color_names.inc
|
||||
// Color names and values are derived from core/math/color_names.inc
|
||||
internal static readonly Dictionary<string, Color> namedColors = new Dictionary<string, Color> {
|
||||
{"aliceblue", new Color(0.94f, 0.97f, 1.00f)},
|
||||
{"antiquewhite", new Color(0.98f, 0.92f, 0.84f)},
|
||||
{"aqua", new Color(0.00f, 1.00f, 1.00f)},
|
||||
{"aquamarine", new Color(0.50f, 1.00f, 0.83f)},
|
||||
{"azure", new Color(0.94f, 1.00f, 1.00f)},
|
||||
{"beige", new Color(0.96f, 0.96f, 0.86f)},
|
||||
{"bisque", new Color(1.00f, 0.89f, 0.77f)},
|
||||
{"black", new Color(0.00f, 0.00f, 0.00f)},
|
||||
{"blanchedalmond", new Color(1.00f, 0.92f, 0.80f)},
|
||||
{"blue", new Color(0.00f, 0.00f, 1.00f)},
|
||||
{"blueviolet", new Color(0.54f, 0.17f, 0.89f)},
|
||||
{"brown", new Color(0.65f, 0.16f, 0.16f)},
|
||||
{"burlywood", new Color(0.87f, 0.72f, 0.53f)},
|
||||
{"cadetblue", new Color(0.37f, 0.62f, 0.63f)},
|
||||
{"chartreuse", new Color(0.50f, 1.00f, 0.00f)},
|
||||
{"chocolate", new Color(0.82f, 0.41f, 0.12f)},
|
||||
{"coral", new Color(1.00f, 0.50f, 0.31f)},
|
||||
{"cornflower", new Color(0.39f, 0.58f, 0.93f)},
|
||||
{"cornsilk", new Color(1.00f, 0.97f, 0.86f)},
|
||||
{"crimson", new Color(0.86f, 0.08f, 0.24f)},
|
||||
{"cyan", new Color(0.00f, 1.00f, 1.00f)},
|
||||
{"darkblue", new Color(0.00f, 0.00f, 0.55f)},
|
||||
{"darkcyan", new Color(0.00f, 0.55f, 0.55f)},
|
||||
{"darkgoldenrod", new Color(0.72f, 0.53f, 0.04f)},
|
||||
{"darkgray", new Color(0.66f, 0.66f, 0.66f)},
|
||||
{"darkgreen", new Color(0.00f, 0.39f, 0.00f)},
|
||||
{"darkkhaki", new Color(0.74f, 0.72f, 0.42f)},
|
||||
{"darkmagenta", new Color(0.55f, 0.00f, 0.55f)},
|
||||
{"darkolivegreen", new Color(0.33f, 0.42f, 0.18f)},
|
||||
{"darkorange", new Color(1.00f, 0.55f, 0.00f)},
|
||||
{"darkorchid", new Color(0.60f, 0.20f, 0.80f)},
|
||||
{"darkred", new Color(0.55f, 0.00f, 0.00f)},
|
||||
{"darksalmon", new Color(0.91f, 0.59f, 0.48f)},
|
||||
{"darkseagreen", new Color(0.56f, 0.74f, 0.56f)},
|
||||
{"darkslateblue", new Color(0.28f, 0.24f, 0.55f)},
|
||||
{"darkslategray", new Color(0.18f, 0.31f, 0.31f)},
|
||||
{"darkturquoise", new Color(0.00f, 0.81f, 0.82f)},
|
||||
{"darkviolet", new Color(0.58f, 0.00f, 0.83f)},
|
||||
{"deeppink", new Color(1.00f, 0.08f, 0.58f)},
|
||||
{"deepskyblue", new Color(0.00f, 0.75f, 1.00f)},
|
||||
{"dimgray", new Color(0.41f, 0.41f, 0.41f)},
|
||||
{"dodgerblue", new Color(0.12f, 0.56f, 1.00f)},
|
||||
{"firebrick", new Color(0.70f, 0.13f, 0.13f)},
|
||||
{"floralwhite", new Color(1.00f, 0.98f, 0.94f)},
|
||||
{"forestgreen", new Color(0.13f, 0.55f, 0.13f)},
|
||||
{"fuchsia", new Color(1.00f, 0.00f, 1.00f)},
|
||||
{"gainsboro", new Color(0.86f, 0.86f, 0.86f)},
|
||||
{"ghostwhite", new Color(0.97f, 0.97f, 1.00f)},
|
||||
{"gold", new Color(1.00f, 0.84f, 0.00f)},
|
||||
{"goldenrod", new Color(0.85f, 0.65f, 0.13f)},
|
||||
{"gray", new Color(0.75f, 0.75f, 0.75f)},
|
||||
{"green", new Color(0.00f, 1.00f, 0.00f)},
|
||||
{"greenyellow", new Color(0.68f, 1.00f, 0.18f)},
|
||||
{"honeydew", new Color(0.94f, 1.00f, 0.94f)},
|
||||
{"hotpink", new Color(1.00f, 0.41f, 0.71f)},
|
||||
{"indianred", new Color(0.80f, 0.36f, 0.36f)},
|
||||
{"indigo", new Color(0.29f, 0.00f, 0.51f)},
|
||||
{"ivory", new Color(1.00f, 1.00f, 0.94f)},
|
||||
{"khaki", new Color(0.94f, 0.90f, 0.55f)},
|
||||
{"lavender", new Color(0.90f, 0.90f, 0.98f)},
|
||||
{"lavenderblush", new Color(1.00f, 0.94f, 0.96f)},
|
||||
{"lawngreen", new Color(0.49f, 0.99f, 0.00f)},
|
||||
{"lemonchiffon", new Color(1.00f, 0.98f, 0.80f)},
|
||||
{"lightblue", new Color(0.68f, 0.85f, 0.90f)},
|
||||
{"lightcoral", new Color(0.94f, 0.50f, 0.50f)},
|
||||
{"lightcyan", new Color(0.88f, 1.00f, 1.00f)},
|
||||
{"lightgoldenrod", new Color(0.98f, 0.98f, 0.82f)},
|
||||
{"lightgray", new Color(0.83f, 0.83f, 0.83f)},
|
||||
{"lightgreen", new Color(0.56f, 0.93f, 0.56f)},
|
||||
{"lightpink", new Color(1.00f, 0.71f, 0.76f)},
|
||||
{"lightsalmon", new Color(1.00f, 0.63f, 0.48f)},
|
||||
{"lightseagreen", new Color(0.13f, 0.70f, 0.67f)},
|
||||
{"lightskyblue", new Color(0.53f, 0.81f, 0.98f)},
|
||||
{"lightslategray", new Color(0.47f, 0.53f, 0.60f)},
|
||||
{"lightsteelblue", new Color(0.69f, 0.77f, 0.87f)},
|
||||
{"lightyellow", new Color(1.00f, 1.00f, 0.88f)},
|
||||
{"lime", new Color(0.00f, 1.00f, 0.00f)},
|
||||
{"limegreen", new Color(0.20f, 0.80f, 0.20f)},
|
||||
{"linen", new Color(0.98f, 0.94f, 0.90f)},
|
||||
{"magenta", new Color(1.00f, 0.00f, 1.00f)},
|
||||
{"maroon", new Color(0.69f, 0.19f, 0.38f)},
|
||||
{"mediumaquamarine", new Color(0.40f, 0.80f, 0.67f)},
|
||||
{"mediumblue", new Color(0.00f, 0.00f, 0.80f)},
|
||||
{"mediumorchid", new Color(0.73f, 0.33f, 0.83f)},
|
||||
{"mediumpurple", new Color(0.58f, 0.44f, 0.86f)},
|
||||
{"mediumseagreen", new Color(0.24f, 0.70f, 0.44f)},
|
||||
{"mediumslateblue", new Color(0.48f, 0.41f, 0.93f)},
|
||||
{"mediumspringgreen", new Color(0.00f, 0.98f, 0.60f)},
|
||||
{"mediumturquoise", new Color(0.28f, 0.82f, 0.80f)},
|
||||
{"mediumvioletred", new Color(0.78f, 0.08f, 0.52f)},
|
||||
{"midnightblue", new Color(0.10f, 0.10f, 0.44f)},
|
||||
{"mintcream", new Color(0.96f, 1.00f, 0.98f)},
|
||||
{"mistyrose", new Color(1.00f, 0.89f, 0.88f)},
|
||||
{"moccasin", new Color(1.00f, 0.89f, 0.71f)},
|
||||
{"navajowhite", new Color(1.00f, 0.87f, 0.68f)},
|
||||
{"navyblue", new Color(0.00f, 0.00f, 0.50f)},
|
||||
{"oldlace", new Color(0.99f, 0.96f, 0.90f)},
|
||||
{"olive", new Color(0.50f, 0.50f, 0.00f)},
|
||||
{"olivedrab", new Color(0.42f, 0.56f, 0.14f)},
|
||||
{"orange", new Color(1.00f, 0.65f, 0.00f)},
|
||||
{"orangered", new Color(1.00f, 0.27f, 0.00f)},
|
||||
{"orchid", new Color(0.85f, 0.44f, 0.84f)},
|
||||
{"palegoldenrod", new Color(0.93f, 0.91f, 0.67f)},
|
||||
{"palegreen", new Color(0.60f, 0.98f, 0.60f)},
|
||||
{"paleturquoise", new Color(0.69f, 0.93f, 0.93f)},
|
||||
{"palevioletred", new Color(0.86f, 0.44f, 0.58f)},
|
||||
{"papayawhip", new Color(1.00f, 0.94f, 0.84f)},
|
||||
{"peachpuff", new Color(1.00f, 0.85f, 0.73f)},
|
||||
{"peru", new Color(0.80f, 0.52f, 0.25f)},
|
||||
{"pink", new Color(1.00f, 0.75f, 0.80f)},
|
||||
{"plum", new Color(0.87f, 0.63f, 0.87f)},
|
||||
{"powderblue", new Color(0.69f, 0.88f, 0.90f)},
|
||||
{"purple", new Color(0.63f, 0.13f, 0.94f)},
|
||||
{"rebeccapurple", new Color(0.40f, 0.20f, 0.60f)},
|
||||
{"red", new Color(1.00f, 0.00f, 0.00f)},
|
||||
{"rosybrown", new Color(0.74f, 0.56f, 0.56f)},
|
||||
{"royalblue", new Color(0.25f, 0.41f, 0.88f)},
|
||||
{"saddlebrown", new Color(0.55f, 0.27f, 0.07f)},
|
||||
{"salmon", new Color(0.98f, 0.50f, 0.45f)},
|
||||
{"sandybrown", new Color(0.96f, 0.64f, 0.38f)},
|
||||
{"seagreen", new Color(0.18f, 0.55f, 0.34f)},
|
||||
{"seashell", new Color(1.00f, 0.96f, 0.93f)},
|
||||
{"sienna", new Color(0.63f, 0.32f, 0.18f)},
|
||||
{"silver", new Color(0.75f, 0.75f, 0.75f)},
|
||||
{"skyblue", new Color(0.53f, 0.81f, 0.92f)},
|
||||
{"slateblue", new Color(0.42f, 0.35f, 0.80f)},
|
||||
{"slategray", new Color(0.44f, 0.50f, 0.56f)},
|
||||
{"snow", new Color(1.00f, 0.98f, 0.98f)},
|
||||
{"springgreen", new Color(0.00f, 1.00f, 0.50f)},
|
||||
{"steelblue", new Color(0.27f, 0.51f, 0.71f)},
|
||||
{"tan", new Color(0.82f, 0.71f, 0.55f)},
|
||||
{"teal", new Color(0.00f, 0.50f, 0.50f)},
|
||||
{"thistle", new Color(0.85f, 0.75f, 0.85f)},
|
||||
{"tomato", new Color(1.00f, 0.39f, 0.28f)},
|
||||
{"transparent", new Color(1.00f, 1.00f, 1.00f, 0.00f)},
|
||||
{"turquoise", new Color(0.25f, 0.88f, 0.82f)},
|
||||
{"violet", new Color(0.93f, 0.51f, 0.93f)},
|
||||
{"webgreen", new Color(0.00f, 0.50f, 0.00f)},
|
||||
{"webgray", new Color(0.50f, 0.50f, 0.50f)},
|
||||
{"webmaroon", new Color(0.50f, 0.00f, 0.00f)},
|
||||
{"webpurple", new Color(0.50f, 0.00f, 0.50f)},
|
||||
{"wheat", new Color(0.96f, 0.87f, 0.70f)},
|
||||
{"white", new Color(1.00f, 1.00f, 1.00f)},
|
||||
{"whitesmoke", new Color(0.96f, 0.96f, 0.96f)},
|
||||
{"yellow", new Color(1.00f, 1.00f, 0.00f)},
|
||||
{"yellowgreen", new Color(0.60f, 0.80f, 0.20f)},
|
||||
{"ALICEBLUE", new Color(0.94f, 0.97f, 1.00f)},
|
||||
{"ANTIQUEWHITE", new Color(0.98f, 0.92f, 0.84f)},
|
||||
{"AQUA", new Color(0.00f, 1.00f, 1.00f)},
|
||||
{"AQUAMARINE", new Color(0.50f, 1.00f, 0.83f)},
|
||||
{"AZURE", new Color(0.94f, 1.00f, 1.00f)},
|
||||
{"BEIGE", new Color(0.96f, 0.96f, 0.86f)},
|
||||
{"BISQUE", new Color(1.00f, 0.89f, 0.77f)},
|
||||
{"BLACK", new Color(0.00f, 0.00f, 0.00f)},
|
||||
{"BLANCHEDALMOND", new Color(1.00f, 0.92f, 0.80f)},
|
||||
{"BLUE", new Color(0.00f, 0.00f, 1.00f)},
|
||||
{"BLUEVIOLET", new Color(0.54f, 0.17f, 0.89f)},
|
||||
{"BROWN", new Color(0.65f, 0.16f, 0.16f)},
|
||||
{"BURLYWOOD", new Color(0.87f, 0.72f, 0.53f)},
|
||||
{"CADETBLUE", new Color(0.37f, 0.62f, 0.63f)},
|
||||
{"CHARTREUSE", new Color(0.50f, 1.00f, 0.00f)},
|
||||
{"CHOCOLATE", new Color(0.82f, 0.41f, 0.12f)},
|
||||
{"CORAL", new Color(1.00f, 0.50f, 0.31f)},
|
||||
{"CORNFLOWERBLUE", new Color(0.39f, 0.58f, 0.93f)},
|
||||
{"CORNSILK", new Color(1.00f, 0.97f, 0.86f)},
|
||||
{"CRIMSON", new Color(0.86f, 0.08f, 0.24f)},
|
||||
{"CYAN", new Color(0.00f, 1.00f, 1.00f)},
|
||||
{"DARKBLUE", new Color(0.00f, 0.00f, 0.55f)},
|
||||
{"DARKCYAN", new Color(0.00f, 0.55f, 0.55f)},
|
||||
{"DARKGOLDENROD", new Color(0.72f, 0.53f, 0.04f)},
|
||||
{"DARKGRAY", new Color(0.66f, 0.66f, 0.66f)},
|
||||
{"DARKGREEN", new Color(0.00f, 0.39f, 0.00f)},
|
||||
{"DARKKHAKI", new Color(0.74f, 0.72f, 0.42f)},
|
||||
{"DARKMAGENTA", new Color(0.55f, 0.00f, 0.55f)},
|
||||
{"DARKOLIVEGREEN", new Color(0.33f, 0.42f, 0.18f)},
|
||||
{"DARKORANGE", new Color(1.00f, 0.55f, 0.00f)},
|
||||
{"DARKORCHID", new Color(0.60f, 0.20f, 0.80f)},
|
||||
{"DARKRED", new Color(0.55f, 0.00f, 0.00f)},
|
||||
{"DARKSALMON", new Color(0.91f, 0.59f, 0.48f)},
|
||||
{"DARKSEAGREEN", new Color(0.56f, 0.74f, 0.56f)},
|
||||
{"DARKSLATEBLUE", new Color(0.28f, 0.24f, 0.55f)},
|
||||
{"DARKSLATEGRAY", new Color(0.18f, 0.31f, 0.31f)},
|
||||
{"DARKTURQUOISE", new Color(0.00f, 0.81f, 0.82f)},
|
||||
{"DARKVIOLET", new Color(0.58f, 0.00f, 0.83f)},
|
||||
{"DEEPPINK", new Color(1.00f, 0.08f, 0.58f)},
|
||||
{"DEEPSKYBLUE", new Color(0.00f, 0.75f, 1.00f)},
|
||||
{"DIMGRAY", new Color(0.41f, 0.41f, 0.41f)},
|
||||
{"DODGERBLUE", new Color(0.12f, 0.56f, 1.00f)},
|
||||
{"FIREBRICK", new Color(0.70f, 0.13f, 0.13f)},
|
||||
{"FLORALWHITE", new Color(1.00f, 0.98f, 0.94f)},
|
||||
{"FORESTGREEN", new Color(0.13f, 0.55f, 0.13f)},
|
||||
{"FUCHSIA", new Color(1.00f, 0.00f, 1.00f)},
|
||||
{"GAINSBORO", new Color(0.86f, 0.86f, 0.86f)},
|
||||
{"GHOSTWHITE", new Color(0.97f, 0.97f, 1.00f)},
|
||||
{"GOLD", new Color(1.00f, 0.84f, 0.00f)},
|
||||
{"GOLDENROD", new Color(0.85f, 0.65f, 0.13f)},
|
||||
{"GRAY", new Color(0.75f, 0.75f, 0.75f)},
|
||||
{"GREEN", new Color(0.00f, 1.00f, 0.00f)},
|
||||
{"GREENYELLOW", new Color(0.68f, 1.00f, 0.18f)},
|
||||
{"HONEYDEW", new Color(0.94f, 1.00f, 0.94f)},
|
||||
{"HOTPINK", new Color(1.00f, 0.41f, 0.71f)},
|
||||
{"INDIANRED", new Color(0.80f, 0.36f, 0.36f)},
|
||||
{"INDIGO", new Color(0.29f, 0.00f, 0.51f)},
|
||||
{"IVORY", new Color(1.00f, 1.00f, 0.94f)},
|
||||
{"KHAKI", new Color(0.94f, 0.90f, 0.55f)},
|
||||
{"LAVENDER", new Color(0.90f, 0.90f, 0.98f)},
|
||||
{"LAVENDERBLUSH", new Color(1.00f, 0.94f, 0.96f)},
|
||||
{"LAWNGREEN", new Color(0.49f, 0.99f, 0.00f)},
|
||||
{"LEMONCHIFFON", new Color(1.00f, 0.98f, 0.80f)},
|
||||
{"LIGHTBLUE", new Color(0.68f, 0.85f, 0.90f)},
|
||||
{"LIGHTCORAL", new Color(0.94f, 0.50f, 0.50f)},
|
||||
{"LIGHTCYAN", new Color(0.88f, 1.00f, 1.00f)},
|
||||
{"LIGHTGOLDENROD", new Color(0.98f, 0.98f, 0.82f)},
|
||||
{"LIGHTGRAY", new Color(0.83f, 0.83f, 0.83f)},
|
||||
{"LIGHTGREEN", new Color(0.56f, 0.93f, 0.56f)},
|
||||
{"LIGHTPINK", new Color(1.00f, 0.71f, 0.76f)},
|
||||
{"LIGHTSALMON", new Color(1.00f, 0.63f, 0.48f)},
|
||||
{"LIGHTSEAGREEN", new Color(0.13f, 0.70f, 0.67f)},
|
||||
{"LIGHTSKYBLUE", new Color(0.53f, 0.81f, 0.98f)},
|
||||
{"LIGHTSLATEGRAY", new Color(0.47f, 0.53f, 0.60f)},
|
||||
{"LIGHTSTEELBLUE", new Color(0.69f, 0.77f, 0.87f)},
|
||||
{"LIGHTYELLOW", new Color(1.00f, 1.00f, 0.88f)},
|
||||
{"LIME", new Color(0.00f, 1.00f, 0.00f)},
|
||||
{"LIMEGREEN", new Color(0.20f, 0.80f, 0.20f)},
|
||||
{"LINEN", new Color(0.98f, 0.94f, 0.90f)},
|
||||
{"MAGENTA", new Color(1.00f, 0.00f, 1.00f)},
|
||||
{"MAROON", new Color(0.69f, 0.19f, 0.38f)},
|
||||
{"MEDIUMAQUAMARINE", new Color(0.40f, 0.80f, 0.67f)},
|
||||
{"MEDIUMBLUE", new Color(0.00f, 0.00f, 0.80f)},
|
||||
{"MEDIUMORCHID", new Color(0.73f, 0.33f, 0.83f)},
|
||||
{"MEDIUMPURPLE", new Color(0.58f, 0.44f, 0.86f)},
|
||||
{"MEDIUMSEAGREEN", new Color(0.24f, 0.70f, 0.44f)},
|
||||
{"MEDIUMSLATEBLUE", new Color(0.48f, 0.41f, 0.93f)},
|
||||
{"MEDIUMSPRINGGREEN", new Color(0.00f, 0.98f, 0.60f)},
|
||||
{"MEDIUMTURQUOISE", new Color(0.28f, 0.82f, 0.80f)},
|
||||
{"MEDIUMVIOLETRED", new Color(0.78f, 0.08f, 0.52f)},
|
||||
{"MIDNIGHTBLUE", new Color(0.10f, 0.10f, 0.44f)},
|
||||
{"MINTCREAM", new Color(0.96f, 1.00f, 0.98f)},
|
||||
{"MISTYROSE", new Color(1.00f, 0.89f, 0.88f)},
|
||||
{"MOCCASIN", new Color(1.00f, 0.89f, 0.71f)},
|
||||
{"NAVAJOWHITE", new Color(1.00f, 0.87f, 0.68f)},
|
||||
{"NAVYBLUE", new Color(0.00f, 0.00f, 0.50f)},
|
||||
{"OLDLACE", new Color(0.99f, 0.96f, 0.90f)},
|
||||
{"OLIVE", new Color(0.50f, 0.50f, 0.00f)},
|
||||
{"OLIVEDRAB", new Color(0.42f, 0.56f, 0.14f)},
|
||||
{"ORANGE", new Color(1.00f, 0.65f, 0.00f)},
|
||||
{"ORANGERED", new Color(1.00f, 0.27f, 0.00f)},
|
||||
{"ORCHID", new Color(0.85f, 0.44f, 0.84f)},
|
||||
{"PALEGOLDENROD", new Color(0.93f, 0.91f, 0.67f)},
|
||||
{"PALEGREEN", new Color(0.60f, 0.98f, 0.60f)},
|
||||
{"PALETURQUOISE", new Color(0.69f, 0.93f, 0.93f)},
|
||||
{"PALEVIOLETRED", new Color(0.86f, 0.44f, 0.58f)},
|
||||
{"PAPAYAWHIP", new Color(1.00f, 0.94f, 0.84f)},
|
||||
{"PEACHPUFF", new Color(1.00f, 0.85f, 0.73f)},
|
||||
{"PERU", new Color(0.80f, 0.52f, 0.25f)},
|
||||
{"PINK", new Color(1.00f, 0.75f, 0.80f)},
|
||||
{"PLUM", new Color(0.87f, 0.63f, 0.87f)},
|
||||
{"POWDERBLUE", new Color(0.69f, 0.88f, 0.90f)},
|
||||
{"PURPLE", new Color(0.63f, 0.13f, 0.94f)},
|
||||
{"REBECCAPURPLE", new Color(0.40f, 0.20f, 0.60f)},
|
||||
{"RED", new Color(1.00f, 0.00f, 0.00f)},
|
||||
{"ROSYBROWN", new Color(0.74f, 0.56f, 0.56f)},
|
||||
{"ROYALBLUE", new Color(0.25f, 0.41f, 0.88f)},
|
||||
{"SADDLEBROWN", new Color(0.55f, 0.27f, 0.07f)},
|
||||
{"SALMON", new Color(0.98f, 0.50f, 0.45f)},
|
||||
{"SANDYBROWN", new Color(0.96f, 0.64f, 0.38f)},
|
||||
{"SEAGREEN", new Color(0.18f, 0.55f, 0.34f)},
|
||||
{"SEASHELL", new Color(1.00f, 0.96f, 0.93f)},
|
||||
{"SIENNA", new Color(0.63f, 0.32f, 0.18f)},
|
||||
{"SILVER", new Color(0.75f, 0.75f, 0.75f)},
|
||||
{"SKYBLUE", new Color(0.53f, 0.81f, 0.92f)},
|
||||
{"SLATEBLUE", new Color(0.42f, 0.35f, 0.80f)},
|
||||
{"SLATEGRAY", new Color(0.44f, 0.50f, 0.56f)},
|
||||
{"SNOW", new Color(1.00f, 0.98f, 0.98f)},
|
||||
{"SPRINGGREEN", new Color(0.00f, 1.00f, 0.50f)},
|
||||
{"STEELBLUE", new Color(0.27f, 0.51f, 0.71f)},
|
||||
{"TAN", new Color(0.82f, 0.71f, 0.55f)},
|
||||
{"TEAL", new Color(0.00f, 0.50f, 0.50f)},
|
||||
{"THISTLE", new Color(0.85f, 0.75f, 0.85f)},
|
||||
{"TOMATO", new Color(1.00f, 0.39f, 0.28f)},
|
||||
{"TRANSPARENT", new Color(1.00f, 1.00f, 1.00f, 0.00f)},
|
||||
{"TURQUOISE", new Color(0.25f, 0.88f, 0.82f)},
|
||||
{"VIOLET", new Color(0.93f, 0.51f, 0.93f)},
|
||||
{"WEBGRAY", new Color(0.50f, 0.50f, 0.50f)},
|
||||
{"WEBGREEN", new Color(0.00f, 0.50f, 0.00f)},
|
||||
{"WEBMAROON", new Color(0.50f, 0.00f, 0.00f)},
|
||||
{"WEBPURPLE", new Color(0.50f, 0.00f, 0.50f)},
|
||||
{"WHEAT", new Color(0.96f, 0.87f, 0.70f)},
|
||||
{"WHITE", new Color(1.00f, 1.00f, 1.00f)},
|
||||
{"WHITESMOKE", new Color(0.96f, 0.96f, 0.96f)},
|
||||
{"YELLOW", new Color(1.00f, 1.00f, 0.00f)},
|
||||
{"YELLOWGREEN", new Color(0.60f, 0.80f, 0.20f)},
|
||||
};
|
||||
|
||||
public static Color AliceBlue { get { return namedColors["aliceblue"]; } }
|
||||
public static Color AntiqueWhite { get { return namedColors["antiquewhite"]; } }
|
||||
public static Color Aqua { get { return namedColors["aqua"]; } }
|
||||
public static Color Aquamarine { get { return namedColors["aquamarine"]; } }
|
||||
public static Color Azure { get { return namedColors["azure"]; } }
|
||||
public static Color Beige { get { return namedColors["beige"]; } }
|
||||
public static Color Bisque { get { return namedColors["bisque"]; } }
|
||||
public static Color Black { get { return namedColors["black"]; } }
|
||||
public static Color BlanchedAlmond { get { return namedColors["blanchedalmond"]; } }
|
||||
public static Color Blue { get { return namedColors["blue"]; } }
|
||||
public static Color BlueViolet { get { return namedColors["blueviolet"]; } }
|
||||
public static Color Brown { get { return namedColors["brown"]; } }
|
||||
public static Color BurlyWood { get { return namedColors["burlywood"]; } }
|
||||
public static Color CadetBlue { get { return namedColors["cadetblue"]; } }
|
||||
public static Color Chartreuse { get { return namedColors["chartreuse"]; } }
|
||||
public static Color Chocolate { get { return namedColors["chocolate"]; } }
|
||||
public static Color Coral { get { return namedColors["coral"]; } }
|
||||
public static Color Cornflower { get { return namedColors["cornflower"]; } }
|
||||
public static Color Cornsilk { get { return namedColors["cornsilk"]; } }
|
||||
public static Color Crimson { get { return namedColors["crimson"]; } }
|
||||
public static Color Cyan { get { return namedColors["cyan"]; } }
|
||||
public static Color DarkBlue { get { return namedColors["darkblue"]; } }
|
||||
public static Color DarkCyan { get { return namedColors["darkcyan"]; } }
|
||||
public static Color DarkGoldenrod { get { return namedColors["darkgoldenrod"]; } }
|
||||
public static Color DarkGray { get { return namedColors["darkgray"]; } }
|
||||
public static Color DarkGreen { get { return namedColors["darkgreen"]; } }
|
||||
public static Color DarkKhaki { get { return namedColors["darkkhaki"]; } }
|
||||
public static Color DarkMagenta { get { return namedColors["darkmagenta"]; } }
|
||||
public static Color DarkOliveGreen { get { return namedColors["darkolivegreen"]; } }
|
||||
public static Color DarkOrange { get { return namedColors["darkorange"]; } }
|
||||
public static Color DarkOrchid { get { return namedColors["darkorchid"]; } }
|
||||
public static Color DarkRed { get { return namedColors["darkred"]; } }
|
||||
public static Color DarkSalmon { get { return namedColors["darksalmon"]; } }
|
||||
public static Color DarkSeaGreen { get { return namedColors["darkseagreen"]; } }
|
||||
public static Color DarkSlateBlue { get { return namedColors["darkslateblue"]; } }
|
||||
public static Color DarkSlateGray { get { return namedColors["darkslategray"]; } }
|
||||
public static Color DarkTurquoise { get { return namedColors["darkturquoise"]; } }
|
||||
public static Color DarkViolet { get { return namedColors["darkviolet"]; } }
|
||||
public static Color DeepPink { get { return namedColors["deeppink"]; } }
|
||||
public static Color DeepSkyBlue { get { return namedColors["deepskyblue"]; } }
|
||||
public static Color DimGray { get { return namedColors["dimgray"]; } }
|
||||
public static Color DodgerBlue { get { return namedColors["dodgerblue"]; } }
|
||||
public static Color Firebrick { get { return namedColors["firebrick"]; } }
|
||||
public static Color FloralWhite { get { return namedColors["floralwhite"]; } }
|
||||
public static Color ForestGreen { get { return namedColors["forestgreen"]; } }
|
||||
public static Color Fuchsia { get { return namedColors["fuchsia"]; } }
|
||||
public static Color Gainsboro { get { return namedColors["gainsboro"]; } }
|
||||
public static Color GhostWhite { get { return namedColors["ghostwhite"]; } }
|
||||
public static Color Gold { get { return namedColors["gold"]; } }
|
||||
public static Color Goldenrod { get { return namedColors["goldenrod"]; } }
|
||||
public static Color Gray { get { return namedColors["gray"]; } }
|
||||
public static Color Green { get { return namedColors["green"]; } }
|
||||
public static Color GreenYellow { get { return namedColors["greenyellow"]; } }
|
||||
public static Color Honeydew { get { return namedColors["honeydew"]; } }
|
||||
public static Color HotPink { get { return namedColors["hotpink"]; } }
|
||||
public static Color IndianRed { get { return namedColors["indianred"]; } }
|
||||
public static Color Indigo { get { return namedColors["indigo"]; } }
|
||||
public static Color Ivory { get { return namedColors["ivory"]; } }
|
||||
public static Color Khaki { get { return namedColors["khaki"]; } }
|
||||
public static Color Lavender { get { return namedColors["lavender"]; } }
|
||||
public static Color LavenderBlush { get { return namedColors["lavenderblush"]; } }
|
||||
public static Color LawnGreen { get { return namedColors["lawngreen"]; } }
|
||||
public static Color LemonChiffon { get { return namedColors["lemonchiffon"]; } }
|
||||
public static Color LightBlue { get { return namedColors["lightblue"]; } }
|
||||
public static Color LightCoral { get { return namedColors["lightcoral"]; } }
|
||||
public static Color LightCyan { get { return namedColors["lightcyan"]; } }
|
||||
public static Color LightGoldenrod { get { return namedColors["lightgoldenrod"]; } }
|
||||
public static Color LightGray { get { return namedColors["lightgray"]; } }
|
||||
public static Color LightGreen { get { return namedColors["lightgreen"]; } }
|
||||
public static Color LightPink { get { return namedColors["lightpink"]; } }
|
||||
public static Color LightSalmon { get { return namedColors["lightsalmon"]; } }
|
||||
public static Color LightSeaGreen { get { return namedColors["lightseagreen"]; } }
|
||||
public static Color LightSkyBlue { get { return namedColors["lightskyblue"]; } }
|
||||
public static Color LightSlateGray { get { return namedColors["lightslategray"]; } }
|
||||
public static Color LightSteelBlue { get { return namedColors["lightsteelblue"]; } }
|
||||
public static Color LightYellow { get { return namedColors["lightyellow"]; } }
|
||||
public static Color Lime { get { return namedColors["lime"]; } }
|
||||
public static Color Limegreen { get { return namedColors["limegreen"]; } }
|
||||
public static Color Linen { get { return namedColors["linen"]; } }
|
||||
public static Color Magenta { get { return namedColors["magenta"]; } }
|
||||
public static Color Maroon { get { return namedColors["maroon"]; } }
|
||||
public static Color MediumAquamarine { get { return namedColors["mediumaquamarine"]; } }
|
||||
public static Color MediumBlue { get { return namedColors["mediumblue"]; } }
|
||||
public static Color MediumOrchid { get { return namedColors["mediumorchid"]; } }
|
||||
public static Color MediumPurple { get { return namedColors["mediumpurple"]; } }
|
||||
public static Color MediumSeaGreen { get { return namedColors["mediumseagreen"]; } }
|
||||
public static Color MediumSlateBlue { get { return namedColors["mediumslateblue"]; } }
|
||||
public static Color MediumSpringGreen { get { return namedColors["mediumspringgreen"]; } }
|
||||
public static Color MediumTurquoise { get { return namedColors["mediumturquoise"]; } }
|
||||
public static Color MediumVioletRed { get { return namedColors["mediumvioletred"]; } }
|
||||
public static Color MidnightBlue { get { return namedColors["midnightblue"]; } }
|
||||
public static Color MintCream { get { return namedColors["mintcream"]; } }
|
||||
public static Color MistyRose { get { return namedColors["mistyrose"]; } }
|
||||
public static Color Moccasin { get { return namedColors["moccasin"]; } }
|
||||
public static Color NavajoWhite { get { return namedColors["navajowhite"]; } }
|
||||
public static Color NavyBlue { get { return namedColors["navyblue"]; } }
|
||||
public static Color OldLace { get { return namedColors["oldlace"]; } }
|
||||
public static Color Olive { get { return namedColors["olive"]; } }
|
||||
public static Color OliveDrab { get { return namedColors["olivedrab"]; } }
|
||||
public static Color Orange { get { return namedColors["orange"]; } }
|
||||
public static Color OrangeRed { get { return namedColors["orangered"]; } }
|
||||
public static Color Orchid { get { return namedColors["orchid"]; } }
|
||||
public static Color PaleGoldenrod { get { return namedColors["palegoldenrod"]; } }
|
||||
public static Color PaleGreen { get { return namedColors["palegreen"]; } }
|
||||
public static Color PaleTurquoise { get { return namedColors["paleturquoise"]; } }
|
||||
public static Color PaleVioletRed { get { return namedColors["palevioletred"]; } }
|
||||
public static Color PapayaWhip { get { return namedColors["papayawhip"]; } }
|
||||
public static Color PeachPuff { get { return namedColors["peachpuff"]; } }
|
||||
public static Color Peru { get { return namedColors["peru"]; } }
|
||||
public static Color Pink { get { return namedColors["pink"]; } }
|
||||
public static Color Plum { get { return namedColors["plum"]; } }
|
||||
public static Color PowderBlue { get { return namedColors["powderblue"]; } }
|
||||
public static Color Purple { get { return namedColors["purple"]; } }
|
||||
public static Color RebeccaPurple { get { return namedColors["rebeccapurple"]; } }
|
||||
public static Color Red { get { return namedColors["red"]; } }
|
||||
public static Color RosyBrown { get { return namedColors["rosybrown"]; } }
|
||||
public static Color RoyalBlue { get { return namedColors["royalblue"]; } }
|
||||
public static Color SaddleBrown { get { return namedColors["saddlebrown"]; } }
|
||||
public static Color Salmon { get { return namedColors["salmon"]; } }
|
||||
public static Color SandyBrown { get { return namedColors["sandybrown"]; } }
|
||||
public static Color SeaGreen { get { return namedColors["seagreen"]; } }
|
||||
public static Color SeaShell { get { return namedColors["seashell"]; } }
|
||||
public static Color Sienna { get { return namedColors["sienna"]; } }
|
||||
public static Color Silver { get { return namedColors["silver"]; } }
|
||||
public static Color SkyBlue { get { return namedColors["skyblue"]; } }
|
||||
public static Color SlateBlue { get { return namedColors["slateblue"]; } }
|
||||
public static Color SlateGray { get { return namedColors["slategray"]; } }
|
||||
public static Color Snow { get { return namedColors["snow"]; } }
|
||||
public static Color SpringGreen { get { return namedColors["springgreen"]; } }
|
||||
public static Color SteelBlue { get { return namedColors["steelblue"]; } }
|
||||
public static Color Tan { get { return namedColors["tan"]; } }
|
||||
public static Color Teal { get { return namedColors["teal"]; } }
|
||||
public static Color Thistle { get { return namedColors["thistle"]; } }
|
||||
public static Color Tomato { get { return namedColors["tomato"]; } }
|
||||
public static Color Transparent { get { return namedColors["transparent"]; } }
|
||||
public static Color Turquoise { get { return namedColors["turquoise"]; } }
|
||||
public static Color Violet { get { return namedColors["violet"]; } }
|
||||
public static Color WebGreen { get { return namedColors["webgreen"]; } }
|
||||
public static Color WebGray { get { return namedColors["webgray"]; } }
|
||||
public static Color WebMaroon { get { return namedColors["webmaroon"]; } }
|
||||
public static Color WebPurple { get { return namedColors["webpurple"]; } }
|
||||
public static Color Wheat { get { return namedColors["wheat"]; } }
|
||||
public static Color White { get { return namedColors["white"]; } }
|
||||
public static Color WhiteSmoke { get { return namedColors["whitesmoke"]; } }
|
||||
public static Color Yellow { get { return namedColors["yellow"]; } }
|
||||
public static Color YellowGreen { get { return namedColors["yellowgreen"]; } }
|
||||
public static Color AliceBlue { get { return namedColors["ALICEBLUE"]; } }
|
||||
public static Color AntiqueWhite { get { return namedColors["ANTIQUEWHITE"]; } }
|
||||
public static Color Aqua { get { return namedColors["AQUA"]; } }
|
||||
public static Color Aquamarine { get { return namedColors["AQUAMARINE"]; } }
|
||||
public static Color Azure { get { return namedColors["AZURE"]; } }
|
||||
public static Color Beige { get { return namedColors["BEIGE"]; } }
|
||||
public static Color Bisque { get { return namedColors["BISQUE"]; } }
|
||||
public static Color Black { get { return namedColors["BLACK"]; } }
|
||||
public static Color BlanchedAlmond { get { return namedColors["BLANCHEDALMOND"]; } }
|
||||
public static Color Blue { get { return namedColors["BLUE"]; } }
|
||||
public static Color BlueViolet { get { return namedColors["BLUEVIOLET"]; } }
|
||||
public static Color Brown { get { return namedColors["BROWN"]; } }
|
||||
public static Color Burlywood { get { return namedColors["BURLYWOOD"]; } }
|
||||
public static Color CadetBlue { get { return namedColors["CADETBLUE"]; } }
|
||||
public static Color Chartreuse { get { return namedColors["CHARTREUSE"]; } }
|
||||
public static Color Chocolate { get { return namedColors["CHOCOLATE"]; } }
|
||||
public static Color Coral { get { return namedColors["CORAL"]; } }
|
||||
public static Color CornflowerBlue { get { return namedColors["CORNFLOWERBLUE"]; } }
|
||||
public static Color Cornsilk { get { return namedColors["CORNSILK"]; } }
|
||||
public static Color Crimson { get { return namedColors["CRIMSON"]; } }
|
||||
public static Color Cyan { get { return namedColors["CYAN"]; } }
|
||||
public static Color DarkBlue { get { return namedColors["DARKBLUE"]; } }
|
||||
public static Color DarkCyan { get { return namedColors["DARKCYAN"]; } }
|
||||
public static Color DarkGoldenrod { get { return namedColors["DARKGOLDENROD"]; } }
|
||||
public static Color DarkGray { get { return namedColors["DARKGRAY"]; } }
|
||||
public static Color DarkGreen { get { return namedColors["DARKGREEN"]; } }
|
||||
public static Color DarkKhaki { get { return namedColors["DARKKHAKI"]; } }
|
||||
public static Color DarkMagenta { get { return namedColors["DARKMAGENTA"]; } }
|
||||
public static Color DarkOliveGreen { get { return namedColors["DARKOLIVEGREEN"]; } }
|
||||
public static Color DarkOrange { get { return namedColors["DARKORANGE"]; } }
|
||||
public static Color DarkOrchid { get { return namedColors["DARKORCHID"]; } }
|
||||
public static Color DarkRed { get { return namedColors["DARKRED"]; } }
|
||||
public static Color DarkSalmon { get { return namedColors["DARKSALMON"]; } }
|
||||
public static Color DarkSeaGreen { get { return namedColors["DARKSEAGREEN"]; } }
|
||||
public static Color DarkSlateBlue { get { return namedColors["DARKSLATEBLUE"]; } }
|
||||
public static Color DarkSlateGray { get { return namedColors["DARKSLATEGRAY"]; } }
|
||||
public static Color DarkTurquoise { get { return namedColors["DARKTURQUOISE"]; } }
|
||||
public static Color DarkViolet { get { return namedColors["DARKVIOLET"]; } }
|
||||
public static Color DeepPink { get { return namedColors["DEEPPINK"]; } }
|
||||
public static Color DeepSkyBlue { get { return namedColors["DEEPSKYBLUE"]; } }
|
||||
public static Color DimGray { get { return namedColors["DIMGRAY"]; } }
|
||||
public static Color DodgerBlue { get { return namedColors["DODGERBLUE"]; } }
|
||||
public static Color Firebrick { get { return namedColors["FIREBRICK"]; } }
|
||||
public static Color FloralWhite { get { return namedColors["FLORALWHITE"]; } }
|
||||
public static Color ForestGreen { get { return namedColors["FORESTGREEN"]; } }
|
||||
public static Color Fuchsia { get { return namedColors["FUCHSIA"]; } }
|
||||
public static Color Gainsboro { get { return namedColors["GAINSBORO"]; } }
|
||||
public static Color GhostWhite { get { return namedColors["GHOSTWHITE"]; } }
|
||||
public static Color Gold { get { return namedColors["GOLD"]; } }
|
||||
public static Color Goldenrod { get { return namedColors["GOLDENROD"]; } }
|
||||
public static Color Gray { get { return namedColors["GRAY"]; } }
|
||||
public static Color Green { get { return namedColors["GREEN"]; } }
|
||||
public static Color GreenYellow { get { return namedColors["GREENYELLOW"]; } }
|
||||
public static Color Honeydew { get { return namedColors["HONEYDEW"]; } }
|
||||
public static Color HotPink { get { return namedColors["HOTPINK"]; } }
|
||||
public static Color IndianRed { get { return namedColors["INDIANRED"]; } }
|
||||
public static Color Indigo { get { return namedColors["INDIGO"]; } }
|
||||
public static Color Ivory { get { return namedColors["IVORY"]; } }
|
||||
public static Color Khaki { get { return namedColors["KHAKI"]; } }
|
||||
public static Color Lavender { get { return namedColors["LAVENDER"]; } }
|
||||
public static Color LavenderBlush { get { return namedColors["LAVENDERBLUSH"]; } }
|
||||
public static Color LawnGreen { get { return namedColors["LAWNGREEN"]; } }
|
||||
public static Color LemonChiffon { get { return namedColors["LEMONCHIFFON"]; } }
|
||||
public static Color LightBlue { get { return namedColors["LIGHTBLUE"]; } }
|
||||
public static Color LightCoral { get { return namedColors["LIGHTCORAL"]; } }
|
||||
public static Color LightCyan { get { return namedColors["LIGHTCYAN"]; } }
|
||||
public static Color LightGoldenrod { get { return namedColors["LIGHTGOLDENROD"]; } }
|
||||
public static Color LightGray { get { return namedColors["LIGHTGRAY"]; } }
|
||||
public static Color LightGreen { get { return namedColors["LIGHTGREEN"]; } }
|
||||
public static Color LightPink { get { return namedColors["LIGHTPINK"]; } }
|
||||
public static Color LightSalmon { get { return namedColors["LIGHTSALMON"]; } }
|
||||
public static Color LightSeaGreen { get { return namedColors["LIGHTSEAGREEN"]; } }
|
||||
public static Color LightSkyBlue { get { return namedColors["LIGHTSKYBLUE"]; } }
|
||||
public static Color LightSlateGray { get { return namedColors["LIGHTSLATEGRAY"]; } }
|
||||
public static Color LightSteelBlue { get { return namedColors["LIGHTSTEELBLUE"]; } }
|
||||
public static Color LightYellow { get { return namedColors["LIGHTYELLOW"]; } }
|
||||
public static Color Lime { get { return namedColors["LIME"]; } }
|
||||
public static Color LimeGreen { get { return namedColors["LIMEGREEN"]; } }
|
||||
public static Color Linen { get { return namedColors["LINEN"]; } }
|
||||
public static Color Magenta { get { return namedColors["MAGENTA"]; } }
|
||||
public static Color Maroon { get { return namedColors["MAROON"]; } }
|
||||
public static Color MediumAquamarine { get { return namedColors["MEDIUMAQUAMARINE"]; } }
|
||||
public static Color MediumBlue { get { return namedColors["MEDIUMBLUE"]; } }
|
||||
public static Color MediumOrchid { get { return namedColors["MEDIUMORCHID"]; } }
|
||||
public static Color MediumPurple { get { return namedColors["MEDIUMPURPLE"]; } }
|
||||
public static Color MediumSeaGreen { get { return namedColors["MEDIUMSEAGREEN"]; } }
|
||||
public static Color MediumSlateBlue { get { return namedColors["MEDIUMSLATEBLUE"]; } }
|
||||
public static Color MediumSpringGreen { get { return namedColors["MEDIUMSPRINGGREEN"]; } }
|
||||
public static Color MediumTurquoise { get { return namedColors["MEDIUMTURQUOISE"]; } }
|
||||
public static Color MediumVioletRed { get { return namedColors["MEDIUMVIOLETRED"]; } }
|
||||
public static Color MidnightBlue { get { return namedColors["MIDNIGHTBLUE"]; } }
|
||||
public static Color MintCream { get { return namedColors["MINTCREAM"]; } }
|
||||
public static Color MistyRose { get { return namedColors["MISTYROSE"]; } }
|
||||
public static Color Moccasin { get { return namedColors["MOCCASIN"]; } }
|
||||
public static Color NavajoWhite { get { return namedColors["NAVAJOWHITE"]; } }
|
||||
public static Color NavyBlue { get { return namedColors["NAVYBLUE"]; } }
|
||||
public static Color OldLace { get { return namedColors["OLDLACE"]; } }
|
||||
public static Color Olive { get { return namedColors["OLIVE"]; } }
|
||||
public static Color OliveDrab { get { return namedColors["OLIVEDRAB"]; } }
|
||||
public static Color Orange { get { return namedColors["ORANGE"]; } }
|
||||
public static Color OrangeRed { get { return namedColors["ORANGERED"]; } }
|
||||
public static Color Orchid { get { return namedColors["ORCHID"]; } }
|
||||
public static Color PaleGoldenrod { get { return namedColors["PALEGOLDENROD"]; } }
|
||||
public static Color PaleGreen { get { return namedColors["PALEGREEN"]; } }
|
||||
public static Color PaleTurquoise { get { return namedColors["PALETURQUOISE"]; } }
|
||||
public static Color PaleVioletRed { get { return namedColors["PALEVIOLETRED"]; } }
|
||||
public static Color PapayaWhip { get { return namedColors["PAPAYAWHIP"]; } }
|
||||
public static Color PeachPuff { get { return namedColors["PEACHPUFF"]; } }
|
||||
public static Color Peru { get { return namedColors["PERU"]; } }
|
||||
public static Color Pink { get { return namedColors["PINK"]; } }
|
||||
public static Color Plum { get { return namedColors["PLUM"]; } }
|
||||
public static Color PowderBlue { get { return namedColors["POWDERBLUE"]; } }
|
||||
public static Color Purple { get { return namedColors["PURPLE"]; } }
|
||||
public static Color RebeccaPurple { get { return namedColors["REBECCAPURPLE"]; } }
|
||||
public static Color Red { get { return namedColors["RED"]; } }
|
||||
public static Color RosyBrown { get { return namedColors["ROSYBROWN"]; } }
|
||||
public static Color RoyalBlue { get { return namedColors["ROYALBLUE"]; } }
|
||||
public static Color SaddleBrown { get { return namedColors["SADDLEBROWN"]; } }
|
||||
public static Color Salmon { get { return namedColors["SALMON"]; } }
|
||||
public static Color SandyBrown { get { return namedColors["SANDYBROWN"]; } }
|
||||
public static Color SeaGreen { get { return namedColors["SEAGREEN"]; } }
|
||||
public static Color Seashell { get { return namedColors["SEASHELL"]; } }
|
||||
public static Color Sienna { get { return namedColors["SIENNA"]; } }
|
||||
public static Color Silver { get { return namedColors["SILVER"]; } }
|
||||
public static Color SkyBlue { get { return namedColors["SKYBLUE"]; } }
|
||||
public static Color SlateBlue { get { return namedColors["SLATEBLUE"]; } }
|
||||
public static Color SlateGray { get { return namedColors["SLATEGRAY"]; } }
|
||||
public static Color Snow { get { return namedColors["SNOW"]; } }
|
||||
public static Color SpringGreen { get { return namedColors["SPRINGGREEN"]; } }
|
||||
public static Color SteelBlue { get { return namedColors["STEELBLUE"]; } }
|
||||
public static Color Tan { get { return namedColors["TAN"]; } }
|
||||
public static Color Teal { get { return namedColors["TEAL"]; } }
|
||||
public static Color Thistle { get { return namedColors["THISTLE"]; } }
|
||||
public static Color Tomato { get { return namedColors["TOMATO"]; } }
|
||||
public static Color Transparent { get { return namedColors["TRANSPARENT"]; } }
|
||||
public static Color Turquoise { get { return namedColors["TURQUOISE"]; } }
|
||||
public static Color Violet { get { return namedColors["VIOLET"]; } }
|
||||
public static Color WebGray { get { return namedColors["WEBGRAY"]; } }
|
||||
public static Color WebGreen { get { return namedColors["WEBGREEN"]; } }
|
||||
public static Color WebMaroon { get { return namedColors["WEBMAROON"]; } }
|
||||
public static Color WebPurple { get { return namedColors["WEBPURPLE"]; } }
|
||||
public static Color Wheat { get { return namedColors["WHEAT"]; } }
|
||||
public static Color White { get { return namedColors["WHITE"]; } }
|
||||
public static Color WhiteSmoke { get { return namedColors["WHITESMOKE"]; } }
|
||||
public static Color Yellow { get { return namedColors["YELLOW"]; } }
|
||||
public static Color YellowGreen { get { return namedColors["YELLOWGREEN"]; } }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue