2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-08-05 18:51:38 +02:00
<class name= "Color" version= "3.6" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
2020-07-22 03:21:41 +02:00
Color in RGBA format using floats on the range of 0 to 1.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2021-12-24 09:51:31 +01:00
A color represented by red, green, blue, and alpha (RGBA) components. The alpha component is often used for opacity. Values are in floating-point and usually range from 0 to 1. Some properties (such as CanvasItem.modulate) may accept values greater than 1 (overbright or HDR colors).
2020-06-21 17:16:10 +02:00
You can also create a color from standardized color names by using [method @GDScript.ColorN] or directly using the color constants defined here. The standardized color set is based on the [url=https://en.wikipedia.org/wiki/X11_color_names]X11 color names[/url].
2020-04-04 21:31:34 +02:00
If you want to supply values in a range of 0 to 255, you should use [method @GDScript.Color8].
2020-06-21 17:16:10 +02:00
[b]Note:[/b] In a boolean context, a Color will evaluate to [code]false[/code] if it's equal to [code]Color(0, 0, 0, 1)[/code] (opaque black). Otherwise, a Color will always evaluate to [code]true[/code].
2020-09-23 23:48:37 +02:00
[url=https://raw.githubusercontent.com/godotengine/godot-docs/master/img/color_constants.png]Color constants cheatsheet[/url]
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2020-10-01 10:34:47 +02:00
<link title= "2D GD Paint Demo" > https://godotengine.org/asset-library/asset/517</link>
<link title= "Tween Demo" > https://godotengine.org/asset-library/asset/146</link>
<link title= "GUI Drag And Drop Demo" > https://godotengine.org/asset-library/asset/133</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
<method name= "Color" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
<argument index= "0" name= "from" type= "String" />
2017-09-12 22:42:36 +02:00
<description >
2018-07-26 11:56:21 +02:00
Constructs a color from an HTML hexadecimal color string in ARGB or RGB format. See also [method @GDScript.ColorN].
2017-09-12 22:42:36 +02:00
[codeblock]
2020-01-23 18:41:49 +01:00
# Each of the following creates the same color RGBA(178, 217, 10, 255).
var c1 = Color("#ffb2d90a") # ARGB format with "#".
var c2 = Color("ffb2d90a") # ARGB format.
var c3 = Color("#b2d90a") # RGB format with "#".
var c4 = Color("b2d90a") # RGB format.
2017-09-12 22:42:36 +02:00
[/codeblock]
</description>
</method>
<method name= "Color" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
<argument index= "0" name= "from" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2020-11-14 10:44:14 +01:00
Constructs a color from a 32-bit integer in RGBA format (each byte represents a color channel).
2017-09-12 22:42:36 +02:00
[codeblock]
2022-06-08 11:42:51 +02:00
var color = Color(274) # Similar to Color(0.0, 0.0, 0.004, 0.07)
2017-09-12 22:42:36 +02:00
[/codeblock]
</description>
</method>
<method name= "Color" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
<argument index= "0" name= "r" type= "float" />
<argument index= "1" name= "g" type= "float" />
<argument index= "2" name= "b" type= "float" />
2017-09-12 22:42:36 +02:00
<description >
2020-11-14 10:44:14 +01:00
Constructs a color from RGB values, typically between 0 and 1. Alpha will be 1.
2017-09-12 22:42:36 +02:00
[codeblock]
2020-11-14 10:44:14 +01:00
var color = Color(0.2, 1.0, 0.7) # Similar to Color8(51, 255, 178, 255)
2017-09-12 22:42:36 +02:00
[/codeblock]
</description>
</method>
<method name= "Color" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
<argument index= "0" name= "r" type= "float" />
<argument index= "1" name= "g" type= "float" />
<argument index= "2" name= "b" type= "float" />
<argument index= "3" name= "a" type= "float" />
2017-09-12 22:42:36 +02:00
<description >
2020-11-14 10:44:14 +01:00
Constructs a color from RGBA values, typically between 0 and 1.
2017-09-12 22:42:36 +02:00
[codeblock]
2020-11-14 10:44:14 +01:00
var color = Color(0.2, 1.0, 0.7, 0.8) # Similar to Color8(51, 255, 178, 204)
2017-09-12 22:42:36 +02:00
[/codeblock]
</description>
</method>
<method name= "blend" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
<argument index= "0" name= "over" type= "Color" />
2017-09-12 22:42:36 +02:00
<description >
2018-10-03 00:47:10 +02:00
Returns a new color resulting from blending this color over another. If the color is opaque, the result is also opaque. The second color may have a range of alpha values.
2017-09-12 22:42:36 +02:00
[codeblock]
var bg = Color(0.0, 1.0, 0.0, 0.5) # Green with alpha of 50%
2018-12-14 09:37:19 +01:00
var fg = Color(1.0, 0.0, 0.0, 0.5) # Red with alpha of 50%
var blended_color = bg.blend(fg) # Brown with alpha of 75%
2017-09-12 22:42:36 +02:00
[/codeblock]
</description>
</method>
<method name= "contrasted" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
2017-09-12 22:42:36 +02:00
<description >
Returns the most contrasting color.
[codeblock]
2022-06-08 11:42:51 +02:00
var color = Color(0.3, 0.4, 0.9)
var contrasted_color = color.contrasted() # Equivalent to RGBA(204, 229, 102, 255)
2017-09-12 22:42:36 +02:00
[/codeblock]
</description>
</method>
2017-11-24 09:16:27 +01:00
<method name= "darkened" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
<argument index= "0" name= "amount" type= "float" />
2017-11-24 09:16:27 +01:00
<description >
2018-12-14 09:37:19 +01:00
Returns a new color resulting from making this color darker by the specified percentage (ratio from 0 to 1).
2017-11-24 09:16:27 +01:00
[codeblock]
var green = Color(0.0, 1.0, 0.0)
var darkgreen = green.darkened(0.2) # 20% darker than regular green
[/codeblock]
</description>
</method>
2018-02-25 07:19:42 +01:00
<method name= "from_hsv" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
<argument index= "0" name= "h" type= "float" />
<argument index= "1" name= "s" type= "float" />
<argument index= "2" name= "v" type= "float" />
<argument index= "3" name= "a" type= "float" default= "1.0" />
2018-02-25 07:19:42 +01:00
<description >
2018-05-11 13:57:11 +02:00
Constructs a color from an HSV profile. [code]h[/code], [code]s[/code], and [code]v[/code] are values between 0 and 1.
2018-02-25 07:19:42 +01:00
[codeblock]
2022-06-08 11:42:51 +02:00
var color = Color.from_hsv(0.58, 0.5, 0.79, 0.8) # Equivalent to HSV(210, 50, 79, 0.8) or Color8(100, 151, 201, 0.8)
2018-02-25 07:19:42 +01:00
[/codeblock]
</description>
</method>
2021-12-16 06:59:58 +01:00
<method name= "get_luminance" >
<return type= "float" />
<description >
Returns the luminance of the color in the [code][0.0, 1.0][/code] range.
This is useful when determining light or dark color. Colors with a luminance smaller than 0.5 can be generally considered dark.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "gray" >
2021-07-30 15:28:05 +02:00
<return type= "float" />
2017-09-12 22:42:36 +02:00
<description >
2018-10-03 00:47:10 +02:00
Returns the color's grayscale representation.
2018-12-14 09:37:19 +01:00
The gray value is calculated as [code](r + g + b) / 3[/code].
2017-09-12 22:42:36 +02:00
[codeblock]
2022-06-08 11:42:51 +02:00
var color = Color(0.2, 0.45, 0.82)
var gray = color.gray() # A value of 0.466667
2017-09-12 22:42:36 +02:00
[/codeblock]
</description>
</method>
<method name= "inverted" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
2017-09-12 22:42:36 +02:00
<description >
2019-06-08 01:44:25 +02:00
Returns the inverted color [code](1 - r, 1 - g, 1 - b, a)[/code].
2017-09-12 22:42:36 +02:00
[codeblock]
2020-11-14 10:44:14 +01:00
var color = Color(0.3, 0.4, 0.9)
var inverted_color = color.inverted() # Equivalent to Color(0.7, 0.6, 0.1)
2017-09-12 22:42:36 +02:00
[/codeblock]
</description>
</method>
2019-11-08 08:33:48 +01:00
<method name= "is_equal_approx" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "color" type= "Color" />
2019-11-08 08:33:48 +01:00
<description >
2019-11-30 21:08:50 +01:00
Returns [code]true[/code] if this color and [code]color[/code] are approximately equal, by running [method @GDScript.is_equal_approx] on each component.
2019-11-08 08:33:48 +01:00
</description>
</method>
2017-10-13 06:49:31 +02:00
<method name= "lightened" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
<argument index= "0" name= "amount" type= "float" />
2017-10-13 06:49:31 +02:00
<description >
2018-12-14 09:37:19 +01:00
Returns a new color resulting from making this color lighter by the specified percentage (ratio from 0 to 1).
2017-10-13 06:49:31 +02:00
[codeblock]
var green = Color(0.0, 1.0, 0.0)
var lightgreen = green.lightened(0.2) # 20% lighter than regular green
[/codeblock]
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "linear_interpolate" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
<argument index= "0" name= "to" type= "Color" />
<argument index= "1" name= "weight" type= "float" />
2017-09-12 22:42:36 +02:00
<description >
2021-04-22 19:59:16 +02:00
Returns the linear interpolation with another color. The interpolation factor [code]weight[/code] is between 0 and 1.
2017-09-12 22:42:36 +02:00
[codeblock]
var c1 = Color(1.0, 0.0, 0.0)
var c2 = Color(0.0, 1.0, 0.0)
2020-11-14 10:44:14 +01:00
var li_c = c1.linear_interpolate(c2, 0.5) # Equivalent to Color(0.5, 0.5, 0.0)
2017-09-12 22:42:36 +02:00
[/codeblock]
</description>
</method>
2018-07-26 11:56:21 +02:00
<method name= "to_abgr32" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2020-11-14 10:44:14 +01:00
Returns the color converted to a 32-bit integer in ABGR format (each byte represents a color channel). ABGR is the reversed version of the default format.
2017-09-12 22:42:36 +02:00
[codeblock]
2020-11-14 10:44:14 +01:00
var color = Color(1, 0.5, 0.2)
print(color.to_abgr32()) # Prints 4281565439
2017-09-12 22:42:36 +02:00
[/codeblock]
</description>
</method>
2018-07-26 11:56:21 +02:00
<method name= "to_abgr64" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2018-07-25 22:33:42 +02:00
<description >
2020-11-14 10:44:14 +01:00
Returns the color converted to a 64-bit integer in ABGR format (each word represents a color channel). ABGR is the reversed version of the default format.
2018-07-25 22:33:42 +02:00
[codeblock]
2020-11-14 10:44:14 +01:00
var color = Color(1, 0.5, 0.2)
print(color.to_abgr64()) # Prints -225178692812801
2018-07-25 22:33:42 +02:00
[/codeblock]
</description>
</method>
2018-07-26 11:56:21 +02:00
<method name= "to_argb32" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2018-07-25 22:33:42 +02:00
<description >
2020-11-14 10:44:14 +01:00
Returns the color converted to a 32-bit integer in ARGB format (each byte represents a color channel). ARGB is more compatible with DirectX.
2018-07-25 22:33:42 +02:00
[codeblock]
2020-11-14 10:44:14 +01:00
var color = Color(1, 0.5, 0.2)
print(color.to_argb32()) # Prints 4294934323
2018-07-25 22:33:42 +02:00
[/codeblock]
</description>
</method>
2018-07-26 11:56:21 +02:00
<method name= "to_argb64" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2020-11-14 10:44:14 +01:00
Returns the color converted to a 64-bit integer in ARGB format (each word represents a color channel). ARGB is more compatible with DirectX.
2018-07-25 22:33:42 +02:00
[codeblock]
2020-11-14 10:44:14 +01:00
var color = Color(1, 0.5, 0.2)
print(color.to_argb64()) # Prints -2147470541
2018-07-25 22:33:42 +02:00
[/codeblock]
</description>
</method>
2018-07-26 11:56:21 +02:00
<method name= "to_html" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
<argument index= "0" name= "with_alpha" type= "bool" default= "true" />
2018-07-25 22:33:42 +02:00
<description >
2018-07-26 11:56:21 +02:00
Returns the color's HTML hexadecimal color string in ARGB format (ex: [code]ff34f822[/code]).
2018-10-03 00:47:10 +02:00
Setting [code]with_alpha[/code] to [code]false[/code] excludes alpha from the hexadecimal string.
2018-07-25 22:33:42 +02:00
[codeblock]
2022-06-08 11:42:51 +02:00
var color = Color(1, 1, 1, 0.5)
var s1 = color.to_html() # Returns "7fffffff"
var s2 = color.to_html(false) # Returns "ffffff"
2018-07-25 22:33:42 +02:00
[/codeblock]
</description>
</method>
2018-07-26 11:56:21 +02:00
<method name= "to_rgba32" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2018-07-25 22:33:42 +02:00
<description >
2020-11-14 10:44:14 +01:00
Returns the color converted to a 32-bit integer in RGBA format (each byte represents a color channel). RGBA is Godot's default format.
2018-07-25 22:33:42 +02:00
[codeblock]
2020-11-14 10:44:14 +01:00
var color = Color(1, 0.5, 0.2)
print(color.to_rgba32()) # Prints 4286526463
2018-07-25 22:33:42 +02:00
[/codeblock]
</description>
</method>
<method name= "to_rgba64" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2018-07-25 22:33:42 +02:00
<description >
2020-11-14 10:44:14 +01:00
Returns the color converted to a 64-bit integer in RGBA format (each word represents a color channel). RGBA is Godot's default format.
2017-09-12 22:42:36 +02:00
[codeblock]
2020-11-14 10:44:14 +01:00
var color = Color(1, 0.5, 0.2)
print(color.to_rgba64()) # Prints -140736629309441
2017-09-12 22:42:36 +02:00
[/codeblock]
</description>
</method>
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "a" type= "float" setter= "" getter= "" default= "1.0" >
2021-12-24 09:51:31 +01:00
The color's alpha component, typically on the range of 0 to 1. A value of 0 means that the color is fully transparent. A value of 1 means that the color is fully opaque.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "a8" type= "int" setter= "" getter= "" default= "255" >
2020-07-22 03:21:41 +02:00
Wrapper for [member a] that uses the range 0 to 255 instead of 0 to 1.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "b" type= "float" setter= "" getter= "" default= "0.0" >
2020-07-22 03:21:41 +02:00
The color's blue component, typically on the range of 0 to 1.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "b8" type= "int" setter= "" getter= "" default= "0" >
2020-07-22 03:21:41 +02:00
Wrapper for [member b] that uses the range 0 to 255 instead of 0 to 1.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "g" type= "float" setter= "" getter= "" default= "0.0" >
2020-07-22 03:21:41 +02:00
The color's green component, typically on the range of 0 to 1.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "g8" type= "int" setter= "" getter= "" default= "0" >
2020-07-22 03:21:41 +02:00
Wrapper for [member g] that uses the range 0 to 255 instead of 0 to 1.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "h" type= "float" setter= "" getter= "" default= "0.0" >
2020-07-22 03:21:41 +02:00
The HSV hue of this color, on the range 0 to 1.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "r" type= "float" setter= "" getter= "" default= "0.0" >
2020-07-22 03:21:41 +02:00
The color's red component, typically on the range of 0 to 1.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "r8" type= "int" setter= "" getter= "" default= "0" >
2020-07-22 03:21:41 +02:00
Wrapper for [member r] that uses the range 0 to 255 instead of 0 to 1.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "s" type= "float" setter= "" getter= "" default= "0.0" >
2020-07-22 03:21:41 +02:00
The HSV saturation of this color, on the range 0 to 1.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "v" type= "float" setter= "" getter= "" default= "0.0" >
2020-07-22 03:21:41 +02:00
The HSV value (brightness) of this color, on the range 0 to 1.
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
2022-03-17 07:46:10 +01:00
<constant name= "aliceblue" value= "Color( 0.941176, 0.972549, 1, 1 )" >
2020-01-26 12:07:59 +01:00
Alice blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "antiquewhite" value= "Color( 0.980392, 0.921569, 0.843137, 1 )" >
2020-01-26 12:07:59 +01:00
Antique white color.
2018-08-21 00:35:30 +02:00
</constant>
<constant name= "aqua" value= "Color( 0, 1, 1, 1 )" >
2020-01-26 12:07:59 +01:00
Aqua color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "aquamarine" value= "Color( 0.498039, 1, 0.831373, 1 )" >
2020-01-26 12:07:59 +01:00
Aquamarine color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "azure" value= "Color( 0.941176, 1, 1, 1 )" >
2020-01-26 12:07:59 +01:00
Azure color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "beige" value= "Color( 0.960784, 0.960784, 0.862745, 1 )" >
2020-01-26 12:07:59 +01:00
Beige color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "bisque" value= "Color( 1, 0.894118, 0.768627, 1 )" >
2020-01-26 12:07:59 +01:00
Bisque color.
2018-08-21 00:35:30 +02:00
</constant>
<constant name= "black" value= "Color( 0, 0, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Black color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "blanchedalmond" value= "Color( 1, 0.921569, 0.803922, 1 )" >
2020-01-26 12:07:59 +01:00
Blanche almond color.
2018-08-21 00:35:30 +02:00
</constant>
<constant name= "blue" value= "Color( 0, 0, 1, 1 )" >
2020-01-26 12:07:59 +01:00
Blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "blueviolet" value= "Color( 0.541176, 0.168627, 0.886275, 1 )" >
2020-01-26 12:07:59 +01:00
Blue violet color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "brown" value= "Color( 0.647059, 0.164706, 0.164706, 1 )" >
2020-01-26 12:07:59 +01:00
Brown color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "burlywood" value= "Color( 0.870588, 0.721569, 0.529412, 1 )" >
2020-01-26 12:07:59 +01:00
Burly wood color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "cadetblue" value= "Color( 0.372549, 0.619608, 0.627451, 1 )" >
2020-01-26 12:07:59 +01:00
Cadet blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "chartreuse" value= "Color( 0.498039, 1, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Chartreuse color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "chocolate" value= "Color( 0.823529, 0.411765, 0.117647, 1 )" >
2020-01-26 12:07:59 +01:00
Chocolate color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "coral" value= "Color( 1, 0.498039, 0.313726, 1 )" >
2020-01-26 12:07:59 +01:00
Coral color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "cornflower" value= "Color( 0.392157, 0.584314, 0.929412, 1 )" >
2020-01-26 12:07:59 +01:00
Cornflower color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "cornsilk" value= "Color( 1, 0.972549, 0.862745, 1 )" >
2020-01-26 12:07:59 +01:00
Corn silk color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "crimson" value= "Color( 0.862745, 0.0784314, 0.235294, 1 )" >
2020-01-26 12:07:59 +01:00
Crimson color.
2018-08-21 00:35:30 +02:00
</constant>
<constant name= "cyan" value= "Color( 0, 1, 1, 1 )" >
2020-01-26 12:07:59 +01:00
Cyan color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkblue" value= "Color( 0, 0, 0.545098, 1 )" >
2020-01-26 12:07:59 +01:00
Dark blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkcyan" value= "Color( 0, 0.545098, 0.545098, 1 )" >
2020-01-26 12:07:59 +01:00
Dark cyan color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkgoldenrod" value= "Color( 0.721569, 0.52549, 0.0431373, 1 )" >
2020-01-26 12:07:59 +01:00
Dark goldenrod color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkgray" value= "Color( 0.662745, 0.662745, 0.662745, 1 )" >
2020-01-26 12:07:59 +01:00
Dark gray color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkgreen" value= "Color( 0, 0.392157, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Dark green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkkhaki" value= "Color( 0.741176, 0.717647, 0.419608, 1 )" >
2020-01-26 12:07:59 +01:00
Dark khaki color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkmagenta" value= "Color( 0.545098, 0, 0.545098, 1 )" >
2020-01-26 12:07:59 +01:00
Dark magenta color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkolivegreen" value= "Color( 0.333333, 0.419608, 0.184314, 1 )" >
2020-01-26 12:07:59 +01:00
Dark olive green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkorange" value= "Color( 1, 0.54902, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Dark orange color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkorchid" value= "Color( 0.6, 0.196078, 0.8, 1 )" >
2020-01-26 12:07:59 +01:00
Dark orchid color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkred" value= "Color( 0.545098, 0, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Dark red color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darksalmon" value= "Color( 0.913725, 0.588235, 0.478431, 1 )" >
2020-01-26 12:07:59 +01:00
Dark salmon color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkseagreen" value= "Color( 0.560784, 0.737255, 0.560784, 1 )" >
2020-01-26 12:07:59 +01:00
Dark sea green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkslateblue" value= "Color( 0.282353, 0.239216, 0.545098, 1 )" >
2020-01-26 12:07:59 +01:00
Dark slate blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkslategray" value= "Color( 0.184314, 0.309804, 0.309804, 1 )" >
2020-01-26 12:07:59 +01:00
Dark slate gray color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkturquoise" value= "Color( 0, 0.807843, 0.819608, 1 )" >
2020-01-26 12:07:59 +01:00
Dark turquoise color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "darkviolet" value= "Color( 0.580392, 0, 0.827451, 1 )" >
2020-01-26 12:07:59 +01:00
Dark violet color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "deeppink" value= "Color( 1, 0.0784314, 0.576471, 1 )" >
2020-01-26 12:07:59 +01:00
Deep pink color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "deepskyblue" value= "Color( 0, 0.74902, 1, 1 )" >
2020-01-26 12:07:59 +01:00
Deep sky blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "dimgray" value= "Color( 0.411765, 0.411765, 0.411765, 1 )" >
2020-01-26 12:07:59 +01:00
Dim gray color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "dodgerblue" value= "Color( 0.117647, 0.564706, 1, 1 )" >
2020-01-26 12:07:59 +01:00
Dodger blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "firebrick" value= "Color( 0.698039, 0.133333, 0.133333, 1 )" >
2020-01-26 12:07:59 +01:00
Firebrick color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "floralwhite" value= "Color( 1, 0.980392, 0.941176, 1 )" >
2020-01-26 12:07:59 +01:00
Floral white color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "forestgreen" value= "Color( 0.133333, 0.545098, 0.133333, 1 )" >
2020-01-26 12:07:59 +01:00
Forest green color.
2018-08-21 00:35:30 +02:00
</constant>
<constant name= "fuchsia" value= "Color( 1, 0, 1, 1 )" >
2020-01-26 12:07:59 +01:00
Fuchsia color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "gainsboro" value= "Color( 0.862745, 0.862745, 0.862745, 1 )" >
2020-01-26 12:07:59 +01:00
Gainsboro color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "ghostwhite" value= "Color( 0.972549, 0.972549, 1, 1 )" >
2020-01-26 12:07:59 +01:00
Ghost white color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "gold" value= "Color( 1, 0.843137, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Gold color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "goldenrod" value= "Color( 0.854902, 0.647059, 0.12549, 1 )" >
2020-01-26 12:07:59 +01:00
Goldenrod color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "gray" value= "Color( 0.745098, 0.745098, 0.745098, 1 )" >
2020-05-25 17:00:22 +02:00
Gray color.
</constant>
2018-08-21 00:35:30 +02:00
<constant name= "green" value= "Color( 0, 1, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "greenyellow" value= "Color( 0.678431, 1, 0.184314, 1 )" >
2020-01-26 12:07:59 +01:00
Green yellow color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "honeydew" value= "Color( 0.941176, 1, 0.941176, 1 )" >
2020-01-26 12:07:59 +01:00
Honeydew color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "hotpink" value= "Color( 1, 0.411765, 0.705882, 1 )" >
2020-01-26 12:07:59 +01:00
Hot pink color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "indianred" value= "Color( 0.803922, 0.360784, 0.360784, 1 )" >
2020-01-26 12:07:59 +01:00
Indian red color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "indigo" value= "Color( 0.294118, 0, 0.509804, 1 )" >
2020-01-26 12:07:59 +01:00
Indigo color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "ivory" value= "Color( 1, 1, 0.941176, 1 )" >
2020-01-26 12:07:59 +01:00
Ivory color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "khaki" value= "Color( 0.941176, 0.901961, 0.54902, 1 )" >
2020-01-26 12:07:59 +01:00
Khaki color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lavender" value= "Color( 0.901961, 0.901961, 0.980392, 1 )" >
2020-01-26 12:07:59 +01:00
Lavender color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lavenderblush" value= "Color( 1, 0.941176, 0.960784, 1 )" >
2020-01-26 12:07:59 +01:00
Lavender blush color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lawngreen" value= "Color( 0.486275, 0.988235, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Lawn green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lemonchiffon" value= "Color( 1, 0.980392, 0.803922, 1 )" >
2020-01-26 12:07:59 +01:00
Lemon chiffon color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightblue" value= "Color( 0.678431, 0.847059, 0.901961, 1 )" >
2020-01-26 12:07:59 +01:00
Light blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightcoral" value= "Color( 0.941176, 0.501961, 0.501961, 1 )" >
2020-01-26 12:07:59 +01:00
Light coral color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightcyan" value= "Color( 0.878431, 1, 1, 1 )" >
2020-01-26 12:07:59 +01:00
Light cyan color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightgoldenrod" value= "Color( 0.980392, 0.980392, 0.823529, 1 )" >
2020-01-26 12:07:59 +01:00
Light goldenrod color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightgray" value= "Color( 0.827451, 0.827451, 0.827451, 1 )" >
2020-01-26 12:07:59 +01:00
Light gray color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightgreen" value= "Color( 0.564706, 0.933333, 0.564706, 1 )" >
2020-01-26 12:07:59 +01:00
Light green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightpink" value= "Color( 1, 0.713726, 0.756863, 1 )" >
2020-01-26 12:07:59 +01:00
Light pink color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightsalmon" value= "Color( 1, 0.627451, 0.478431, 1 )" >
2020-01-26 12:07:59 +01:00
Light salmon color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightseagreen" value= "Color( 0.12549, 0.698039, 0.666667, 1 )" >
2020-01-26 12:07:59 +01:00
Light sea green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightskyblue" value= "Color( 0.529412, 0.807843, 0.980392, 1 )" >
2020-01-26 12:07:59 +01:00
Light sky blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightslategray" value= "Color( 0.466667, 0.533333, 0.6, 1 )" >
2020-01-26 12:07:59 +01:00
Light slate gray color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightsteelblue" value= "Color( 0.690196, 0.768627, 0.870588, 1 )" >
2020-01-26 12:07:59 +01:00
Light steel blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "lightyellow" value= "Color( 1, 1, 0.878431, 1 )" >
2020-01-26 12:07:59 +01:00
Light yellow color.
2018-08-21 00:35:30 +02:00
</constant>
<constant name= "lime" value= "Color( 0, 1, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Lime color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "limegreen" value= "Color( 0.196078, 0.803922, 0.196078, 1 )" >
2020-01-26 12:07:59 +01:00
Lime green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "linen" value= "Color( 0.980392, 0.941176, 0.901961, 1 )" >
2020-01-26 12:07:59 +01:00
Linen color.
2018-08-21 00:35:30 +02:00
</constant>
<constant name= "magenta" value= "Color( 1, 0, 1, 1 )" >
2020-01-26 12:07:59 +01:00
Magenta color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "maroon" value= "Color( 0.690196, 0.188235, 0.376471, 1 )" >
2020-01-26 12:07:59 +01:00
Maroon color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "mediumaquamarine" value= "Color( 0.4, 0.803922, 0.666667, 1 )" >
2020-01-26 12:07:59 +01:00
Medium aquamarine color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "mediumblue" value= "Color( 0, 0, 0.803922, 1 )" >
2020-01-26 12:07:59 +01:00
Medium blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "mediumorchid" value= "Color( 0.729412, 0.333333, 0.827451, 1 )" >
2020-01-26 12:07:59 +01:00
Medium orchid color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "mediumpurple" value= "Color( 0.576471, 0.439216, 0.858824, 1 )" >
2020-01-26 12:07:59 +01:00
Medium purple color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "mediumseagreen" value= "Color( 0.235294, 0.701961, 0.443137, 1 )" >
2020-01-26 12:07:59 +01:00
Medium sea green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "mediumslateblue" value= "Color( 0.482353, 0.407843, 0.933333, 1 )" >
2020-01-26 12:07:59 +01:00
Medium slate blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "mediumspringgreen" value= "Color( 0, 0.980392, 0.603922, 1 )" >
2020-01-26 12:07:59 +01:00
Medium spring green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "mediumturquoise" value= "Color( 0.282353, 0.819608, 0.8, 1 )" >
2020-01-26 12:07:59 +01:00
Medium turquoise color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "mediumvioletred" value= "Color( 0.780392, 0.0823529, 0.521569, 1 )" >
2020-01-26 12:07:59 +01:00
Medium violet red color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "midnightblue" value= "Color( 0.0980392, 0.0980392, 0.439216, 1 )" >
2020-01-26 12:07:59 +01:00
Midnight blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "mintcream" value= "Color( 0.960784, 1, 0.980392, 1 )" >
2020-01-26 12:07:59 +01:00
Mint cream color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "mistyrose" value= "Color( 1, 0.894118, 0.882353, 1 )" >
2020-01-26 12:07:59 +01:00
Misty rose color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "moccasin" value= "Color( 1, 0.894118, 0.709804, 1 )" >
2020-01-26 12:07:59 +01:00
Moccasin color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "navajowhite" value= "Color( 1, 0.870588, 0.678431, 1 )" >
2020-01-26 12:07:59 +01:00
Navajo white color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "navyblue" value= "Color( 0, 0, 0.501961, 1 )" >
2020-01-26 12:07:59 +01:00
Navy blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "oldlace" value= "Color( 0.992157, 0.960784, 0.901961, 1 )" >
2020-01-26 12:07:59 +01:00
Old lace color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "olive" value= "Color( 0.501961, 0.501961, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Olive color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "olivedrab" value= "Color( 0.419608, 0.556863, 0.137255, 1 )" >
2020-01-26 12:07:59 +01:00
Olive drab color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "orange" value= "Color( 1, 0.647059, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Orange color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "orangered" value= "Color( 1, 0.270588, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Orange red color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "orchid" value= "Color( 0.854902, 0.439216, 0.839216, 1 )" >
2020-01-26 12:07:59 +01:00
Orchid color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "palegoldenrod" value= "Color( 0.933333, 0.909804, 0.666667, 1 )" >
2020-01-26 12:07:59 +01:00
Pale goldenrod color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "palegreen" value= "Color( 0.596078, 0.984314, 0.596078, 1 )" >
2020-01-26 12:07:59 +01:00
Pale green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "paleturquoise" value= "Color( 0.686275, 0.933333, 0.933333, 1 )" >
2020-01-26 12:07:59 +01:00
Pale turquoise color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "palevioletred" value= "Color( 0.858824, 0.439216, 0.576471, 1 )" >
2020-01-26 12:07:59 +01:00
Pale violet red color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "papayawhip" value= "Color( 1, 0.937255, 0.835294, 1 )" >
2020-01-26 12:07:59 +01:00
Papaya whip color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "peachpuff" value= "Color( 1, 0.854902, 0.72549, 1 )" >
2020-01-26 12:07:59 +01:00
Peach puff color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "peru" value= "Color( 0.803922, 0.521569, 0.247059, 1 )" >
2020-01-26 12:07:59 +01:00
Peru color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "pink" value= "Color( 1, 0.752941, 0.796078, 1 )" >
2020-01-26 12:07:59 +01:00
Pink color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "plum" value= "Color( 0.866667, 0.627451, 0.866667, 1 )" >
2020-01-26 12:07:59 +01:00
Plum color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "powderblue" value= "Color( 0.690196, 0.878431, 0.901961, 1 )" >
2020-01-26 12:07:59 +01:00
Powder blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "purple" value= "Color( 0.627451, 0.12549, 0.941176, 1 )" >
2020-01-26 12:07:59 +01:00
Purple color.
2018-08-21 00:35:30 +02:00
</constant>
<constant name= "rebeccapurple" value= "Color( 0.4, 0.2, 0.6, 1 )" >
2020-01-26 12:07:59 +01:00
Rebecca purple color.
2018-08-21 00:35:30 +02:00
</constant>
<constant name= "red" value= "Color( 1, 0, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Red color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "rosybrown" value= "Color( 0.737255, 0.560784, 0.560784, 1 )" >
2020-01-26 12:07:59 +01:00
Rosy brown color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "royalblue" value= "Color( 0.254902, 0.411765, 0.882353, 1 )" >
2020-01-26 12:07:59 +01:00
Royal blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "saddlebrown" value= "Color( 0.545098, 0.270588, 0.0745098, 1 )" >
2020-01-26 12:07:59 +01:00
Saddle brown color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "salmon" value= "Color( 0.980392, 0.501961, 0.447059, 1 )" >
2020-01-26 12:07:59 +01:00
Salmon color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "sandybrown" value= "Color( 0.956863, 0.643137, 0.376471, 1 )" >
2020-01-26 12:07:59 +01:00
Sandy brown color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "seagreen" value= "Color( 0.180392, 0.545098, 0.341176, 1 )" >
2020-01-26 12:07:59 +01:00
Sea green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "seashell" value= "Color( 1, 0.960784, 0.933333, 1 )" >
2020-01-26 12:07:59 +01:00
Seashell color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "sienna" value= "Color( 0.627451, 0.321569, 0.176471, 1 )" >
2020-01-26 12:07:59 +01:00
Sienna color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "silver" value= "Color( 0.752941, 0.752941, 0.752941, 1 )" >
2020-01-26 12:07:59 +01:00
Silver color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "skyblue" value= "Color( 0.529412, 0.807843, 0.921569, 1 )" >
2020-01-26 12:07:59 +01:00
Sky blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "slateblue" value= "Color( 0.415686, 0.352941, 0.803922, 1 )" >
2020-01-26 12:07:59 +01:00
Slate blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "slategray" value= "Color( 0.439216, 0.501961, 0.564706, 1 )" >
2020-01-26 12:07:59 +01:00
Slate gray color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "snow" value= "Color( 1, 0.980392, 0.980392, 1 )" >
2020-01-26 12:07:59 +01:00
Snow color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "springgreen" value= "Color( 0, 1, 0.498039, 1 )" >
2020-01-26 12:07:59 +01:00
Spring green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "steelblue" value= "Color( 0.27451, 0.509804, 0.705882, 1 )" >
2020-01-26 12:07:59 +01:00
Steel blue color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "tan" value= "Color( 0.823529, 0.705882, 0.54902, 1 )" >
2020-01-26 12:07:59 +01:00
Tan color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "teal" value= "Color( 0, 0.501961, 0.501961, 1 )" >
2020-01-26 12:07:59 +01:00
Teal color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "thistle" value= "Color( 0.847059, 0.74902, 0.847059, 1 )" >
2020-01-26 12:07:59 +01:00
Thistle color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "tomato" value= "Color( 1, 0.388235, 0.278431, 1 )" >
2020-01-26 12:07:59 +01:00
Tomato color.
2018-08-21 00:35:30 +02:00
</constant>
2019-05-28 18:08:13 +02:00
<constant name= "transparent" value= "Color( 1, 1, 1, 0 )" >
2020-01-26 12:07:59 +01:00
Transparent color (white with no alpha).
2019-05-28 18:08:13 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "turquoise" value= "Color( 0.25098, 0.878431, 0.815686, 1 )" >
2020-01-26 12:07:59 +01:00
Turquoise color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "violet" value= "Color( 0.933333, 0.509804, 0.933333, 1 )" >
2020-01-26 12:07:59 +01:00
Violet color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "webgray" value= "Color( 0.501961, 0.501961, 0.501961, 1 )" >
2020-01-26 12:07:59 +01:00
Web gray color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "webgreen" value= "Color( 0, 0.501961, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Web green color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "webmaroon" value= "Color( 0.501961, 0, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Web maroon color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "webpurple" value= "Color( 0.501961, 0, 0.501961, 1 )" >
2020-01-26 12:07:59 +01:00
Web purple color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "wheat" value= "Color( 0.960784, 0.870588, 0.701961, 1 )" >
2020-01-26 12:07:59 +01:00
Wheat color.
2018-08-21 00:35:30 +02:00
</constant>
<constant name= "white" value= "Color( 1, 1, 1, 1 )" >
2020-01-26 12:07:59 +01:00
White color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "whitesmoke" value= "Color( 0.960784, 0.960784, 0.960784, 1 )" >
2020-01-26 12:07:59 +01:00
White smoke color.
2018-08-21 00:35:30 +02:00
</constant>
<constant name= "yellow" value= "Color( 1, 1, 0, 1 )" >
2020-01-26 12:07:59 +01:00
Yellow color.
2018-08-21 00:35:30 +02:00
</constant>
2022-03-17 07:46:10 +01:00
<constant name= "yellowgreen" value= "Color( 0.603922, 0.803922, 0.196078, 1 )" >
2020-01-26 12:07:59 +01:00
Yellow green color.
2018-08-21 00:35:30 +02:00
</constant>
2017-09-12 22:42:36 +02:00
</constants>
</class>