Color.xml 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="Color" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
  3. <brief_description>
  4. Color in RGBA format using floats on the range of 0 to 1.
  5. </brief_description>
  6. <description>
  7. 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).
  8. 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].
  9. If you want to supply values in a range of 0 to 255, you should use [method @GDScript.Color8].
  10. [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].
  11. [url=https://raw.githubusercontent.com/godotengine/godot-docs/master/img/color_constants.png]Color constants cheatsheet[/url]
  12. </description>
  13. <tutorials>
  14. <link title="2D GD Paint Demo">https://godotengine.org/asset-library/asset/517</link>
  15. <link title="Tween Demo">https://godotengine.org/asset-library/asset/146</link>
  16. <link title="GUI Drag And Drop Demo">https://godotengine.org/asset-library/asset/133</link>
  17. </tutorials>
  18. <methods>
  19. <method name="Color">
  20. <return type="Color" />
  21. <argument index="0" name="from" type="String" />
  22. <description>
  23. Constructs a color from an HTML hexadecimal color string in ARGB or RGB format. See also [method @GDScript.ColorN].
  24. [codeblock]
  25. # Each of the following creates the same color RGBA(178, 217, 10, 255).
  26. var c1 = Color("#ffb2d90a") # ARGB format with "#".
  27. var c2 = Color("ffb2d90a") # ARGB format.
  28. var c3 = Color("#b2d90a") # RGB format with "#".
  29. var c4 = Color("b2d90a") # RGB format.
  30. [/codeblock]
  31. </description>
  32. </method>
  33. <method name="Color">
  34. <return type="Color" />
  35. <argument index="0" name="from" type="int" />
  36. <description>
  37. Constructs a color from a 32-bit integer in RGBA format (each byte represents a color channel).
  38. [codeblock]
  39. var color = Color(274) # Similar to Color(0.0, 0.0, 0.004, 0.07)
  40. [/codeblock]
  41. </description>
  42. </method>
  43. <method name="Color">
  44. <return type="Color" />
  45. <argument index="0" name="from" type="Color" />
  46. <argument index="1" name="alpha" type="float" />
  47. <description>
  48. Constructs a color from the existing color, with [member a] set to the given [code]alpha[/code] value.
  49. [codeblock]
  50. var red = Color(Color.red, 0.2) # 20% opaque red.
  51. [/codeblock]
  52. </description>
  53. </method>
  54. <method name="Color">
  55. <return type="Color" />
  56. <argument index="0" name="r" type="float" />
  57. <argument index="1" name="g" type="float" />
  58. <argument index="2" name="b" type="float" />
  59. <description>
  60. Constructs a color from RGB values, typically between 0 and 1. Alpha will be 1.
  61. [codeblock]
  62. var color = Color(0.2, 1.0, 0.7) # Similar to Color8(51, 255, 178, 255)
  63. [/codeblock]
  64. </description>
  65. </method>
  66. <method name="Color">
  67. <return type="Color" />
  68. <argument index="0" name="r" type="float" />
  69. <argument index="1" name="g" type="float" />
  70. <argument index="2" name="b" type="float" />
  71. <argument index="3" name="a" type="float" />
  72. <description>
  73. Constructs a color from RGBA values, typically between 0 and 1.
  74. [codeblock]
  75. var color = Color(0.2, 1.0, 0.7, 0.8) # Similar to Color8(51, 255, 178, 204)
  76. [/codeblock]
  77. </description>
  78. </method>
  79. <method name="blend">
  80. <return type="Color" />
  81. <argument index="0" name="over" type="Color" />
  82. <description>
  83. 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.
  84. [codeblock]
  85. var bg = Color(0.0, 1.0, 0.0, 0.5) # Green with alpha of 50%
  86. var fg = Color(1.0, 0.0, 0.0, 0.5) # Red with alpha of 50%
  87. var blended_color = bg.blend(fg) # Brown with alpha of 75%
  88. [/codeblock]
  89. </description>
  90. </method>
  91. <method name="contrasted">
  92. <return type="Color" />
  93. <description>
  94. Returns the most contrasting color.
  95. [codeblock]
  96. var color = Color(0.3, 0.4, 0.9)
  97. var contrasted_color = color.contrasted() # Equivalent to RGBA(204, 229, 102, 255)
  98. [/codeblock]
  99. </description>
  100. </method>
  101. <method name="darkened">
  102. <return type="Color" />
  103. <argument index="0" name="amount" type="float" />
  104. <description>
  105. Returns a new color resulting from making this color darker by the specified percentage (ratio from 0 to 1).
  106. [codeblock]
  107. var green = Color(0.0, 1.0, 0.0)
  108. var darkgreen = green.darkened(0.2) # 20% darker than regular green
  109. [/codeblock]
  110. </description>
  111. </method>
  112. <method name="from_hsv">
  113. <return type="Color" />
  114. <argument index="0" name="h" type="float" />
  115. <argument index="1" name="s" type="float" />
  116. <argument index="2" name="v" type="float" />
  117. <argument index="3" name="a" type="float" default="1.0" />
  118. <description>
  119. Constructs a color from an HSV profile. [code]h[/code], [code]s[/code], and [code]v[/code] are values between 0 and 1.
  120. [codeblock]
  121. 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)
  122. [/codeblock]
  123. </description>
  124. </method>
  125. <method name="get_luminance">
  126. <return type="float" />
  127. <description>
  128. Returns the luminance of the color in the [code][0.0, 1.0][/code] range.
  129. This is useful when determining light or dark color. Colors with a luminance smaller than 0.5 can be generally considered dark.
  130. </description>
  131. </method>
  132. <method name="gray">
  133. <return type="float" />
  134. <description>
  135. Returns the color's grayscale representation.
  136. The gray value is calculated as [code](r + g + b) / 3[/code].
  137. [codeblock]
  138. var color = Color(0.2, 0.45, 0.82)
  139. var gray = color.gray() # A value of 0.466667
  140. [/codeblock]
  141. </description>
  142. </method>
  143. <method name="inverted">
  144. <return type="Color" />
  145. <description>
  146. Returns the inverted color [code](1 - r, 1 - g, 1 - b, a)[/code].
  147. [codeblock]
  148. var color = Color(0.3, 0.4, 0.9)
  149. var inverted_color = color.inverted() # Equivalent to Color(0.7, 0.6, 0.1)
  150. [/codeblock]
  151. </description>
  152. </method>
  153. <method name="is_equal_approx">
  154. <return type="bool" />
  155. <argument index="0" name="color" type="Color" />
  156. <description>
  157. Returns [code]true[/code] if this color and [code]color[/code] are approximately equal, by running [method @GDScript.is_equal_approx] on each component.
  158. </description>
  159. </method>
  160. <method name="lightened">
  161. <return type="Color" />
  162. <argument index="0" name="amount" type="float" />
  163. <description>
  164. Returns a new color resulting from making this color lighter by the specified percentage (ratio from 0 to 1).
  165. [codeblock]
  166. var green = Color(0.0, 1.0, 0.0)
  167. var lightgreen = green.lightened(0.2) # 20% lighter than regular green
  168. [/codeblock]
  169. </description>
  170. </method>
  171. <method name="linear_interpolate">
  172. <return type="Color" />
  173. <argument index="0" name="to" type="Color" />
  174. <argument index="1" name="weight" type="float" />
  175. <description>
  176. Returns the linear interpolation with another color. The interpolation factor [code]weight[/code] is between 0 and 1.
  177. [codeblock]
  178. var c1 = Color(1.0, 0.0, 0.0)
  179. var c2 = Color(0.0, 1.0, 0.0)
  180. var li_c = c1.linear_interpolate(c2, 0.5) # Equivalent to Color(0.5, 0.5, 0.0)
  181. [/codeblock]
  182. </description>
  183. </method>
  184. <method name="to_abgr32">
  185. <return type="int" />
  186. <description>
  187. 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.
  188. [codeblock]
  189. var color = Color(1, 0.5, 0.2)
  190. print(color.to_abgr32()) # Prints 4281565439
  191. [/codeblock]
  192. </description>
  193. </method>
  194. <method name="to_abgr64">
  195. <return type="int" />
  196. <description>
  197. 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.
  198. [codeblock]
  199. var color = Color(1, 0.5, 0.2)
  200. print(color.to_abgr64()) # Prints -225178692812801
  201. [/codeblock]
  202. </description>
  203. </method>
  204. <method name="to_argb32">
  205. <return type="int" />
  206. <description>
  207. Returns the color converted to a 32-bit integer in ARGB format (each byte represents a color channel). ARGB is more compatible with DirectX.
  208. [codeblock]
  209. var color = Color(1, 0.5, 0.2)
  210. print(color.to_argb32()) # Prints 4294934323
  211. [/codeblock]
  212. </description>
  213. </method>
  214. <method name="to_argb64">
  215. <return type="int" />
  216. <description>
  217. Returns the color converted to a 64-bit integer in ARGB format (each word represents a color channel). ARGB is more compatible with DirectX.
  218. [codeblock]
  219. var color = Color(1, 0.5, 0.2)
  220. print(color.to_argb64()) # Prints -2147470541
  221. [/codeblock]
  222. </description>
  223. </method>
  224. <method name="to_html">
  225. <return type="String" />
  226. <argument index="0" name="with_alpha" type="bool" default="true" />
  227. <description>
  228. Returns the color's HTML hexadecimal color string in ARGB format (ex: [code]ff34f822[/code]).
  229. Setting [code]with_alpha[/code] to [code]false[/code] excludes alpha from the hexadecimal string.
  230. [codeblock]
  231. var color = Color(1, 1, 1, 0.5)
  232. var s1 = color.to_html() # Returns "7fffffff"
  233. var s2 = color.to_html(false) # Returns "ffffff"
  234. [/codeblock]
  235. </description>
  236. </method>
  237. <method name="to_rgba32">
  238. <return type="int" />
  239. <description>
  240. Returns the color converted to a 32-bit integer in RGBA format (each byte represents a color channel). RGBA is Godot's default format.
  241. [codeblock]
  242. var color = Color(1, 0.5, 0.2)
  243. print(color.to_rgba32()) # Prints 4286526463
  244. [/codeblock]
  245. </description>
  246. </method>
  247. <method name="to_rgba64">
  248. <return type="int" />
  249. <description>
  250. Returns the color converted to a 64-bit integer in RGBA format (each word represents a color channel). RGBA is Godot's default format.
  251. [codeblock]
  252. var color = Color(1, 0.5, 0.2)
  253. print(color.to_rgba64()) # Prints -140736629309441
  254. [/codeblock]
  255. </description>
  256. </method>
  257. </methods>
  258. <members>
  259. <member name="a" type="float" setter="" getter="" default="1.0">
  260. 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.
  261. </member>
  262. <member name="a8" type="int" setter="" getter="" default="255">
  263. Wrapper for [member a] that uses the range 0 to 255 instead of 0 to 1.
  264. </member>
  265. <member name="b" type="float" setter="" getter="" default="0.0">
  266. The color's blue component, typically on the range of 0 to 1.
  267. </member>
  268. <member name="b8" type="int" setter="" getter="" default="0">
  269. Wrapper for [member b] that uses the range 0 to 255 instead of 0 to 1.
  270. </member>
  271. <member name="g" type="float" setter="" getter="" default="0.0">
  272. The color's green component, typically on the range of 0 to 1.
  273. </member>
  274. <member name="g8" type="int" setter="" getter="" default="0">
  275. Wrapper for [member g] that uses the range 0 to 255 instead of 0 to 1.
  276. </member>
  277. <member name="h" type="float" setter="" getter="" default="0.0">
  278. The HSV hue of this color, on the range 0 to 1.
  279. </member>
  280. <member name="r" type="float" setter="" getter="" default="0.0">
  281. The color's red component, typically on the range of 0 to 1.
  282. </member>
  283. <member name="r8" type="int" setter="" getter="" default="0">
  284. Wrapper for [member r] that uses the range 0 to 255 instead of 0 to 1.
  285. </member>
  286. <member name="s" type="float" setter="" getter="" default="0.0">
  287. The HSV saturation of this color, on the range 0 to 1.
  288. </member>
  289. <member name="v" type="float" setter="" getter="" default="0.0">
  290. The HSV value (brightness) of this color, on the range 0 to 1.
  291. </member>
  292. </members>
  293. <constants>
  294. <constant name="aliceblue" value="Color( 0.941176, 0.972549, 1, 1 )">
  295. Alice blue color.
  296. </constant>
  297. <constant name="antiquewhite" value="Color( 0.980392, 0.921569, 0.843137, 1 )">
  298. Antique white color.
  299. </constant>
  300. <constant name="aqua" value="Color( 0, 1, 1, 1 )">
  301. Aqua color.
  302. </constant>
  303. <constant name="aquamarine" value="Color( 0.498039, 1, 0.831373, 1 )">
  304. Aquamarine color.
  305. </constant>
  306. <constant name="azure" value="Color( 0.941176, 1, 1, 1 )">
  307. Azure color.
  308. </constant>
  309. <constant name="beige" value="Color( 0.960784, 0.960784, 0.862745, 1 )">
  310. Beige color.
  311. </constant>
  312. <constant name="bisque" value="Color( 1, 0.894118, 0.768627, 1 )">
  313. Bisque color.
  314. </constant>
  315. <constant name="black" value="Color( 0, 0, 0, 1 )">
  316. Black color.
  317. </constant>
  318. <constant name="blanchedalmond" value="Color( 1, 0.921569, 0.803922, 1 )">
  319. Blanche almond color.
  320. </constant>
  321. <constant name="blue" value="Color( 0, 0, 1, 1 )">
  322. Blue color.
  323. </constant>
  324. <constant name="blueviolet" value="Color( 0.541176, 0.168627, 0.886275, 1 )">
  325. Blue violet color.
  326. </constant>
  327. <constant name="brown" value="Color( 0.647059, 0.164706, 0.164706, 1 )">
  328. Brown color.
  329. </constant>
  330. <constant name="burlywood" value="Color( 0.870588, 0.721569, 0.529412, 1 )">
  331. Burly wood color.
  332. </constant>
  333. <constant name="cadetblue" value="Color( 0.372549, 0.619608, 0.627451, 1 )">
  334. Cadet blue color.
  335. </constant>
  336. <constant name="chartreuse" value="Color( 0.498039, 1, 0, 1 )">
  337. Chartreuse color.
  338. </constant>
  339. <constant name="chocolate" value="Color( 0.823529, 0.411765, 0.117647, 1 )">
  340. Chocolate color.
  341. </constant>
  342. <constant name="coral" value="Color( 1, 0.498039, 0.313726, 1 )">
  343. Coral color.
  344. </constant>
  345. <constant name="cornflower" value="Color( 0.392157, 0.584314, 0.929412, 1 )">
  346. Cornflower color.
  347. </constant>
  348. <constant name="cornsilk" value="Color( 1, 0.972549, 0.862745, 1 )">
  349. Corn silk color.
  350. </constant>
  351. <constant name="crimson" value="Color( 0.862745, 0.0784314, 0.235294, 1 )">
  352. Crimson color.
  353. </constant>
  354. <constant name="cyan" value="Color( 0, 1, 1, 1 )">
  355. Cyan color.
  356. </constant>
  357. <constant name="darkblue" value="Color( 0, 0, 0.545098, 1 )">
  358. Dark blue color.
  359. </constant>
  360. <constant name="darkcyan" value="Color( 0, 0.545098, 0.545098, 1 )">
  361. Dark cyan color.
  362. </constant>
  363. <constant name="darkgoldenrod" value="Color( 0.721569, 0.52549, 0.0431373, 1 )">
  364. Dark goldenrod color.
  365. </constant>
  366. <constant name="darkgray" value="Color( 0.662745, 0.662745, 0.662745, 1 )">
  367. Dark gray color.
  368. </constant>
  369. <constant name="darkgreen" value="Color( 0, 0.392157, 0, 1 )">
  370. Dark green color.
  371. </constant>
  372. <constant name="darkkhaki" value="Color( 0.741176, 0.717647, 0.419608, 1 )">
  373. Dark khaki color.
  374. </constant>
  375. <constant name="darkmagenta" value="Color( 0.545098, 0, 0.545098, 1 )">
  376. Dark magenta color.
  377. </constant>
  378. <constant name="darkolivegreen" value="Color( 0.333333, 0.419608, 0.184314, 1 )">
  379. Dark olive green color.
  380. </constant>
  381. <constant name="darkorange" value="Color( 1, 0.54902, 0, 1 )">
  382. Dark orange color.
  383. </constant>
  384. <constant name="darkorchid" value="Color( 0.6, 0.196078, 0.8, 1 )">
  385. Dark orchid color.
  386. </constant>
  387. <constant name="darkred" value="Color( 0.545098, 0, 0, 1 )">
  388. Dark red color.
  389. </constant>
  390. <constant name="darksalmon" value="Color( 0.913725, 0.588235, 0.478431, 1 )">
  391. Dark salmon color.
  392. </constant>
  393. <constant name="darkseagreen" value="Color( 0.560784, 0.737255, 0.560784, 1 )">
  394. Dark sea green color.
  395. </constant>
  396. <constant name="darkslateblue" value="Color( 0.282353, 0.239216, 0.545098, 1 )">
  397. Dark slate blue color.
  398. </constant>
  399. <constant name="darkslategray" value="Color( 0.184314, 0.309804, 0.309804, 1 )">
  400. Dark slate gray color.
  401. </constant>
  402. <constant name="darkturquoise" value="Color( 0, 0.807843, 0.819608, 1 )">
  403. Dark turquoise color.
  404. </constant>
  405. <constant name="darkviolet" value="Color( 0.580392, 0, 0.827451, 1 )">
  406. Dark violet color.
  407. </constant>
  408. <constant name="deeppink" value="Color( 1, 0.0784314, 0.576471, 1 )">
  409. Deep pink color.
  410. </constant>
  411. <constant name="deepskyblue" value="Color( 0, 0.74902, 1, 1 )">
  412. Deep sky blue color.
  413. </constant>
  414. <constant name="dimgray" value="Color( 0.411765, 0.411765, 0.411765, 1 )">
  415. Dim gray color.
  416. </constant>
  417. <constant name="dodgerblue" value="Color( 0.117647, 0.564706, 1, 1 )">
  418. Dodger blue color.
  419. </constant>
  420. <constant name="firebrick" value="Color( 0.698039, 0.133333, 0.133333, 1 )">
  421. Firebrick color.
  422. </constant>
  423. <constant name="floralwhite" value="Color( 1, 0.980392, 0.941176, 1 )">
  424. Floral white color.
  425. </constant>
  426. <constant name="forestgreen" value="Color( 0.133333, 0.545098, 0.133333, 1 )">
  427. Forest green color.
  428. </constant>
  429. <constant name="fuchsia" value="Color( 1, 0, 1, 1 )">
  430. Fuchsia color.
  431. </constant>
  432. <constant name="gainsboro" value="Color( 0.862745, 0.862745, 0.862745, 1 )">
  433. Gainsboro color.
  434. </constant>
  435. <constant name="ghostwhite" value="Color( 0.972549, 0.972549, 1, 1 )">
  436. Ghost white color.
  437. </constant>
  438. <constant name="gold" value="Color( 1, 0.843137, 0, 1 )">
  439. Gold color.
  440. </constant>
  441. <constant name="goldenrod" value="Color( 0.854902, 0.647059, 0.12549, 1 )">
  442. Goldenrod color.
  443. </constant>
  444. <constant name="gray" value="Color( 0.745098, 0.745098, 0.745098, 1 )">
  445. Gray color.
  446. </constant>
  447. <constant name="green" value="Color( 0, 1, 0, 1 )">
  448. Green color.
  449. </constant>
  450. <constant name="greenyellow" value="Color( 0.678431, 1, 0.184314, 1 )">
  451. Green yellow color.
  452. </constant>
  453. <constant name="honeydew" value="Color( 0.941176, 1, 0.941176, 1 )">
  454. Honeydew color.
  455. </constant>
  456. <constant name="hotpink" value="Color( 1, 0.411765, 0.705882, 1 )">
  457. Hot pink color.
  458. </constant>
  459. <constant name="indianred" value="Color( 0.803922, 0.360784, 0.360784, 1 )">
  460. Indian red color.
  461. </constant>
  462. <constant name="indigo" value="Color( 0.294118, 0, 0.509804, 1 )">
  463. Indigo color.
  464. </constant>
  465. <constant name="ivory" value="Color( 1, 1, 0.941176, 1 )">
  466. Ivory color.
  467. </constant>
  468. <constant name="khaki" value="Color( 0.941176, 0.901961, 0.54902, 1 )">
  469. Khaki color.
  470. </constant>
  471. <constant name="lavender" value="Color( 0.901961, 0.901961, 0.980392, 1 )">
  472. Lavender color.
  473. </constant>
  474. <constant name="lavenderblush" value="Color( 1, 0.941176, 0.960784, 1 )">
  475. Lavender blush color.
  476. </constant>
  477. <constant name="lawngreen" value="Color( 0.486275, 0.988235, 0, 1 )">
  478. Lawn green color.
  479. </constant>
  480. <constant name="lemonchiffon" value="Color( 1, 0.980392, 0.803922, 1 )">
  481. Lemon chiffon color.
  482. </constant>
  483. <constant name="lightblue" value="Color( 0.678431, 0.847059, 0.901961, 1 )">
  484. Light blue color.
  485. </constant>
  486. <constant name="lightcoral" value="Color( 0.941176, 0.501961, 0.501961, 1 )">
  487. Light coral color.
  488. </constant>
  489. <constant name="lightcyan" value="Color( 0.878431, 1, 1, 1 )">
  490. Light cyan color.
  491. </constant>
  492. <constant name="lightgoldenrod" value="Color( 0.980392, 0.980392, 0.823529, 1 )">
  493. Light goldenrod color.
  494. </constant>
  495. <constant name="lightgray" value="Color( 0.827451, 0.827451, 0.827451, 1 )">
  496. Light gray color.
  497. </constant>
  498. <constant name="lightgreen" value="Color( 0.564706, 0.933333, 0.564706, 1 )">
  499. Light green color.
  500. </constant>
  501. <constant name="lightpink" value="Color( 1, 0.713726, 0.756863, 1 )">
  502. Light pink color.
  503. </constant>
  504. <constant name="lightsalmon" value="Color( 1, 0.627451, 0.478431, 1 )">
  505. Light salmon color.
  506. </constant>
  507. <constant name="lightseagreen" value="Color( 0.12549, 0.698039, 0.666667, 1 )">
  508. Light sea green color.
  509. </constant>
  510. <constant name="lightskyblue" value="Color( 0.529412, 0.807843, 0.980392, 1 )">
  511. Light sky blue color.
  512. </constant>
  513. <constant name="lightslategray" value="Color( 0.466667, 0.533333, 0.6, 1 )">
  514. Light slate gray color.
  515. </constant>
  516. <constant name="lightsteelblue" value="Color( 0.690196, 0.768627, 0.870588, 1 )">
  517. Light steel blue color.
  518. </constant>
  519. <constant name="lightyellow" value="Color( 1, 1, 0.878431, 1 )">
  520. Light yellow color.
  521. </constant>
  522. <constant name="lime" value="Color( 0, 1, 0, 1 )">
  523. Lime color.
  524. </constant>
  525. <constant name="limegreen" value="Color( 0.196078, 0.803922, 0.196078, 1 )">
  526. Lime green color.
  527. </constant>
  528. <constant name="linen" value="Color( 0.980392, 0.941176, 0.901961, 1 )">
  529. Linen color.
  530. </constant>
  531. <constant name="magenta" value="Color( 1, 0, 1, 1 )">
  532. Magenta color.
  533. </constant>
  534. <constant name="maroon" value="Color( 0.690196, 0.188235, 0.376471, 1 )">
  535. Maroon color.
  536. </constant>
  537. <constant name="mediumaquamarine" value="Color( 0.4, 0.803922, 0.666667, 1 )">
  538. Medium aquamarine color.
  539. </constant>
  540. <constant name="mediumblue" value="Color( 0, 0, 0.803922, 1 )">
  541. Medium blue color.
  542. </constant>
  543. <constant name="mediumorchid" value="Color( 0.729412, 0.333333, 0.827451, 1 )">
  544. Medium orchid color.
  545. </constant>
  546. <constant name="mediumpurple" value="Color( 0.576471, 0.439216, 0.858824, 1 )">
  547. Medium purple color.
  548. </constant>
  549. <constant name="mediumseagreen" value="Color( 0.235294, 0.701961, 0.443137, 1 )">
  550. Medium sea green color.
  551. </constant>
  552. <constant name="mediumslateblue" value="Color( 0.482353, 0.407843, 0.933333, 1 )">
  553. Medium slate blue color.
  554. </constant>
  555. <constant name="mediumspringgreen" value="Color( 0, 0.980392, 0.603922, 1 )">
  556. Medium spring green color.
  557. </constant>
  558. <constant name="mediumturquoise" value="Color( 0.282353, 0.819608, 0.8, 1 )">
  559. Medium turquoise color.
  560. </constant>
  561. <constant name="mediumvioletred" value="Color( 0.780392, 0.0823529, 0.521569, 1 )">
  562. Medium violet red color.
  563. </constant>
  564. <constant name="midnightblue" value="Color( 0.0980392, 0.0980392, 0.439216, 1 )">
  565. Midnight blue color.
  566. </constant>
  567. <constant name="mintcream" value="Color( 0.960784, 1, 0.980392, 1 )">
  568. Mint cream color.
  569. </constant>
  570. <constant name="mistyrose" value="Color( 1, 0.894118, 0.882353, 1 )">
  571. Misty rose color.
  572. </constant>
  573. <constant name="moccasin" value="Color( 1, 0.894118, 0.709804, 1 )">
  574. Moccasin color.
  575. </constant>
  576. <constant name="navajowhite" value="Color( 1, 0.870588, 0.678431, 1 )">
  577. Navajo white color.
  578. </constant>
  579. <constant name="navyblue" value="Color( 0, 0, 0.501961, 1 )">
  580. Navy blue color.
  581. </constant>
  582. <constant name="oldlace" value="Color( 0.992157, 0.960784, 0.901961, 1 )">
  583. Old lace color.
  584. </constant>
  585. <constant name="olive" value="Color( 0.501961, 0.501961, 0, 1 )">
  586. Olive color.
  587. </constant>
  588. <constant name="olivedrab" value="Color( 0.419608, 0.556863, 0.137255, 1 )">
  589. Olive drab color.
  590. </constant>
  591. <constant name="orange" value="Color( 1, 0.647059, 0, 1 )">
  592. Orange color.
  593. </constant>
  594. <constant name="orangered" value="Color( 1, 0.270588, 0, 1 )">
  595. Orange red color.
  596. </constant>
  597. <constant name="orchid" value="Color( 0.854902, 0.439216, 0.839216, 1 )">
  598. Orchid color.
  599. </constant>
  600. <constant name="palegoldenrod" value="Color( 0.933333, 0.909804, 0.666667, 1 )">
  601. Pale goldenrod color.
  602. </constant>
  603. <constant name="palegreen" value="Color( 0.596078, 0.984314, 0.596078, 1 )">
  604. Pale green color.
  605. </constant>
  606. <constant name="paleturquoise" value="Color( 0.686275, 0.933333, 0.933333, 1 )">
  607. Pale turquoise color.
  608. </constant>
  609. <constant name="palevioletred" value="Color( 0.858824, 0.439216, 0.576471, 1 )">
  610. Pale violet red color.
  611. </constant>
  612. <constant name="papayawhip" value="Color( 1, 0.937255, 0.835294, 1 )">
  613. Papaya whip color.
  614. </constant>
  615. <constant name="peachpuff" value="Color( 1, 0.854902, 0.72549, 1 )">
  616. Peach puff color.
  617. </constant>
  618. <constant name="peru" value="Color( 0.803922, 0.521569, 0.247059, 1 )">
  619. Peru color.
  620. </constant>
  621. <constant name="pink" value="Color( 1, 0.752941, 0.796078, 1 )">
  622. Pink color.
  623. </constant>
  624. <constant name="plum" value="Color( 0.866667, 0.627451, 0.866667, 1 )">
  625. Plum color.
  626. </constant>
  627. <constant name="powderblue" value="Color( 0.690196, 0.878431, 0.901961, 1 )">
  628. Powder blue color.
  629. </constant>
  630. <constant name="purple" value="Color( 0.627451, 0.12549, 0.941176, 1 )">
  631. Purple color.
  632. </constant>
  633. <constant name="rebeccapurple" value="Color( 0.4, 0.2, 0.6, 1 )">
  634. Rebecca purple color.
  635. </constant>
  636. <constant name="red" value="Color( 1, 0, 0, 1 )">
  637. Red color.
  638. </constant>
  639. <constant name="rosybrown" value="Color( 0.737255, 0.560784, 0.560784, 1 )">
  640. Rosy brown color.
  641. </constant>
  642. <constant name="royalblue" value="Color( 0.254902, 0.411765, 0.882353, 1 )">
  643. Royal blue color.
  644. </constant>
  645. <constant name="saddlebrown" value="Color( 0.545098, 0.270588, 0.0745098, 1 )">
  646. Saddle brown color.
  647. </constant>
  648. <constant name="salmon" value="Color( 0.980392, 0.501961, 0.447059, 1 )">
  649. Salmon color.
  650. </constant>
  651. <constant name="sandybrown" value="Color( 0.956863, 0.643137, 0.376471, 1 )">
  652. Sandy brown color.
  653. </constant>
  654. <constant name="seagreen" value="Color( 0.180392, 0.545098, 0.341176, 1 )">
  655. Sea green color.
  656. </constant>
  657. <constant name="seashell" value="Color( 1, 0.960784, 0.933333, 1 )">
  658. Seashell color.
  659. </constant>
  660. <constant name="sienna" value="Color( 0.627451, 0.321569, 0.176471, 1 )">
  661. Sienna color.
  662. </constant>
  663. <constant name="silver" value="Color( 0.752941, 0.752941, 0.752941, 1 )">
  664. Silver color.
  665. </constant>
  666. <constant name="skyblue" value="Color( 0.529412, 0.807843, 0.921569, 1 )">
  667. Sky blue color.
  668. </constant>
  669. <constant name="slateblue" value="Color( 0.415686, 0.352941, 0.803922, 1 )">
  670. Slate blue color.
  671. </constant>
  672. <constant name="slategray" value="Color( 0.439216, 0.501961, 0.564706, 1 )">
  673. Slate gray color.
  674. </constant>
  675. <constant name="snow" value="Color( 1, 0.980392, 0.980392, 1 )">
  676. Snow color.
  677. </constant>
  678. <constant name="springgreen" value="Color( 0, 1, 0.498039, 1 )">
  679. Spring green color.
  680. </constant>
  681. <constant name="steelblue" value="Color( 0.27451, 0.509804, 0.705882, 1 )">
  682. Steel blue color.
  683. </constant>
  684. <constant name="tan" value="Color( 0.823529, 0.705882, 0.54902, 1 )">
  685. Tan color.
  686. </constant>
  687. <constant name="teal" value="Color( 0, 0.501961, 0.501961, 1 )">
  688. Teal color.
  689. </constant>
  690. <constant name="thistle" value="Color( 0.847059, 0.74902, 0.847059, 1 )">
  691. Thistle color.
  692. </constant>
  693. <constant name="tomato" value="Color( 1, 0.388235, 0.278431, 1 )">
  694. Tomato color.
  695. </constant>
  696. <constant name="transparent" value="Color( 1, 1, 1, 0 )">
  697. Transparent color (white with no alpha).
  698. </constant>
  699. <constant name="turquoise" value="Color( 0.25098, 0.878431, 0.815686, 1 )">
  700. Turquoise color.
  701. </constant>
  702. <constant name="violet" value="Color( 0.933333, 0.509804, 0.933333, 1 )">
  703. Violet color.
  704. </constant>
  705. <constant name="webgray" value="Color( 0.501961, 0.501961, 0.501961, 1 )">
  706. Web gray color.
  707. </constant>
  708. <constant name="webgreen" value="Color( 0, 0.501961, 0, 1 )">
  709. Web green color.
  710. </constant>
  711. <constant name="webmaroon" value="Color( 0.501961, 0, 0, 1 )">
  712. Web maroon color.
  713. </constant>
  714. <constant name="webpurple" value="Color( 0.501961, 0, 0.501961, 1 )">
  715. Web purple color.
  716. </constant>
  717. <constant name="wheat" value="Color( 0.960784, 0.870588, 0.701961, 1 )">
  718. Wheat color.
  719. </constant>
  720. <constant name="white" value="Color( 1, 1, 1, 1 )">
  721. White color.
  722. </constant>
  723. <constant name="whitesmoke" value="Color( 0.960784, 0.960784, 0.960784, 1 )">
  724. White smoke color.
  725. </constant>
  726. <constant name="yellow" value="Color( 1, 1, 0, 1 )">
  727. Yellow color.
  728. </constant>
  729. <constant name="yellowgreen" value="Color( 0.603922, 0.803922, 0.196078, 1 )">
  730. Yellow green color.
  731. </constant>
  732. </constants>
  733. </class>