class_color.rst 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957
  1. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  2. .. DO NOT EDIT THIS FILE, but the Color.xml source instead.
  3. .. The source is found in doc/classes or modules/<name>/doc_classes.
  4. .. _class_Color:
  5. Color
  6. =====
  7. **Category:** Built-In Types
  8. Brief Description
  9. -----------------
  10. Color in RGBA format with some support for ARGB format.
  11. Properties
  12. ----------
  13. +---------------------------+------------------------------------+
  14. | :ref:`float<class_float>` | :ref:`a<class_Color_property_a>` |
  15. +---------------------------+------------------------------------+
  16. | :ref:`int<class_int>` | :ref:`a8<class_Color_property_a8>` |
  17. +---------------------------+------------------------------------+
  18. | :ref:`float<class_float>` | :ref:`b<class_Color_property_b>` |
  19. +---------------------------+------------------------------------+
  20. | :ref:`int<class_int>` | :ref:`b8<class_Color_property_b8>` |
  21. +---------------------------+------------------------------------+
  22. | :ref:`float<class_float>` | :ref:`g<class_Color_property_g>` |
  23. +---------------------------+------------------------------------+
  24. | :ref:`int<class_int>` | :ref:`g8<class_Color_property_g8>` |
  25. +---------------------------+------------------------------------+
  26. | :ref:`float<class_float>` | :ref:`h<class_Color_property_h>` |
  27. +---------------------------+------------------------------------+
  28. | :ref:`float<class_float>` | :ref:`r<class_Color_property_r>` |
  29. +---------------------------+------------------------------------+
  30. | :ref:`int<class_int>` | :ref:`r8<class_Color_property_r8>` |
  31. +---------------------------+------------------------------------+
  32. | :ref:`float<class_float>` | :ref:`s<class_Color_property_s>` |
  33. +---------------------------+------------------------------------+
  34. | :ref:`float<class_float>` | :ref:`v<class_Color_property_v>` |
  35. +---------------------------+------------------------------------+
  36. Methods
  37. -------
  38. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  39. | :ref:`Color<class_Color>` | :ref:`Color<class_Color_method_Color>` **(** :ref:`String<class_String>` from **)** |
  40. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  41. | :ref:`Color<class_Color>` | :ref:`Color<class_Color_method_Color>` **(** :ref:`int<class_int>` from **)** |
  42. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  43. | :ref:`Color<class_Color>` | :ref:`Color<class_Color_method_Color>` **(** :ref:`float<class_float>` r, :ref:`float<class_float>` g, :ref:`float<class_float>` b **)** |
  44. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`Color<class_Color>` | :ref:`Color<class_Color_method_Color>` **(** :ref:`float<class_float>` r, :ref:`float<class_float>` g, :ref:`float<class_float>` b, :ref:`float<class_float>` a **)** |
  46. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  47. | :ref:`Color<class_Color>` | :ref:`blend<class_Color_method_blend>` **(** :ref:`Color<class_Color>` over **)** |
  48. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  49. | :ref:`Color<class_Color>` | :ref:`contrasted<class_Color_method_contrasted>` **(** **)** |
  50. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  51. | :ref:`Color<class_Color>` | :ref:`darkened<class_Color_method_darkened>` **(** :ref:`float<class_float>` amount **)** |
  52. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  53. | :ref:`Color<class_Color>` | :ref:`from_hsv<class_Color_method_from_hsv>` **(** :ref:`float<class_float>` h, :ref:`float<class_float>` s, :ref:`float<class_float>` v, :ref:`float<class_float>` a=1 **)** |
  54. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`float<class_float>` | :ref:`gray<class_Color_method_gray>` **(** **)** |
  56. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`Color<class_Color>` | :ref:`inverted<class_Color_method_inverted>` **(** **)** |
  58. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`Color<class_Color>` | :ref:`lightened<class_Color_method_lightened>` **(** :ref:`float<class_float>` amount **)** |
  60. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`Color<class_Color>` | :ref:`linear_interpolate<class_Color_method_linear_interpolate>` **(** :ref:`Color<class_Color>` b, :ref:`float<class_float>` t **)** |
  62. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`int<class_int>` | :ref:`to_abgr32<class_Color_method_to_abgr32>` **(** **)** |
  64. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`int<class_int>` | :ref:`to_abgr64<class_Color_method_to_abgr64>` **(** **)** |
  66. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`int<class_int>` | :ref:`to_argb32<class_Color_method_to_argb32>` **(** **)** |
  68. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | :ref:`int<class_int>` | :ref:`to_argb64<class_Color_method_to_argb64>` **(** **)** |
  70. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`String<class_String>` | :ref:`to_html<class_Color_method_to_html>` **(** :ref:`bool<class_bool>` with_alpha=True **)** |
  72. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | :ref:`int<class_int>` | :ref:`to_rgba32<class_Color_method_to_rgba32>` **(** **)** |
  74. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | :ref:`int<class_int>` | :ref:`to_rgba64<class_Color_method_to_rgba64>` **(** **)** |
  76. +-----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  77. Constants
  78. ---------
  79. .. _class_Color_constant_gray:
  80. .. _class_Color_constant_aliceblue:
  81. .. _class_Color_constant_antiquewhite:
  82. .. _class_Color_constant_aqua:
  83. .. _class_Color_constant_aquamarine:
  84. .. _class_Color_constant_azure:
  85. .. _class_Color_constant_beige:
  86. .. _class_Color_constant_bisque:
  87. .. _class_Color_constant_black:
  88. .. _class_Color_constant_blanchedalmond:
  89. .. _class_Color_constant_blue:
  90. .. _class_Color_constant_blueviolet:
  91. .. _class_Color_constant_brown:
  92. .. _class_Color_constant_burlywood:
  93. .. _class_Color_constant_cadetblue:
  94. .. _class_Color_constant_chartreuse:
  95. .. _class_Color_constant_chocolate:
  96. .. _class_Color_constant_coral:
  97. .. _class_Color_constant_cornflower:
  98. .. _class_Color_constant_cornsilk:
  99. .. _class_Color_constant_crimson:
  100. .. _class_Color_constant_cyan:
  101. .. _class_Color_constant_darkblue:
  102. .. _class_Color_constant_darkcyan:
  103. .. _class_Color_constant_darkgoldenrod:
  104. .. _class_Color_constant_darkgray:
  105. .. _class_Color_constant_darkgreen:
  106. .. _class_Color_constant_darkkhaki:
  107. .. _class_Color_constant_darkmagenta:
  108. .. _class_Color_constant_darkolivegreen:
  109. .. _class_Color_constant_darkorange:
  110. .. _class_Color_constant_darkorchid:
  111. .. _class_Color_constant_darkred:
  112. .. _class_Color_constant_darksalmon:
  113. .. _class_Color_constant_darkseagreen:
  114. .. _class_Color_constant_darkslateblue:
  115. .. _class_Color_constant_darkslategray:
  116. .. _class_Color_constant_darkturquoise:
  117. .. _class_Color_constant_darkviolet:
  118. .. _class_Color_constant_deeppink:
  119. .. _class_Color_constant_deepskyblue:
  120. .. _class_Color_constant_dimgray:
  121. .. _class_Color_constant_dodgerblue:
  122. .. _class_Color_constant_firebrick:
  123. .. _class_Color_constant_floralwhite:
  124. .. _class_Color_constant_forestgreen:
  125. .. _class_Color_constant_fuchsia:
  126. .. _class_Color_constant_gainsboro:
  127. .. _class_Color_constant_ghostwhite:
  128. .. _class_Color_constant_gold:
  129. .. _class_Color_constant_goldenrod:
  130. .. _class_Color_constant_green:
  131. .. _class_Color_constant_greenyellow:
  132. .. _class_Color_constant_honeydew:
  133. .. _class_Color_constant_hotpink:
  134. .. _class_Color_constant_indianred:
  135. .. _class_Color_constant_indigo:
  136. .. _class_Color_constant_ivory:
  137. .. _class_Color_constant_khaki:
  138. .. _class_Color_constant_lavender:
  139. .. _class_Color_constant_lavenderblush:
  140. .. _class_Color_constant_lawngreen:
  141. .. _class_Color_constant_lemonchiffon:
  142. .. _class_Color_constant_lightblue:
  143. .. _class_Color_constant_lightcoral:
  144. .. _class_Color_constant_lightcyan:
  145. .. _class_Color_constant_lightgoldenrod:
  146. .. _class_Color_constant_lightgray:
  147. .. _class_Color_constant_lightgreen:
  148. .. _class_Color_constant_lightpink:
  149. .. _class_Color_constant_lightsalmon:
  150. .. _class_Color_constant_lightseagreen:
  151. .. _class_Color_constant_lightskyblue:
  152. .. _class_Color_constant_lightslategray:
  153. .. _class_Color_constant_lightsteelblue:
  154. .. _class_Color_constant_lightyellow:
  155. .. _class_Color_constant_lime:
  156. .. _class_Color_constant_limegreen:
  157. .. _class_Color_constant_linen:
  158. .. _class_Color_constant_magenta:
  159. .. _class_Color_constant_maroon:
  160. .. _class_Color_constant_mediumaquamarine:
  161. .. _class_Color_constant_mediumblue:
  162. .. _class_Color_constant_mediumorchid:
  163. .. _class_Color_constant_mediumpurple:
  164. .. _class_Color_constant_mediumseagreen:
  165. .. _class_Color_constant_mediumslateblue:
  166. .. _class_Color_constant_mediumspringgreen:
  167. .. _class_Color_constant_mediumturquoise:
  168. .. _class_Color_constant_mediumvioletred:
  169. .. _class_Color_constant_midnightblue:
  170. .. _class_Color_constant_mintcream:
  171. .. _class_Color_constant_mistyrose:
  172. .. _class_Color_constant_moccasin:
  173. .. _class_Color_constant_navajowhite:
  174. .. _class_Color_constant_navyblue:
  175. .. _class_Color_constant_oldlace:
  176. .. _class_Color_constant_olive:
  177. .. _class_Color_constant_olivedrab:
  178. .. _class_Color_constant_orange:
  179. .. _class_Color_constant_orangered:
  180. .. _class_Color_constant_orchid:
  181. .. _class_Color_constant_palegoldenrod:
  182. .. _class_Color_constant_palegreen:
  183. .. _class_Color_constant_paleturquoise:
  184. .. _class_Color_constant_palevioletred:
  185. .. _class_Color_constant_papayawhip:
  186. .. _class_Color_constant_peachpuff:
  187. .. _class_Color_constant_peru:
  188. .. _class_Color_constant_pink:
  189. .. _class_Color_constant_plum:
  190. .. _class_Color_constant_powderblue:
  191. .. _class_Color_constant_purple:
  192. .. _class_Color_constant_rebeccapurple:
  193. .. _class_Color_constant_red:
  194. .. _class_Color_constant_rosybrown:
  195. .. _class_Color_constant_royalblue:
  196. .. _class_Color_constant_saddlebrown:
  197. .. _class_Color_constant_salmon:
  198. .. _class_Color_constant_sandybrown:
  199. .. _class_Color_constant_seagreen:
  200. .. _class_Color_constant_seashell:
  201. .. _class_Color_constant_sienna:
  202. .. _class_Color_constant_silver:
  203. .. _class_Color_constant_skyblue:
  204. .. _class_Color_constant_slateblue:
  205. .. _class_Color_constant_slategray:
  206. .. _class_Color_constant_snow:
  207. .. _class_Color_constant_springgreen:
  208. .. _class_Color_constant_steelblue:
  209. .. _class_Color_constant_tan:
  210. .. _class_Color_constant_teal:
  211. .. _class_Color_constant_thistle:
  212. .. _class_Color_constant_tomato:
  213. .. _class_Color_constant_turquoise:
  214. .. _class_Color_constant_violet:
  215. .. _class_Color_constant_webgray:
  216. .. _class_Color_constant_webgreen:
  217. .. _class_Color_constant_webmaroon:
  218. .. _class_Color_constant_webpurple:
  219. .. _class_Color_constant_wheat:
  220. .. _class_Color_constant_white:
  221. .. _class_Color_constant_whitesmoke:
  222. .. _class_Color_constant_yellow:
  223. .. _class_Color_constant_yellowgreen:
  224. - **gray** = **Color( 0.75, 0.75, 0.75, 1 )**
  225. - **aliceblue** = **Color( 0.94, 0.97, 1, 1 )**
  226. - **antiquewhite** = **Color( 0.98, 0.92, 0.84, 1 )**
  227. - **aqua** = **Color( 0, 1, 1, 1 )**
  228. - **aquamarine** = **Color( 0.5, 1, 0.83, 1 )**
  229. - **azure** = **Color( 0.94, 1, 1, 1 )**
  230. - **beige** = **Color( 0.96, 0.96, 0.86, 1 )**
  231. - **bisque** = **Color( 1, 0.89, 0.77, 1 )**
  232. - **black** = **Color( 0, 0, 0, 1 )**
  233. - **blanchedalmond** = **Color( 1, 0.92, 0.8, 1 )**
  234. - **blue** = **Color( 0, 0, 1, 1 )**
  235. - **blueviolet** = **Color( 0.54, 0.17, 0.89, 1 )**
  236. - **brown** = **Color( 0.65, 0.16, 0.16, 1 )**
  237. - **burlywood** = **Color( 0.87, 0.72, 0.53, 1 )**
  238. - **cadetblue** = **Color( 0.37, 0.62, 0.63, 1 )**
  239. - **chartreuse** = **Color( 0.5, 1, 0, 1 )**
  240. - **chocolate** = **Color( 0.82, 0.41, 0.12, 1 )**
  241. - **coral** = **Color( 1, 0.5, 0.31, 1 )**
  242. - **cornflower** = **Color( 0.39, 0.58, 0.93, 1 )**
  243. - **cornsilk** = **Color( 1, 0.97, 0.86, 1 )**
  244. - **crimson** = **Color( 0.86, 0.08, 0.24, 1 )**
  245. - **cyan** = **Color( 0, 1, 1, 1 )**
  246. - **darkblue** = **Color( 0, 0, 0.55, 1 )**
  247. - **darkcyan** = **Color( 0, 0.55, 0.55, 1 )**
  248. - **darkgoldenrod** = **Color( 0.72, 0.53, 0.04, 1 )**
  249. - **darkgray** = **Color( 0.66, 0.66, 0.66, 1 )**
  250. - **darkgreen** = **Color( 0, 0.39, 0, 1 )**
  251. - **darkkhaki** = **Color( 0.74, 0.72, 0.42, 1 )**
  252. - **darkmagenta** = **Color( 0.55, 0, 0.55, 1 )**
  253. - **darkolivegreen** = **Color( 0.33, 0.42, 0.18, 1 )**
  254. - **darkorange** = **Color( 1, 0.55, 0, 1 )**
  255. - **darkorchid** = **Color( 0.6, 0.2, 0.8, 1 )**
  256. - **darkred** = **Color( 0.55, 0, 0, 1 )**
  257. - **darksalmon** = **Color( 0.91, 0.59, 0.48, 1 )**
  258. - **darkseagreen** = **Color( 0.56, 0.74, 0.56, 1 )**
  259. - **darkslateblue** = **Color( 0.28, 0.24, 0.55, 1 )**
  260. - **darkslategray** = **Color( 0.18, 0.31, 0.31, 1 )**
  261. - **darkturquoise** = **Color( 0, 0.81, 0.82, 1 )**
  262. - **darkviolet** = **Color( 0.58, 0, 0.83, 1 )**
  263. - **deeppink** = **Color( 1, 0.08, 0.58, 1 )**
  264. - **deepskyblue** = **Color( 0, 0.75, 1, 1 )**
  265. - **dimgray** = **Color( 0.41, 0.41, 0.41, 1 )**
  266. - **dodgerblue** = **Color( 0.12, 0.56, 1, 1 )**
  267. - **firebrick** = **Color( 0.7, 0.13, 0.13, 1 )**
  268. - **floralwhite** = **Color( 1, 0.98, 0.94, 1 )**
  269. - **forestgreen** = **Color( 0.13, 0.55, 0.13, 1 )**
  270. - **fuchsia** = **Color( 1, 0, 1, 1 )**
  271. - **gainsboro** = **Color( 0.86, 0.86, 0.86, 1 )**
  272. - **ghostwhite** = **Color( 0.97, 0.97, 1, 1 )**
  273. - **gold** = **Color( 1, 0.84, 0, 1 )**
  274. - **goldenrod** = **Color( 0.85, 0.65, 0.13, 1 )**
  275. - **green** = **Color( 0, 1, 0, 1 )**
  276. - **greenyellow** = **Color( 0.68, 1, 0.18, 1 )**
  277. - **honeydew** = **Color( 0.94, 1, 0.94, 1 )**
  278. - **hotpink** = **Color( 1, 0.41, 0.71, 1 )**
  279. - **indianred** = **Color( 0.8, 0.36, 0.36, 1 )**
  280. - **indigo** = **Color( 0.29, 0, 0.51, 1 )**
  281. - **ivory** = **Color( 1, 1, 0.94, 1 )**
  282. - **khaki** = **Color( 0.94, 0.9, 0.55, 1 )**
  283. - **lavender** = **Color( 0.9, 0.9, 0.98, 1 )**
  284. - **lavenderblush** = **Color( 1, 0.94, 0.96, 1 )**
  285. - **lawngreen** = **Color( 0.49, 0.99, 0, 1 )**
  286. - **lemonchiffon** = **Color( 1, 0.98, 0.8, 1 )**
  287. - **lightblue** = **Color( 0.68, 0.85, 0.9, 1 )**
  288. - **lightcoral** = **Color( 0.94, 0.5, 0.5, 1 )**
  289. - **lightcyan** = **Color( 0.88, 1, 1, 1 )**
  290. - **lightgoldenrod** = **Color( 0.98, 0.98, 0.82, 1 )**
  291. - **lightgray** = **Color( 0.83, 0.83, 0.83, 1 )**
  292. - **lightgreen** = **Color( 0.56, 0.93, 0.56, 1 )**
  293. - **lightpink** = **Color( 1, 0.71, 0.76, 1 )**
  294. - **lightsalmon** = **Color( 1, 0.63, 0.48, 1 )**
  295. - **lightseagreen** = **Color( 0.13, 0.7, 0.67, 1 )**
  296. - **lightskyblue** = **Color( 0.53, 0.81, 0.98, 1 )**
  297. - **lightslategray** = **Color( 0.47, 0.53, 0.6, 1 )**
  298. - **lightsteelblue** = **Color( 0.69, 0.77, 0.87, 1 )**
  299. - **lightyellow** = **Color( 1, 1, 0.88, 1 )**
  300. - **lime** = **Color( 0, 1, 0, 1 )**
  301. - **limegreen** = **Color( 0.2, 0.8, 0.2, 1 )**
  302. - **linen** = **Color( 0.98, 0.94, 0.9, 1 )**
  303. - **magenta** = **Color( 1, 0, 1, 1 )**
  304. - **maroon** = **Color( 0.69, 0.19, 0.38, 1 )**
  305. - **mediumaquamarine** = **Color( 0.4, 0.8, 0.67, 1 )**
  306. - **mediumblue** = **Color( 0, 0, 0.8, 1 )**
  307. - **mediumorchid** = **Color( 0.73, 0.33, 0.83, 1 )**
  308. - **mediumpurple** = **Color( 0.58, 0.44, 0.86, 1 )**
  309. - **mediumseagreen** = **Color( 0.24, 0.7, 0.44, 1 )**
  310. - **mediumslateblue** = **Color( 0.48, 0.41, 0.93, 1 )**
  311. - **mediumspringgreen** = **Color( 0, 0.98, 0.6, 1 )**
  312. - **mediumturquoise** = **Color( 0.28, 0.82, 0.8, 1 )**
  313. - **mediumvioletred** = **Color( 0.78, 0.08, 0.52, 1 )**
  314. - **midnightblue** = **Color( 0.1, 0.1, 0.44, 1 )**
  315. - **mintcream** = **Color( 0.96, 1, 0.98, 1 )**
  316. - **mistyrose** = **Color( 1, 0.89, 0.88, 1 )**
  317. - **moccasin** = **Color( 1, 0.89, 0.71, 1 )**
  318. - **navajowhite** = **Color( 1, 0.87, 0.68, 1 )**
  319. - **navyblue** = **Color( 0, 0, 0.5, 1 )**
  320. - **oldlace** = **Color( 0.99, 0.96, 0.9, 1 )**
  321. - **olive** = **Color( 0.5, 0.5, 0, 1 )**
  322. - **olivedrab** = **Color( 0.42, 0.56, 0.14, 1 )**
  323. - **orange** = **Color( 1, 0.65, 0, 1 )**
  324. - **orangered** = **Color( 1, 0.27, 0, 1 )**
  325. - **orchid** = **Color( 0.85, 0.44, 0.84, 1 )**
  326. - **palegoldenrod** = **Color( 0.93, 0.91, 0.67, 1 )**
  327. - **palegreen** = **Color( 0.6, 0.98, 0.6, 1 )**
  328. - **paleturquoise** = **Color( 0.69, 0.93, 0.93, 1 )**
  329. - **palevioletred** = **Color( 0.86, 0.44, 0.58, 1 )**
  330. - **papayawhip** = **Color( 1, 0.94, 0.84, 1 )**
  331. - **peachpuff** = **Color( 1, 0.85, 0.73, 1 )**
  332. - **peru** = **Color( 0.8, 0.52, 0.25, 1 )**
  333. - **pink** = **Color( 1, 0.75, 0.8, 1 )**
  334. - **plum** = **Color( 0.87, 0.63, 0.87, 1 )**
  335. - **powderblue** = **Color( 0.69, 0.88, 0.9, 1 )**
  336. - **purple** = **Color( 0.63, 0.13, 0.94, 1 )**
  337. - **rebeccapurple** = **Color( 0.4, 0.2, 0.6, 1 )**
  338. - **red** = **Color( 1, 0, 0, 1 )**
  339. - **rosybrown** = **Color( 0.74, 0.56, 0.56, 1 )**
  340. - **royalblue** = **Color( 0.25, 0.41, 0.88, 1 )**
  341. - **saddlebrown** = **Color( 0.55, 0.27, 0.07, 1 )**
  342. - **salmon** = **Color( 0.98, 0.5, 0.45, 1 )**
  343. - **sandybrown** = **Color( 0.96, 0.64, 0.38, 1 )**
  344. - **seagreen** = **Color( 0.18, 0.55, 0.34, 1 )**
  345. - **seashell** = **Color( 1, 0.96, 0.93, 1 )**
  346. - **sienna** = **Color( 0.63, 0.32, 0.18, 1 )**
  347. - **silver** = **Color( 0.75, 0.75, 0.75, 1 )**
  348. - **skyblue** = **Color( 0.53, 0.81, 0.92, 1 )**
  349. - **slateblue** = **Color( 0.42, 0.35, 0.8, 1 )**
  350. - **slategray** = **Color( 0.44, 0.5, 0.56, 1 )**
  351. - **snow** = **Color( 1, 0.98, 0.98, 1 )**
  352. - **springgreen** = **Color( 0, 1, 0.5, 1 )**
  353. - **steelblue** = **Color( 0.27, 0.51, 0.71, 1 )**
  354. - **tan** = **Color( 0.82, 0.71, 0.55, 1 )**
  355. - **teal** = **Color( 0, 0.5, 0.5, 1 )**
  356. - **thistle** = **Color( 0.85, 0.75, 0.85, 1 )**
  357. - **tomato** = **Color( 1, 0.39, 0.28, 1 )**
  358. - **turquoise** = **Color( 0.25, 0.88, 0.82, 1 )**
  359. - **violet** = **Color( 0.93, 0.51, 0.93, 1 )**
  360. - **webgray** = **Color( 0.5, 0.5, 0.5, 1 )**
  361. - **webgreen** = **Color( 0, 0.5, 0, 1 )**
  362. - **webmaroon** = **Color( 0.5, 0, 0, 1 )**
  363. - **webpurple** = **Color( 0.5, 0, 0.5, 1 )**
  364. - **wheat** = **Color( 0.96, 0.87, 0.7, 1 )**
  365. - **white** = **Color( 1, 1, 1, 1 )**
  366. - **whitesmoke** = **Color( 0.96, 0.96, 0.96, 1 )**
  367. - **yellow** = **Color( 1, 1, 0, 1 )**
  368. - **yellowgreen** = **Color( 0.6, 0.8, 0.2, 1 )**
  369. Description
  370. -----------
  371. A color is represented by red, green, and blue ``(r, g, b)`` components. Additionally, ``a`` represents the alpha component, often used for transparency. Values are in floating point and usually range from 0 to 1. Some properties (such as :ref:`CanvasItem.modulate<class_CanvasItem_property_modulate>`) may accept values > 1.
  372. You can also create a color from standardized color names by using :ref:`@GDScript.ColorN<class_@GDScript_method_ColorN>`.
  373. Property Descriptions
  374. ---------------------
  375. .. _class_Color_property_a:
  376. - :ref:`float<class_float>` **a**
  377. Alpha value (range 0 to 1).
  378. .. _class_Color_property_a8:
  379. - :ref:`int<class_int>` **a8**
  380. Alpha value (range 0 to 255).
  381. .. _class_Color_property_b:
  382. - :ref:`float<class_float>` **b**
  383. Blue value (range 0 to 1).
  384. .. _class_Color_property_b8:
  385. - :ref:`int<class_int>` **b8**
  386. Blue value (range 0 to 255).
  387. .. _class_Color_property_g:
  388. - :ref:`float<class_float>` **g**
  389. Green value (range 0 to 1).
  390. .. _class_Color_property_g8:
  391. - :ref:`int<class_int>` **g8**
  392. Green value (range 0 to 255).
  393. .. _class_Color_property_h:
  394. - :ref:`float<class_float>` **h**
  395. HSV hue value (range 0 to 1).
  396. .. _class_Color_property_r:
  397. - :ref:`float<class_float>` **r**
  398. Red value (range 0 to 1).
  399. .. _class_Color_property_r8:
  400. - :ref:`int<class_int>` **r8**
  401. Red value (range 0 to 255).
  402. .. _class_Color_property_s:
  403. - :ref:`float<class_float>` **s**
  404. HSV saturation value (range 0 to 1).
  405. .. _class_Color_property_v:
  406. - :ref:`float<class_float>` **v**
  407. HSV value (range 0 to 1).
  408. Method Descriptions
  409. -------------------
  410. .. _class_Color_method_Color:
  411. - :ref:`Color<class_Color>` **Color** **(** :ref:`String<class_String>` from **)**
  412. Constructs a color from an HTML hexadecimal color string in ARGB or RGB format. See also :ref:`@GDScript.ColorN<class_@GDScript_method_ColorN>`.
  413. ::
  414. # Each of the following creates the same color RGBA(178, 217, 10, 255)
  415. var c1 = Color("#ffb2d90a") # ARGB format with '#'
  416. var c2 = Color("ffb2d90a") # ARGB format
  417. var c3 = Color("#b2d90a") # RGB format with '#'
  418. var c4 = Color("b2d90a") # RGB format
  419. - :ref:`Color<class_Color>` **Color** **(** :ref:`int<class_int>` from **)**
  420. Constructs a color from a 32-bit integer (each byte represents a component of the RGBA profile).
  421. ::
  422. var c = Color(274) # Equivalent to RGBA(0, 0, 1, 18)
  423. - :ref:`Color<class_Color>` **Color** **(** :ref:`float<class_float>` r, :ref:`float<class_float>` g, :ref:`float<class_float>` b **)**
  424. Constructs a color from an RGB profile using values between 0 and 1. Alpha will always be 1.
  425. ::
  426. var c = Color(0.2, 1.0, 0.7) # Equivalent to RGBA(51, 255, 178, 255)
  427. - :ref:`Color<class_Color>` **Color** **(** :ref:`float<class_float>` r, :ref:`float<class_float>` g, :ref:`float<class_float>` b, :ref:`float<class_float>` a **)**
  428. Constructs a color from an RGBA profile using values between 0 and 1.
  429. ::
  430. var c = Color(0.2, 1.0, 0.7, 0.8) # Equivalent to RGBA(51, 255, 178, 204)
  431. .. _class_Color_method_blend:
  432. - :ref:`Color<class_Color>` **blend** **(** :ref:`Color<class_Color>` over **)**
  433. 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.
  434. ::
  435. var bg = Color(0.0, 1.0, 0.0, 0.5) # Green with alpha of 50%
  436. var fg = Color(1.0, 0.0, 0.0, 0.5) # Red with alpha of 50%
  437. var blended_color = bg.blend(fg) # Brown with alpha of 75%
  438. .. _class_Color_method_contrasted:
  439. - :ref:`Color<class_Color>` **contrasted** **(** **)**
  440. Returns the most contrasting color.
  441. ::
  442. var c = Color(0.3, 0.4, 0.9)
  443. var contrasted_color = c.contrasted() # Equivalent to RGBA(204, 229, 102, 255)
  444. .. _class_Color_method_darkened:
  445. - :ref:`Color<class_Color>` **darkened** **(** :ref:`float<class_float>` amount **)**
  446. Returns a new color resulting from making this color darker by the specified percentage (ratio from 0 to 1).
  447. ::
  448. var green = Color(0.0, 1.0, 0.0)
  449. var darkgreen = green.darkened(0.2) # 20% darker than regular green
  450. .. _class_Color_method_from_hsv:
  451. - :ref:`Color<class_Color>` **from_hsv** **(** :ref:`float<class_float>` h, :ref:`float<class_float>` s, :ref:`float<class_float>` v, :ref:`float<class_float>` a=1 **)**
  452. Constructs a color from an HSV profile. ``h``, ``s``, and ``v`` are values between 0 and 1.
  453. ::
  454. var c = 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)
  455. .. _class_Color_method_gray:
  456. - :ref:`float<class_float>` **gray** **(** **)**
  457. Returns the color's grayscale representation.
  458. The gray value is calculated as ``(r + g + b) / 3``.
  459. ::
  460. var c = Color(0.2, 0.45, 0.82)
  461. var gray = c.gray() # a value of 0.466667
  462. .. _class_Color_method_inverted:
  463. - :ref:`Color<class_Color>` **inverted** **(** **)**
  464. Returns the inverted color ``(1 - r, 1 - g, 1 - b, 1 - a)``.
  465. ::
  466. var c = Color(0.3, 0.4, 0.9)
  467. var inverted_color = c.inverted() # a color of an RGBA(178, 153, 26, 255)
  468. .. _class_Color_method_lightened:
  469. - :ref:`Color<class_Color>` **lightened** **(** :ref:`float<class_float>` amount **)**
  470. Returns a new color resulting from making this color lighter by the specified percentage (ratio from 0 to 1).
  471. ::
  472. var green = Color(0.0, 1.0, 0.0)
  473. var lightgreen = green.lightened(0.2) # 20% lighter than regular green
  474. .. _class_Color_method_linear_interpolate:
  475. - :ref:`Color<class_Color>` **linear_interpolate** **(** :ref:`Color<class_Color>` b, :ref:`float<class_float>` t **)**
  476. Returns the linear interpolation with another color. The interpolation factor ``t`` is between 0 and 1.
  477. ::
  478. var c1 = Color(1.0, 0.0, 0.0)
  479. var c2 = Color(0.0, 1.0, 0.0)
  480. var li_c = c1.linear_interpolate(c2, 0.5) # a color of an RGBA(128, 128, 0, 255)
  481. .. _class_Color_method_to_abgr32:
  482. - :ref:`int<class_int>` **to_abgr32** **(** **)**
  483. Returns the color's 32-bit integer in ABGR format (each byte represents a component of the ABGR profile). ABGR is the reversed version of the default format.
  484. ::
  485. var c = Color(1, 0.5, 0.2)
  486. print(c.to_abgr32()) # Prints 4281565439
  487. .. _class_Color_method_to_abgr64:
  488. - :ref:`int<class_int>` **to_abgr64** **(** **)**
  489. Returns the color's 64-bit integer in ABGR format (each word represents a component of the ABGR profile). ABGR is the reversed version of the default format.
  490. ::
  491. var c = Color(1, 0.5, 0.2)
  492. print(c.to_abgr64()) # Prints -225178692812801
  493. .. _class_Color_method_to_argb32:
  494. - :ref:`int<class_int>` **to_argb32** **(** **)**
  495. Returns the color's 32-bit integer in ARGB format (each byte represents a component of the ARGB profile). ARGB is more compatible with DirectX.
  496. ::
  497. var c = Color(1, 0.5, 0.2)
  498. print(c.to_argb32()) # Prints 4294934323
  499. .. _class_Color_method_to_argb64:
  500. - :ref:`int<class_int>` **to_argb64** **(** **)**
  501. Returns the color's 64-bit integer in ARGB format (each word represents a component of the ARGB profile). ARGB is more compatible with DirectX.
  502. ::
  503. var c = Color(1, 0.5, 0.2)
  504. print(c.to_argb64()) # Prints -2147470541
  505. .. _class_Color_method_to_html:
  506. - :ref:`String<class_String>` **to_html** **(** :ref:`bool<class_bool>` with_alpha=True **)**
  507. Returns the color's HTML hexadecimal color string in ARGB format (ex: ``ff34f822``).
  508. Setting ``with_alpha`` to ``false`` excludes alpha from the hexadecimal string.
  509. ::
  510. var c = Color(1, 1, 1, 0.5)
  511. var s1 = c.to_html() # Results "7fffffff"
  512. var s2 = c.to_html(false) # Results 'ffffff'
  513. .. _class_Color_method_to_rgba32:
  514. - :ref:`int<class_int>` **to_rgba32** **(** **)**
  515. Returns the color's 32-bit integer in RGBA format (each byte represents a component of the RGBA profile). RGBA is Godot's default format.
  516. ::
  517. var c = Color(1, 0.5, 0.2)
  518. print(c.to_rgba32()) # Prints 4286526463
  519. .. _class_Color_method_to_rgba64:
  520. - :ref:`int<class_int>` **to_rgba64** **(** **)**
  521. Returns the color's 64-bit integer in RGBA format (each word represents a component of the RGBA profile). RGBA is Godot's default format.
  522. ::
  523. var c = Color(1, 0.5, 0.2)
  524. print(c.to_rgba64()) # Prints -140736629309441