cairo 1.14.0-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of cairo might be problematic. Click here for more details.

Files changed (636) hide show
  1. checksums.yaml +7 -0
  2. data/AUTHORS +7 -0
  3. data/COPYING +59 -0
  4. data/GPL +340 -0
  5. data/Gemfile +5 -0
  6. data/NEWS +429 -0
  7. data/README.rdoc +120 -0
  8. data/Rakefile +620 -0
  9. data/ext/cairo/cairo.def +140 -0
  10. data/ext/cairo/depend +3 -0
  11. data/ext/cairo/extconf.rb +202 -0
  12. data/ext/cairo/rb_cairo.c +111 -0
  13. data/ext/cairo/rb_cairo.h +348 -0
  14. data/ext/cairo/rb_cairo_constants.c +673 -0
  15. data/ext/cairo/rb_cairo_context.c +1741 -0
  16. data/ext/cairo/rb_cairo_device.c +475 -0
  17. data/ext/cairo/rb_cairo_exception.c +446 -0
  18. data/ext/cairo/rb_cairo_font_extents.c +200 -0
  19. data/ext/cairo/rb_cairo_font_face.c +726 -0
  20. data/ext/cairo/rb_cairo_font_options.c +197 -0
  21. data/ext/cairo/rb_cairo_glyph.c +161 -0
  22. data/ext/cairo/rb_cairo_io.c +166 -0
  23. data/ext/cairo/rb_cairo_io.h +44 -0
  24. data/ext/cairo/rb_cairo_matrix.c +366 -0
  25. data/ext/cairo/rb_cairo_path.c +459 -0
  26. data/ext/cairo/rb_cairo_pattern.c +1192 -0
  27. data/ext/cairo/rb_cairo_private.c +255 -0
  28. data/ext/cairo/rb_cairo_private.h +129 -0
  29. data/ext/cairo/rb_cairo_rectangle.c +83 -0
  30. data/ext/cairo/rb_cairo_region.c +385 -0
  31. data/ext/cairo/rb_cairo_scaled_font.c +235 -0
  32. data/ext/cairo/rb_cairo_surface.c +2284 -0
  33. data/ext/cairo/rb_cairo_text_cluster.c +151 -0
  34. data/ext/cairo/rb_cairo_text_extents.c +221 -0
  35. data/lib/2.0/cairo.so +0 -0
  36. data/lib/2.1/cairo.so +0 -0
  37. data/lib/2.2/cairo.so +0 -0
  38. data/lib/cairo.rb +154 -0
  39. data/lib/cairo/color.rb +267 -0
  40. data/lib/cairo/colors.rb +656 -0
  41. data/lib/cairo/constants.rb +24 -0
  42. data/lib/cairo/context.rb +29 -0
  43. data/lib/cairo/context/blur.rb +45 -0
  44. data/lib/cairo/context/circle.rb +9 -0
  45. data/lib/cairo/context/color.rb +11 -0
  46. data/lib/cairo/context/path.rb +117 -0
  47. data/lib/cairo/context/rectangle.rb +33 -0
  48. data/lib/cairo/context/triangle.rb +12 -0
  49. data/lib/cairo/device.rb +13 -0
  50. data/lib/cairo/paper.rb +183 -0
  51. data/lib/cairo/papers.rb +65 -0
  52. data/lib/cairo/path.rb +15 -0
  53. data/lib/cairo/pattern.rb +12 -0
  54. data/lib/cairo/point.rb +7 -0
  55. data/lib/cairo/surface.rb +13 -0
  56. data/samples/agg/aa_test.rb +304 -0
  57. data/samples/blur.rb +46 -0
  58. data/samples/pac-nomralize.rb +170 -0
  59. data/samples/pac-tee.rb +170 -0
  60. data/samples/pac.rb +98 -0
  61. data/samples/png.rb +44 -0
  62. data/samples/scalable.rb +55 -0
  63. data/samples/text-on-path.rb +59 -0
  64. data/samples/text2.rb +130 -0
  65. data/test/cairo-test-utils.rb +44 -0
  66. data/test/run-test.rb +29 -0
  67. data/test/test_color.rb +17 -0
  68. data/test/test_constants.rb +27 -0
  69. data/test/test_context.rb +105 -0
  70. data/test/test_exception.rb +36 -0
  71. data/test/test_font_extents.rb +36 -0
  72. data/test/test_font_face.rb +257 -0
  73. data/test/test_font_options.rb +13 -0
  74. data/test/test_image_surface.rb +28 -0
  75. data/test/test_paper.rb +81 -0
  76. data/test/test_quartz_image_surface.rb +13 -0
  77. data/test/test_raster_source_pattern.rb +162 -0
  78. data/test/test_recording_surface.rb +19 -0
  79. data/test/test_region.rb +102 -0
  80. data/test/test_scaled_font.rb +34 -0
  81. data/test/test_script_device.rb +46 -0
  82. data/test/test_script_surface.rb +13 -0
  83. data/test/test_surface.rb +61 -0
  84. data/test/test_tee_surface.rb +32 -0
  85. data/test/test_text_cluster.rb +32 -0
  86. data/test/test_text_extents.rb +40 -0
  87. data/test/test_text_to_glyphs_data.rb +51 -0
  88. data/test/test_xml_device.rb +22 -0
  89. data/test/test_xml_surface.rb +34 -0
  90. data/vendor/local/bin/fc-cache.exe +0 -0
  91. data/vendor/local/bin/fc-cat.exe +0 -0
  92. data/vendor/local/bin/fc-list.exe +0 -0
  93. data/vendor/local/bin/fc-match.exe +0 -0
  94. data/vendor/local/bin/fc-pattern.exe +0 -0
  95. data/vendor/local/bin/fc-query.exe +0 -0
  96. data/vendor/local/bin/fc-scan.exe +0 -0
  97. data/vendor/local/bin/fc-validate.exe +0 -0
  98. data/vendor/local/bin/freetype-config +163 -0
  99. data/vendor/local/bin/libcairo-2.dll +0 -0
  100. data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
  101. data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
  102. data/vendor/local/bin/libfontconfig-1.dll +0 -0
  103. data/vendor/local/bin/libfreetype-6.dll +0 -0
  104. data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
  105. data/vendor/local/bin/libpixman-1-0.dll +0 -0
  106. data/vendor/local/bin/libpng-config +127 -0
  107. data/vendor/local/bin/libpng16-16.dll +0 -0
  108. data/vendor/local/bin/libpng16-config +127 -0
  109. data/vendor/local/bin/libstdc++-6.dll +0 -0
  110. data/vendor/local/bin/libwinpthread-1.dll +0 -0
  111. data/vendor/local/bin/libxml2-2.dll +0 -0
  112. data/vendor/local/bin/png-fix-itxt.exe +0 -0
  113. data/vendor/local/bin/pngfix.exe +0 -0
  114. data/vendor/local/bin/xml2-config +106 -0
  115. data/vendor/local/bin/xmlcatalog.exe +0 -0
  116. data/vendor/local/bin/xmllint.exe +0 -0
  117. data/vendor/local/bin/zlib1.dll +0 -0
  118. data/vendor/local/etc/fonts/conf.d/10-scale-bitmap-fonts.conf +81 -0
  119. data/vendor/local/etc/fonts/conf.d/20-unhint-small-vera.conf +48 -0
  120. data/vendor/local/etc/fonts/conf.d/30-metric-aliases.conf +546 -0
  121. data/vendor/local/etc/fonts/conf.d/30-urw-aliases.conf +24 -0
  122. data/vendor/local/etc/fonts/conf.d/40-nonlatin.conf +231 -0
  123. data/vendor/local/etc/fonts/conf.d/45-latin.conf +189 -0
  124. data/vendor/local/etc/fonts/conf.d/49-sansserif.conf +21 -0
  125. data/vendor/local/etc/fonts/conf.d/50-user.conf +15 -0
  126. data/vendor/local/etc/fonts/conf.d/51-local.conf +6 -0
  127. data/vendor/local/etc/fonts/conf.d/60-latin.conf +70 -0
  128. data/vendor/local/etc/fonts/conf.d/65-fonts-persian.conf +419 -0
  129. data/vendor/local/etc/fonts/conf.d/65-nonlatin.conf +196 -0
  130. data/vendor/local/etc/fonts/conf.d/69-unifont.conf +28 -0
  131. data/vendor/local/etc/fonts/conf.d/80-delicious.conf +19 -0
  132. data/vendor/local/etc/fonts/conf.d/90-synthetic.conf +64 -0
  133. data/vendor/local/etc/fonts/conf.d/README +23 -0
  134. data/vendor/local/etc/fonts/fonts.conf +155 -0
  135. data/vendor/local/include/cairo/cairo-deprecated.h +123 -0
  136. data/vendor/local/include/cairo/cairo-features.h +31 -0
  137. data/vendor/local/include/cairo/cairo-ft.h +118 -0
  138. data/vendor/local/include/cairo/cairo-gobject.h +192 -0
  139. data/vendor/local/include/cairo/cairo-pdf.h +94 -0
  140. data/vendor/local/include/cairo/cairo-ps.h +116 -0
  141. data/vendor/local/include/cairo/cairo-script-interpreter.h +124 -0
  142. data/vendor/local/include/cairo/cairo-script.h +98 -0
  143. data/vendor/local/include/cairo/cairo-svg.h +84 -0
  144. data/vendor/local/include/cairo/cairo-version.h +8 -0
  145. data/vendor/local/include/cairo/cairo-win32.h +112 -0
  146. data/vendor/local/include/cairo/cairo.h +3153 -0
  147. data/vendor/local/include/fontconfig/fcfreetype.h +59 -0
  148. data/vendor/local/include/fontconfig/fcprivate.h +124 -0
  149. data/vendor/local/include/fontconfig/fontconfig.h +1010 -0
  150. data/vendor/local/include/freetype2/config/ftconfig.h +706 -0
  151. data/vendor/local/include/freetype2/config/ftheader.h +832 -0
  152. data/vendor/local/include/freetype2/config/ftmodule.h +20 -0
  153. data/vendor/local/include/freetype2/config/ftoption.h +846 -0
  154. data/vendor/local/include/freetype2/config/ftstdlib.h +174 -0
  155. data/vendor/local/include/freetype2/freetype.h +4076 -0
  156. data/vendor/local/include/freetype2/ft2build.h +42 -0
  157. data/vendor/local/include/freetype2/ftadvanc.h +182 -0
  158. data/vendor/local/include/freetype2/ftautoh.h +402 -0
  159. data/vendor/local/include/freetype2/ftbbox.h +102 -0
  160. data/vendor/local/include/freetype2/ftbdf.h +210 -0
  161. data/vendor/local/include/freetype2/ftbitmap.h +227 -0
  162. data/vendor/local/include/freetype2/ftbzip2.h +102 -0
  163. data/vendor/local/include/freetype2/ftcache.h +1057 -0
  164. data/vendor/local/include/freetype2/ftcffdrv.h +254 -0
  165. data/vendor/local/include/freetype2/ftchapters.h +121 -0
  166. data/vendor/local/include/freetype2/ftcid.h +166 -0
  167. data/vendor/local/include/freetype2/fterrdef.h +249 -0
  168. data/vendor/local/include/freetype2/fterrors.h +198 -0
  169. data/vendor/local/include/freetype2/ftgasp.h +128 -0
  170. data/vendor/local/include/freetype2/ftglyph.h +620 -0
  171. data/vendor/local/include/freetype2/ftgxval.h +358 -0
  172. data/vendor/local/include/freetype2/ftgzip.h +149 -0
  173. data/vendor/local/include/freetype2/ftimage.h +1322 -0
  174. data/vendor/local/include/freetype2/ftincrem.h +353 -0
  175. data/vendor/local/include/freetype2/ftlcdfil.h +251 -0
  176. data/vendor/local/include/freetype2/ftlist.h +277 -0
  177. data/vendor/local/include/freetype2/ftlzw.h +99 -0
  178. data/vendor/local/include/freetype2/ftmac.h +274 -0
  179. data/vendor/local/include/freetype2/ftmm.h +377 -0
  180. data/vendor/local/include/freetype2/ftmodapi.h +641 -0
  181. data/vendor/local/include/freetype2/ftmoderr.h +194 -0
  182. data/vendor/local/include/freetype2/ftotval.h +203 -0
  183. data/vendor/local/include/freetype2/ftoutln.h +572 -0
  184. data/vendor/local/include/freetype2/ftpfr.h +172 -0
  185. data/vendor/local/include/freetype2/ftrender.h +238 -0
  186. data/vendor/local/include/freetype2/ftsizes.h +159 -0
  187. data/vendor/local/include/freetype2/ftsnames.h +200 -0
  188. data/vendor/local/include/freetype2/ftstroke.h +751 -0
  189. data/vendor/local/include/freetype2/ftsynth.h +81 -0
  190. data/vendor/local/include/freetype2/ftsystem.h +347 -0
  191. data/vendor/local/include/freetype2/fttrigon.h +350 -0
  192. data/vendor/local/include/freetype2/ftttdrv.h +170 -0
  193. data/vendor/local/include/freetype2/fttypes.h +598 -0
  194. data/vendor/local/include/freetype2/ftwinfnt.h +275 -0
  195. data/vendor/local/include/freetype2/ftxf86.h +83 -0
  196. data/vendor/local/include/freetype2/t1tables.h +662 -0
  197. data/vendor/local/include/freetype2/ttnameid.h +1237 -0
  198. data/vendor/local/include/freetype2/tttables.h +787 -0
  199. data/vendor/local/include/freetype2/tttags.h +111 -0
  200. data/vendor/local/include/freetype2/ttunpat.h +59 -0
  201. data/vendor/local/include/libpng16/png.h +3276 -0
  202. data/vendor/local/include/libpng16/pngconf.h +644 -0
  203. data/vendor/local/include/libpng16/pnglibconf.h +208 -0
  204. data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
  205. data/vendor/local/include/libxml2/libxml/HTMLparser.h +306 -0
  206. data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
  207. data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
  208. data/vendor/local/include/libxml2/libxml/SAX2.h +178 -0
  209. data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
  210. data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
  211. data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
  212. data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
  213. data/vendor/local/include/libxml2/libxml/dict.h +80 -0
  214. data/vendor/local/include/libxml2/libxml/encoding.h +240 -0
  215. data/vendor/local/include/libxml2/libxml/entities.h +151 -0
  216. data/vendor/local/include/libxml2/libxml/globals.h +509 -0
  217. data/vendor/local/include/libxml2/libxml/hash.h +233 -0
  218. data/vendor/local/include/libxml2/libxml/list.h +137 -0
  219. data/vendor/local/include/libxml2/libxml/nanoftp.h +163 -0
  220. data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
  221. data/vendor/local/include/libxml2/libxml/parser.h +1241 -0
  222. data/vendor/local/include/libxml2/libxml/parserInternals.h +644 -0
  223. data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
  224. data/vendor/local/include/libxml2/libxml/relaxng.h +217 -0
  225. data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
  226. data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
  227. data/vendor/local/include/libxml2/libxml/threads.h +84 -0
  228. data/vendor/local/include/libxml2/libxml/tree.h +1310 -0
  229. data/vendor/local/include/libxml2/libxml/uri.h +94 -0
  230. data/vendor/local/include/libxml2/libxml/valid.h +458 -0
  231. data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
  232. data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
  233. data/vendor/local/include/libxml2/libxml/xmlIO.h +366 -0
  234. data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
  235. data/vendor/local/include/libxml2/libxml/xmlerror.h +945 -0
  236. data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
  237. data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
  238. data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
  239. data/vendor/local/include/libxml2/libxml/xmlreader.h +428 -0
  240. data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
  241. data/vendor/local/include/libxml2/libxml/xmlsave.h +88 -0
  242. data/vendor/local/include/libxml2/libxml/xmlschemas.h +246 -0
  243. data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
  244. data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
  245. data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
  246. data/vendor/local/include/libxml2/libxml/xmlversion.h +489 -0
  247. data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
  248. data/vendor/local/include/libxml2/libxml/xpath.h +557 -0
  249. data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
  250. data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
  251. data/vendor/local/include/pixman-1/pixman-version.h +50 -0
  252. data/vendor/local/include/pixman-1/pixman.h +1111 -0
  253. data/vendor/local/include/png.h +3276 -0
  254. data/vendor/local/include/pngconf.h +644 -0
  255. data/vendor/local/include/pnglibconf.h +208 -0
  256. data/vendor/local/include/zconf.h +511 -0
  257. data/vendor/local/include/zlib.h +1768 -0
  258. data/vendor/local/lib/cmake/libxml2/libxml2-config.cmake +50 -0
  259. data/vendor/local/lib/fontconfig.def +207 -0
  260. data/vendor/local/lib/libcairo-gobject.a +0 -0
  261. data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
  262. data/vendor/local/lib/libcairo-gobject.la +41 -0
  263. data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
  264. data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
  265. data/vendor/local/lib/libcairo-script-interpreter.la +41 -0
  266. data/vendor/local/lib/libcairo.a +0 -0
  267. data/vendor/local/lib/libcairo.dll.a +0 -0
  268. data/vendor/local/lib/libcairo.la +41 -0
  269. data/vendor/local/lib/libfontconfig.dll.a +0 -0
  270. data/vendor/local/lib/libfontconfig.la +41 -0
  271. data/vendor/local/lib/libfreetype.a +0 -0
  272. data/vendor/local/lib/libfreetype.dll.a +0 -0
  273. data/vendor/local/lib/libfreetype.la +41 -0
  274. data/vendor/local/lib/libpixman-1.a +0 -0
  275. data/vendor/local/lib/libpixman-1.dll.a +0 -0
  276. data/vendor/local/lib/libpixman-1.la +41 -0
  277. data/vendor/local/lib/libpng.a +0 -0
  278. data/vendor/local/lib/libpng.dll.a +0 -0
  279. data/vendor/local/lib/libpng.la +41 -0
  280. data/vendor/local/lib/libpng16.a +0 -0
  281. data/vendor/local/lib/libpng16.dll.a +0 -0
  282. data/vendor/local/lib/libpng16.la +41 -0
  283. data/vendor/local/lib/libxml2.a +0 -0
  284. data/vendor/local/lib/libxml2.dll.a +0 -0
  285. data/vendor/local/lib/libxml2.la +41 -0
  286. data/vendor/local/lib/libz.a +0 -0
  287. data/vendor/local/lib/libz.dll.a +0 -0
  288. data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
  289. data/vendor/local/lib/pkgconfig/cairo-ft.pc +12 -0
  290. data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
  291. data/vendor/local/lib/pkgconfig/cairo-pdf.pc +12 -0
  292. data/vendor/local/lib/pkgconfig/cairo-png.pc +12 -0
  293. data/vendor/local/lib/pkgconfig/cairo-ps.pc +12 -0
  294. data/vendor/local/lib/pkgconfig/cairo-script.pc +12 -0
  295. data/vendor/local/lib/pkgconfig/cairo-svg.pc +12 -0
  296. data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +12 -0
  297. data/vendor/local/lib/pkgconfig/cairo-win32.pc +12 -0
  298. data/vendor/local/lib/pkgconfig/cairo.pc +13 -0
  299. data/vendor/local/lib/pkgconfig/fontconfig.pc +18 -0
  300. data/vendor/local/lib/pkgconfig/freetype2.pc +14 -0
  301. data/vendor/local/lib/pkgconfig/libpng.pc +11 -0
  302. data/vendor/local/lib/pkgconfig/libpng16.pc +11 -0
  303. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
  304. data/vendor/local/lib/pkgconfig/pixman-1.pc +11 -0
  305. data/vendor/local/lib/pkgconfig/zlib.pc +13 -0
  306. data/vendor/local/lib/xml2Conf.sh +8 -0
  307. data/vendor/local/share/aclocal/freetype2.m4 +194 -0
  308. data/vendor/local/share/aclocal/libxml.m4 +188 -0
  309. data/vendor/local/share/doc/libxml2-2.9.2/Copyright +23 -0
  310. data/vendor/local/share/doc/libxml2-2.9.2/examples/testHTML.c +880 -0
  311. data/vendor/local/share/doc/libxml2-2.9.2/examples/testSAX.c +1198 -0
  312. data/vendor/local/share/doc/libxml2-2.9.2/examples/testXPath.c +229 -0
  313. data/vendor/local/share/doc/libxml2-2.9.2/examples/xmllint.c +3801 -0
  314. data/vendor/local/share/doc/libxml2-2.9.2/html/DOM.gif +0 -0
  315. data/vendor/local/share/doc/libxml2-2.9.2/html/FAQ.html +299 -0
  316. data/vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-180x168.gif +0 -0
  317. data/vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-90x34.gif +0 -0
  318. data/vendor/local/share/doc/libxml2-2.9.2/html/encoding.html +217 -0
  319. data/vendor/local/share/doc/libxml2-2.9.2/html/examples.xml +751 -0
  320. data/vendor/local/share/doc/libxml2-2.9.2/html/examples.xsl +174 -0
  321. data/vendor/local/share/doc/libxml2-2.9.2/html/html/book1.html +13 -0
  322. data/vendor/local/share/doc/libxml2-2.9.2/html/html/home.png +0 -0
  323. data/vendor/local/share/doc/libxml2-2.9.2/html/html/index.html +13 -0
  324. data/vendor/local/share/doc/libxml2-2.9.2/html/html/left.png +0 -0
  325. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-DOCBparser.html +51 -0
  326. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLparser.html +184 -0
  327. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLtree.html +73 -0
  328. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX.html +125 -0
  329. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX2.html +128 -0
  330. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-c14n.html +38 -0
  331. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-catalog.html +142 -0
  332. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-chvalid.html +72 -0
  333. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-debugXML.html +120 -0
  334. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-dict.html +58 -0
  335. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-encoding.html +124 -0
  336. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-entities.html +79 -0
  337. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-globals.html +152 -0
  338. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-hash.html +116 -0
  339. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-lib.html +13 -0
  340. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-list.html +120 -0
  341. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanoftp.html +94 -0
  342. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanohttp.html +65 -0
  343. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parser.html +559 -0
  344. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parserInternals.html +322 -0
  345. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-pattern.html +76 -0
  346. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-relaxng.html +162 -0
  347. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schemasInternals.html +373 -0
  348. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schematron.html +81 -0
  349. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-threads.html +72 -0
  350. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-tree.html +990 -0
  351. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-uri.html +73 -0
  352. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-valid.html +289 -0
  353. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xinclude.html +59 -0
  354. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xlink.html +82 -0
  355. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlIO.html +212 -0
  356. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlautomata.html +85 -0
  357. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlerror.html +865 -0
  358. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlexports.html +20 -0
  359. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmemory.html +107 -0
  360. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmodule.html +38 -0
  361. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlreader.html +330 -0
  362. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlregexp.html +143 -0
  363. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlsave.html +60 -0
  364. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemas.html +185 -0
  365. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemastypes.html +123 -0
  366. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlstring.html +108 -0
  367. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlunicode.html +512 -0
  368. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlversion.html +63 -0
  369. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlwriter.html +261 -0
  370. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpath.html +316 -0
  371. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpathInternals.html +394 -0
  372. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpointer.html +83 -0
  373. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xzlib.html +16 -0
  374. data/vendor/local/share/doc/libxml2-2.9.2/html/html/right.png +0 -0
  375. data/vendor/local/share/doc/libxml2-2.9.2/html/html/up.png +0 -0
  376. data/vendor/local/share/doc/libxml2-2.9.2/html/index.html +14 -0
  377. data/vendor/local/share/doc/libxml2-2.9.2/html/io1.c +166 -0
  378. data/vendor/local/share/doc/libxml2-2.9.2/html/io1.res +5 -0
  379. data/vendor/local/share/doc/libxml2-2.9.2/html/io2.c +58 -0
  380. data/vendor/local/share/doc/libxml2-2.9.2/html/io2.res +2 -0
  381. data/vendor/local/share/doc/libxml2-2.9.2/html/libxml.gif +0 -0
  382. data/vendor/local/share/doc/libxml2-2.9.2/html/parse1.c +56 -0
  383. data/vendor/local/share/doc/libxml2-2.9.2/html/parse2.c +72 -0
  384. data/vendor/local/share/doc/libxml2-2.9.2/html/parse3.c +60 -0
  385. data/vendor/local/share/doc/libxml2-2.9.2/html/parse4.c +143 -0
  386. data/vendor/local/share/doc/libxml2-2.9.2/html/reader1.c +107 -0
  387. data/vendor/local/share/doc/libxml2-2.9.2/html/reader1.res +14 -0
  388. data/vendor/local/share/doc/libxml2-2.9.2/html/reader2.c +122 -0
  389. data/vendor/local/share/doc/libxml2-2.9.2/html/reader3.c +120 -0
  390. data/vendor/local/share/doc/libxml2-2.9.2/html/reader3.res +13 -0
  391. data/vendor/local/share/doc/libxml2-2.9.2/html/reader4.c +122 -0
  392. data/vendor/local/share/doc/libxml2-2.9.2/html/reader4.res +3 -0
  393. data/vendor/local/share/doc/libxml2-2.9.2/html/redhat.gif +0 -0
  394. data/vendor/local/share/doc/libxml2-2.9.2/html/smallfootonly.gif +0 -0
  395. data/vendor/local/share/doc/libxml2-2.9.2/html/structure.gif +0 -0
  396. data/vendor/local/share/doc/libxml2-2.9.2/html/test1.xml +1 -0
  397. data/vendor/local/share/doc/libxml2-2.9.2/html/test2.xml +13 -0
  398. data/vendor/local/share/doc/libxml2-2.9.2/html/test3.xml +39 -0
  399. data/vendor/local/share/doc/libxml2-2.9.2/html/testWriter.c +1198 -0
  400. data/vendor/local/share/doc/libxml2-2.9.2/html/tree1.c +94 -0
  401. data/vendor/local/share/doc/libxml2-2.9.2/html/tree1.res +4 -0
  402. data/vendor/local/share/doc/libxml2-2.9.2/html/tree2.c +118 -0
  403. data/vendor/local/share/doc/libxml2-2.9.2/html/tree2.res +18 -0
  404. data/vendor/local/share/doc/libxml2-2.9.2/html/tst.xml +7 -0
  405. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apa.html +8 -0
  406. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apb.html +14 -0
  407. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apc.html +82 -0
  408. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apd.html +76 -0
  409. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ape.html +78 -0
  410. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apf.html +67 -0
  411. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apg.html +75 -0
  412. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/aph.html +76 -0
  413. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/api.html +4 -0
  414. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s02.html +14 -0
  415. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s03.html +47 -0
  416. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s04.html +54 -0
  417. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s05.html +55 -0
  418. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s06.html +35 -0
  419. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s07.html +30 -0
  420. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s08.html +38 -0
  421. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s09.html +63 -0
  422. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/blank.png +0 -0
  423. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/1.png +0 -0
  424. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/10.png +0 -0
  425. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/2.png +0 -0
  426. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/3.png +0 -0
  427. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/4.png +0 -0
  428. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/5.png +0 -0
  429. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/6.png +0 -0
  430. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/7.png +0 -0
  431. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/8.png +0 -0
  432. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/9.png +0 -0
  433. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/caution.png +0 -0
  434. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/draft.png +0 -0
  435. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/home.png +0 -0
  436. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/important.png +0 -0
  437. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/next.png +0 -0
  438. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/note.png +0 -0
  439. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/prev.png +0 -0
  440. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/tip.png +0 -0
  441. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-blank.png +0 -0
  442. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-minus.png +0 -0
  443. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-plus.png +0 -0
  444. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/up.png +0 -0
  445. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/warning.png +0 -0
  446. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddattribute.c +64 -0
  447. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddkeyword.c +75 -0
  448. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeconvert.c +73 -0
  449. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includegetattribute.c +72 -0
  450. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includekeyword.c +79 -0
  451. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includexpath.c +74 -0
  452. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/index.html +14 -0
  453. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ix01.html +1 -0
  454. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/xmltutorial.pdf +1336 -0
  455. data/vendor/local/share/doc/libxml2-2.9.2/html/w3c.png +0 -0
  456. data/vendor/local/share/doc/libxml2-2.9.2/html/writer.xml +2 -0
  457. data/vendor/local/share/doc/libxml2-2.9.2/html/xml.html +5995 -0
  458. data/vendor/local/share/doc/libxml2-2.9.2/html/xpath1.c +250 -0
  459. data/vendor/local/share/doc/libxml2-2.9.2/html/xpath1.res +5 -0
  460. data/vendor/local/share/doc/libxml2-2.9.2/html/xpath2.c +190 -0
  461. data/vendor/local/share/doc/libxml2-2.9.2/html/xpath2.res +30 -0
  462. data/vendor/local/share/fontconfig/conf.avail/10-autohint.conf +14 -0
  463. data/vendor/local/share/fontconfig/conf.avail/10-no-sub-pixel.conf +14 -0
  464. data/vendor/local/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf +81 -0
  465. data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf +14 -0
  466. data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf +14 -0
  467. data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf +14 -0
  468. data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf +14 -0
  469. data/vendor/local/share/fontconfig/conf.avail/10-unhinted.conf +14 -0
  470. data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-default.conf +16 -0
  471. data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf +16 -0
  472. data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-light.conf +16 -0
  473. data/vendor/local/share/fontconfig/conf.avail/20-unhint-small-vera.conf +48 -0
  474. data/vendor/local/share/fontconfig/conf.avail/25-unhint-nonlatin.conf +128 -0
  475. data/vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf +546 -0
  476. data/vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf +24 -0
  477. data/vendor/local/share/fontconfig/conf.avail/40-nonlatin.conf +231 -0
  478. data/vendor/local/share/fontconfig/conf.avail/45-latin.conf +189 -0
  479. data/vendor/local/share/fontconfig/conf.avail/49-sansserif.conf +21 -0
  480. data/vendor/local/share/fontconfig/conf.avail/50-user.conf +15 -0
  481. data/vendor/local/share/fontconfig/conf.avail/51-local.conf +6 -0
  482. data/vendor/local/share/fontconfig/conf.avail/60-latin.conf +70 -0
  483. data/vendor/local/share/fontconfig/conf.avail/65-fonts-persian.conf +419 -0
  484. data/vendor/local/share/fontconfig/conf.avail/65-khmer.conf +16 -0
  485. data/vendor/local/share/fontconfig/conf.avail/65-nonlatin.conf +196 -0
  486. data/vendor/local/share/fontconfig/conf.avail/69-unifont.conf +28 -0
  487. data/vendor/local/share/fontconfig/conf.avail/70-no-bitmaps.conf +12 -0
  488. data/vendor/local/share/fontconfig/conf.avail/70-yes-bitmaps.conf +12 -0
  489. data/vendor/local/share/fontconfig/conf.avail/80-delicious.conf +19 -0
  490. data/vendor/local/share/fontconfig/conf.avail/90-synthetic.conf +64 -0
  491. data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +122 -0
  492. data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +53 -0
  493. data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +123 -0
  494. data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +121 -0
  495. data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +117 -0
  496. data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +75 -0
  497. data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +120 -0
  498. data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +92 -0
  499. data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +93 -0
  500. data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +397 -0
  501. data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +428 -0
  502. data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +452 -0
  503. data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +342 -0
  504. data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +315 -0
  505. data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1194 -0
  506. data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +577 -0
  507. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +129 -0
  508. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +197 -0
  509. data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +600 -0
  510. data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +226 -0
  511. data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +810 -0
  512. data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +302 -0
  513. data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +360 -0
  514. data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +394 -0
  515. data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +156 -0
  516. data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +677 -0
  517. data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +342 -0
  518. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +326 -0
  519. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +280 -0
  520. data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +527 -0
  521. data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +535 -0
  522. data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +170 -0
  523. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +636 -0
  524. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +380 -0
  525. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +653 -0
  526. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +559 -0
  527. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +2231 -0
  528. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +956 -0
  529. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1637 -0
  530. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2695 -0
  531. data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +53 -0
  532. data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +53 -0
  533. data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +44 -0
  534. data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +74 -0
  535. data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +1138 -0
  536. data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +747 -0
  537. data/vendor/local/share/gtk-doc/html/cairo/home.png +0 -0
  538. data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +177 -0
  539. data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +193 -0
  540. data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +179 -0
  541. data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +123 -0
  542. data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +107 -0
  543. data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +128 -0
  544. data/vendor/local/share/gtk-doc/html/cairo/index-all.html +1122 -0
  545. data/vendor/local/share/gtk-doc/html/cairo/index.html +157 -0
  546. data/vendor/local/share/gtk-doc/html/cairo/index.sgml +833 -0
  547. data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +73 -0
  548. data/vendor/local/share/gtk-doc/html/cairo/left.png +0 -0
  549. data/vendor/local/share/gtk-doc/html/cairo/right.png +0 -0
  550. data/vendor/local/share/gtk-doc/html/cairo/style.css +266 -0
  551. data/vendor/local/share/gtk-doc/html/cairo/up.png +0 -0
  552. data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
  553. data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
  554. data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
  555. data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
  556. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
  557. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +373 -0
  558. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
  559. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
  560. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
  561. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
  562. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
  563. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
  564. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
  565. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +134 -0
  566. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +218 -0
  567. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
  568. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
  569. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
  570. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
  571. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +187 -0
  572. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
  573. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +766 -0
  574. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +688 -0
  575. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
  576. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
  577. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
  578. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
  579. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
  580. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1597 -0
  581. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
  582. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
  583. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
  584. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
  585. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +347 -0
  586. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
  587. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +953 -0
  588. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
  589. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
  590. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
  591. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +565 -0
  592. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
  593. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +133 -0
  594. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +314 -0
  595. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
  596. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
  597. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
  598. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +292 -0
  599. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +479 -0
  600. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +542 -0
  601. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
  602. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
  603. data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3573 -0
  604. data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
  605. data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
  606. data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
  607. data/vendor/local/share/license/cairo/AUTHORS +115 -0
  608. data/vendor/local/share/license/cairo/COPYING +33 -0
  609. data/vendor/local/share/license/cairo/COPYING-LGPL-2.1 +510 -0
  610. data/vendor/local/share/license/cairo/COPYING-MPL-1.1 +470 -0
  611. data/vendor/local/share/license/cairo/README +204 -0
  612. data/vendor/local/share/license/cairo/README.win32 +66 -0
  613. data/vendor/local/share/license/fontconfig/AUTHORS +3 -0
  614. data/vendor/local/share/license/fontconfig/COPYING +28 -0
  615. data/vendor/local/share/license/fontconfig/README +1484 -0
  616. data/vendor/local/share/license/freetype/README +83 -0
  617. data/vendor/local/share/license/freetype/README.git +50 -0
  618. data/vendor/local/share/license/libpng/README +215 -0
  619. data/vendor/local/share/license/libxml2/AUTHORS +5 -0
  620. data/vendor/local/share/license/libxml2/COPYING +23 -0
  621. data/vendor/local/share/license/libxml2/README +39 -0
  622. data/vendor/local/share/license/libxml2/README.tests +39 -0
  623. data/vendor/local/share/license/pixman/AUTHORS +0 -0
  624. data/vendor/local/share/license/pixman/COPYING +42 -0
  625. data/vendor/local/share/license/pixman/README +116 -0
  626. data/vendor/local/share/license/zlib/README +115 -0
  627. data/vendor/local/share/man/man1/freetype-config.1 +108 -0
  628. data/vendor/local/share/man/man1/xml2-config.1 +30 -0
  629. data/vendor/local/share/man/man1/xmlcatalog.1 +340 -0
  630. data/vendor/local/share/man/man1/xmllint.1 +647 -0
  631. data/vendor/local/share/man/man3/libpng.3 +6217 -0
  632. data/vendor/local/share/man/man3/libpngpf.3 +18 -0
  633. data/vendor/local/share/man/man3/libxml.3 +71 -0
  634. data/vendor/local/share/man/man5/png.5 +74 -0
  635. data/vendor/local/share/xml/fontconfig/fonts.dtd +233 -0
  636. metadata +774 -0
@@ -0,0 +1,267 @@
1
+ module Cairo
2
+ module Color
3
+ module_function
4
+ def parse(value, robust=false)
5
+ return value.dup if value.is_a?(Base)
6
+ case value
7
+ when Array
8
+ case value.first
9
+ when :cmyk, :cmyka
10
+ CMYK.new(*value[1..-1])
11
+ when :hsv, :hsva
12
+ HSV.new(*value[1..-1])
13
+ else
14
+ _, *value = value if [:rgb, :rgba].include?(value.first)
15
+ RGB.new(*value)
16
+ end
17
+ when /\A#/ #
18
+ parse_hex_color(value)
19
+ when String, Symbol
20
+ name = Cairo.normalize_const_name(value)
21
+ begin
22
+ const_get(name).dup
23
+ rescue NameError
24
+ raise ArgumentError, "unknown color name: #{value}"
25
+ end
26
+ else
27
+ if robust
28
+ raise ArgumentError, "can't parse as color name: #{value.inspect}"
29
+ end
30
+ value
31
+ end
32
+ end
33
+
34
+ HEX_RE = "(?i:[a-f\\d])"
35
+ def parse_hex_color(value)
36
+ case value
37
+ when /\A#((?:#{HEX_RE}){3,4})\z/ #
38
+ RGB.new(*$1.scan(/./).collect {|part| part.hex / 15.0})
39
+ when /\A#((?:#{HEX_RE}{2,2}){3,4})\z/ #
40
+ RGB.new(*$1.scan(/.{2,2}/).collect {|part| part.hex / 255.0})
41
+ when /\A#((?:#{HEX_RE}{4,4}){3,4})\z/ #
42
+ RGB.new(*$1.scan(/.{4,4}/).collect {|part| part.hex / 65535.0})
43
+ else
44
+ message = "invalid hex color format: #{value} should be "
45
+ message << "#RGB, #RGBA, #RRGGBB, #RRGGBBAA, #RRRRGGGGBBBB "
46
+ message << "or #RRRRGGGGBBBBAAAA"
47
+ raise ArgumentError, message
48
+ end
49
+ end
50
+
51
+ class Base
52
+ attr_accessor :alpha
53
+
54
+ alias_method :a, :alpha
55
+ alias_method :a=, :alpha=
56
+
57
+ def initialize(a)
58
+ assert_in_range(a, "alpha channel")
59
+ @alpha = a
60
+ end
61
+
62
+ private
63
+ def assert_in_range(value, description)
64
+ unless (0.0..1.0).include?(value)
65
+ raise ArgumentError,
66
+ "#{description} value should be in [0.0, 1.0]: #{value.inspect}"
67
+ end
68
+ end
69
+ end
70
+
71
+ class RGB < Base
72
+ attr_accessor :red, :green, :blue
73
+
74
+ alias_method :r, :red
75
+ alias_method :r=, :red=
76
+ alias_method :g, :green
77
+ alias_method :g=, :green=
78
+ alias_method :b, :blue
79
+ alias_method :b=, :blue=
80
+
81
+ def initialize(r, g, b, a=1.0)
82
+ super(a)
83
+ assert_in_range(r, "red")
84
+ assert_in_range(g, "green")
85
+ assert_in_range(b, "blue")
86
+ @red = r
87
+ @green = g
88
+ @blue = b
89
+ end
90
+
91
+ def hash
92
+ to_s.hash
93
+ end
94
+
95
+ def eql?(other)
96
+ self == other
97
+ end
98
+
99
+ def ==(other)
100
+ other.is_a?(self.class) and other.to_s == to_s
101
+ end
102
+
103
+ def to_a
104
+ [@red, @green, @blue, @alpha]
105
+ end
106
+ alias_method :to_ary, :to_a
107
+
108
+ def to_s
109
+ "#%02X%02X%02X%02X" % to_a.collect {|v| (v * 255).ceil}
110
+ end
111
+
112
+ def to_rgb
113
+ clone
114
+ end
115
+
116
+ def to_cmyk
117
+ cmy = [1.0 - @red, 1.0 - @green, 1.0 - @blue]
118
+ key_plate = cmy.min
119
+ if key_plate < 1.0
120
+ one_k = 1.0 - key_plate
121
+ cmyk = cmy.collect {|value| (value - key_plate) / one_k} + [key_plate]
122
+ else
123
+ cmyk = [0, 0, 0, key_plate]
124
+ end
125
+ cmyka = cmyk + [@alpha]
126
+ CMYK.new(*cmyka)
127
+ end
128
+
129
+ def to_hsv
130
+ max = [@red, @blue, @green].max
131
+ if max > 0
132
+ min = [@red, @blue, @green].min
133
+ max_min = max - min
134
+ case max
135
+ when @red
136
+ numerator = @green - @blue
137
+ angle = 0
138
+ when @green
139
+ numerator = @blue - @red
140
+ angle = 120
141
+ when @blue
142
+ numerator = @red - @green
143
+ angle = 240
144
+ end
145
+ h = max_min > 0 ? 60 * numerator / max_min + angle : 0.0
146
+ s = max_min / max
147
+ else
148
+ h = 0.0
149
+ s = 0.0
150
+ end
151
+ v = max
152
+ HSV.new(h, s, v, @alpha)
153
+ end
154
+ end
155
+
156
+ class CMYK < Base
157
+ attr_accessor :cyan, :magenta, :yellow, :key_plate
158
+
159
+ alias_method :c, :cyan
160
+ alias_method :c=, :cyan=
161
+ alias_method :m, :magenta
162
+ alias_method :m=, :magenta=
163
+ alias_method :y, :yellow
164
+ alias_method :y=, :yellow=
165
+ alias_method :k, :key_plate
166
+ alias_method :k=, :key_plate=
167
+
168
+ def initialize(c, m, y, k, a=1.0)
169
+ super(a)
170
+ assert_in_range(c, "cyan")
171
+ assert_in_range(m, "magenta")
172
+ assert_in_range(y, "yellow")
173
+ assert_in_range(k, "key plate")
174
+ @cyan = c
175
+ @magenta = m
176
+ @yellow = y
177
+ @key_plate = k
178
+ end
179
+
180
+ def to_a
181
+ [@cyan, @magenta, @yellow, @key_plate, @alpha]
182
+ end
183
+ alias_method :to_ary, :to_a
184
+
185
+ def to_rgb
186
+ one_k = 1.0 - @key_plate
187
+ rgba = [
188
+ (1.0 - @cyan) * one_k,
189
+ (1.0 - @magenta) * one_k,
190
+ (1.0 - @yellow) * one_k,
191
+ @alpha,
192
+ ]
193
+ RGB.new(*rgba)
194
+ end
195
+
196
+ def to_cmyk
197
+ clone
198
+ end
199
+
200
+ def to_hsv
201
+ to_rgb.to_hsv
202
+ end
203
+ end
204
+
205
+ class HSV < Base
206
+ attr_accessor :hue, :saturation, :value
207
+
208
+ alias_method :h, :hue
209
+ alias_method :h=, :hue=
210
+ alias_method :s, :saturation
211
+ alias_method :s=, :saturation=
212
+ alias_method :v, :value
213
+ alias_method :v=, :value=
214
+
215
+ def initialize(h, s, v, a=1.0)
216
+ super(a)
217
+ assert_in_range(s, "saturation")
218
+ assert_in_range(v, "value")
219
+ @hue = h.modulo(360.0)
220
+ @saturation = s
221
+ @value = v
222
+ end
223
+
224
+ def to_a
225
+ [@hue, @saturation, @value, @alpha]
226
+ end
227
+ alias_method :to_ary, :to_a
228
+
229
+ def to_rgb
230
+ if s > 0
231
+ h_60 = @hue / 60.0
232
+ hi = h_60.floor.modulo(6)
233
+ f = h_60 - hi
234
+ p = @value * (1 - @saturation)
235
+ q = @value * (1 - f * @saturation)
236
+ t = @value * (1 - (1 - f) * @saturation)
237
+ case hi
238
+ when 0
239
+ rgb = [@value, t, p]
240
+ when 1
241
+ rgb = [q, @value, p]
242
+ when 2
243
+ rgb = [p, @value, t]
244
+ when 3
245
+ rgb = [p, q, @value]
246
+ when 4
247
+ rgb = [t, p, @value]
248
+ when 5
249
+ rgb = [@value, p, q]
250
+ end
251
+ rgba = rgb + [@alpha]
252
+ RGB.new(*rgba)
253
+ else
254
+ RGB.new(@value, @value, @value, @alpha)
255
+ end
256
+ end
257
+
258
+ def to_cmyk
259
+ to_rgb.to_cmyk
260
+ end
261
+
262
+ def to_hsv
263
+ clone
264
+ end
265
+ end
266
+ end
267
+ end
@@ -0,0 +1,656 @@
1
+ require 'cairo/color'
2
+
3
+ module Cairo
4
+ module Color
5
+ # Alice Blue: #F0F8FF
6
+ ALICE_BLUE = RGB.new(0.941176470588235, 0.972549019607843, 1.0)
7
+ # Alizarin Crimson: #E32636
8
+ ALIZARIN_CRIMSON = RGB.new(0.890196078431372, 0.149019607843137, 0.211764705882353)
9
+ # Amaranth: #E52B50
10
+ AMARANTH = RGB.new(0.898039215686275, 0.168627450980392, 0.313725490196078)
11
+ # Amber: #FFBF00
12
+ AMBER = RGB.new(1.0, 0.749019607843137, 0.0)
13
+ # Amethyst: #9966CC
14
+ AMETHYST = RGB.new(0.6, 0.4, 0.8)
15
+ # Apricot: #FBCEB1
16
+ APRICOT = RGB.new(0.984313725490196, 0.807843137254902, 0.694117647058824)
17
+ # Aqua: #00FFFF
18
+ AQUA = RGB.new(0.0, 1.0, 1.0)
19
+ # Aquamarine: #7FFFD4
20
+ AQUAMARINE = RGB.new(0.498039215686275, 1.0, 0.831372549019608)
21
+ # Asparagus: #7BA05B
22
+ ASPARAGUS = RGB.new(0.482352941176471, 0.627450980392157, 0.356862745098039)
23
+ # Azure: #007FFF
24
+ AZURE = RGB.new(0.0, 0.498039215686275, 1.0)
25
+ # Beige: #F5F5DC
26
+ BEIGE = RGB.new(0.96078431372549, 0.96078431372549, 0.862745098039216)
27
+ # Bistre: #3D2B1F
28
+ BISTRE = RGB.new(0.23921568627451, 0.168627450980392, 0.12156862745098)
29
+ # Black: #000000
30
+ BLACK = RGB.new(0.0, 0.0, 0.0)
31
+ # Blue: #0000FF
32
+ BLUE = RGB.new(0.0, 0.0, 1.0)
33
+ # Bondi Blue: #0095B6
34
+ BONDI_BLUE = RGB.new(0.0, 0.584313725490196, 0.713725490196078)
35
+ # Bright green: #66FF00
36
+ BRIGHT_GREEN = RGB.new(0.4, 1.0, 0.0)
37
+ # Bright turquoise: #08E8DE
38
+ BRIGHT_TURQUOISE = RGB.new(0.0313725490196078, 0.909803921568627, 0.870588235294118)
39
+ # Brown: #964B00
40
+ BROWN = RGB.new(0.588235294117647, 0.294117647058824, 0.0)
41
+ # Buff: #F0DC82
42
+ BUFF = RGB.new(0.941176470588235, 0.862745098039216, 0.509803921568627)
43
+ # Burgundy: #900020
44
+ BURGUNDY = RGB.new(0.501960784313725, 0.0, 0.125490196078431)
45
+ # Burnt Orange: #CC5500
46
+ BURNT_ORANGE = RGB.new(0.8, 0.333333333333333, 0.0)
47
+ # Burnt Sienna: #E97451
48
+ BURNT_SIENNA = RGB.new(0.913725490196078, 0.454901960784314, 0.317647058823529)
49
+ # Burnt umber: #8A3324
50
+ BURNT_UMBER = RGB.new(0.541176470588235, 0.2, 0.141176470588235)
51
+ # Camouflage green: #78866B
52
+ CAMOUFLAGE_GREEN = RGB.new(0.470588235294118, 0.525490196078431, 0.419607843137255)
53
+ # Cardinal: #C41E3A
54
+ CARDINAL = RGB.new(0.768627450980392, 0.117647058823529, 0.227450980392157)
55
+ # Carmine: #960018
56
+ CARMINE = RGB.new(0.588235294117647, 0.0, 0.0941176470588235)
57
+ # Carnation: #F95A61
58
+ CARNATION = RGB.new(0.976470588235294, 0.352941176470588, 0.380392156862745)
59
+ # Carrot orange: #ED9121
60
+ CARROT_ORANGE = RGB.new(0.929411764705882, 0.568627450980392, 0.129411764705882)
61
+ # Celadon: #ACE1AF
62
+ CELADON = RGB.new(0.674509803921569, 0.882352941176471, 0.686274509803922)
63
+ # Cerise: #DE3163
64
+ CERISE = RGB.new(0.870588235294118, 0.192156862745098, 0.388235294117647)
65
+ # Cerulean: #007BA7
66
+ CERULEAN = RGB.new(0.0, 0.482352941176471, 0.654901960784314)
67
+ # Cerulean blue: #2A52BE
68
+ CERULEAN_BLUE = RGB.new(0.164705882352941, 0.32156862745098, 0.745098039215686)
69
+ # Chartreuse: #7FFF00
70
+ CHARTREUSE = RGB.new(0.498039215686275, 1.0, 0.0)
71
+ # Chartreuse yellow: #DFFF00
72
+ CHARTREUSE_YELLOW = RGB.new(0.874509803921569, 1.0, 0.0)
73
+ # Chestnut: #CD5C5C
74
+ CHESTNUT = RGB.new(0.803921568627451, 0.36078431372549, 0.36078431372549)
75
+ # Chocolate: #D2691E
76
+ CHOCOLATE = RGB.new(0.823529411764706, 0.411764705882353, 0.117647058823529)
77
+ # Cinnamon: #7B3F00
78
+ CINNAMON = RGB.new(0.482352941176471, 0.247058823529412, 0.0)
79
+ # Cobalt: #0047AB
80
+ COBALT = RGB.new(0.0, 0.27843137254902, 0.670588235294118)
81
+ # Copper: #B87333
82
+ COPPER = RGB.new(0.72156862745098, 0.450980392156863, 0.2)
83
+ # Copper rose: #996666
84
+ COPPER_ROSE = RGB.new(0.6, 0.4, 0.4)
85
+ # Coral: #FF7F50
86
+ CORAL = RGB.new(1.0, 0.498039215686275, 0.313725490196078)
87
+ # Coral Red: #FF4040
88
+ CORAL_RED = RGB.new(1.0, 0.250980392156863, 0.250980392156863)
89
+ # Corn: #FBEC5D
90
+ CORN = RGB.new(0.984313725490196, 0.925490196078431, 0.364705882352941)
91
+ # Cornflower blue: #6495ED
92
+ CORNFLOWER_BLUE = RGB.new(0.392156862745098, 0.584313725490196, 0.929411764705882)
93
+ # Cream: #FFFDD0
94
+ CREAM = RGB.new(1.0, 0.992156862745098, 0.815686274509804)
95
+ # Crimson: #DC143C
96
+ CRIMSON = RGB.new(0.862745098039216, 0.0784313725490196, 0.235294117647059)
97
+ # Cyan: #00FFFF
98
+ CYAN = RGB.new(0.0, 1.0, 1.0)
99
+ # Dark blue: #0000C8
100
+ DARK_BLUE = RGB.new(0.0, 0.0, 0.545098039215686)
101
+ # Denim: #1560BD
102
+ DENIM = RGB.new(0.0823529411764706, 0.376470588235294, 0.741176470588235)
103
+ # Dodger blue: #1E90FF
104
+ DODGER_BLUE = RGB.new(0.117647058823529, 0.564705882352941, 1.0)
105
+ # Emerald: #50C878
106
+ EMERALD = RGB.new(0.313725490196078, 0.784313725490196, 0.470588235294118)
107
+ # Eggplant: #990066
108
+ EGGPLANT = RGB.new(0.6, 0.0, 0.4)
109
+ # Falu red: #801818
110
+ FALU_RED = RGB.new(0.501960784313725, 0.0941176470588235, 0.0941176470588235)
111
+ # Fern green: #4F7942
112
+ FERN_GREEN = RGB.new(0.309803921568627, 0.474509803921569, 0.258823529411765)
113
+ # Flax: #EEDC82
114
+ FLAX = RGB.new(0.933333333333333, 0.862745098039216, 0.509803921568627)
115
+ # Forest green: #228B22
116
+ FOREST_GREEN = RGB.new(0.133333333333333, 0.545098039215686, 0.133333333333333)
117
+ # French Rose: #F64A8A
118
+ FRENCH_ROSE = RGB.new(0.964705882352941, 0.290196078431373, 0.541176470588235)
119
+ # Fuchsia: #FF00FF
120
+ FUCHSIA = RGB.new(1.0, 0.0, 1.0)
121
+ # Gamboge: #E49B0F
122
+ GAMBOGE = RGB.new(0.894117647058824, 0.607843137254902, 0.0588235294117647)
123
+ # Gold: #FFD700
124
+ GOLD = RGB.new(1.0, 0.843137254901961, 0.0)
125
+ # Goldenrod: #DAA520
126
+ GOLDENROD = RGB.new(0.854901960784314, 0.647058823529412, 0.125490196078431)
127
+ # Gray: #808080
128
+ GRAY = RGB.new(0.501960784313725, 0.501960784313725, 0.501960784313725)
129
+ # Gray-asparagus: #465945
130
+ GRAY_ASPARAGUS = RGB.new(0.274509803921569, 0.349019607843137, 0.270588235294118)
131
+ # Green: #00FF00
132
+ GREEN = RGB.new(0.0, 1.0, 0.0)
133
+ # Green-yellow: #ADFF2F
134
+ GREEN_YELLOW = RGB.new(0.67843137254902, 1.0, 0.184313725490196)
135
+ # Harlequin: #3FFF00
136
+ HARLEQUIN = RGB.new(0.247058823529412, 1.0, 0.0)
137
+ # Heliotrope: #DF73FF
138
+ HELIOTROPE = RGB.new(0.874509803921569, 0.450980392156863, 1.0)
139
+ # Hollywood Cerise: #F400A1
140
+ HOLLYWOOD_CERISE = RGB.new(0.956862745098039, 0.0, 0.631372549019608)
141
+ # Hot Magenta: #FF00CC
142
+ HOT_MAGENTA = RGB.new(1.0, 0.0, 0.8)
143
+ # Hot Pink: #FF69B4
144
+ HOT_PINK = RGB.new(1.0, 0.411764705882353, 0.705882352941177)
145
+ # Indigo: #4B0082
146
+ INDIGO = RGB.new(0.294117647058824, 0.0, 0.509803921568627)
147
+ # International Klein Blue: #002FA7
148
+ INTERNATIONAL_KLEIN_BLUE = RGB.new(0.0, 0.184313725490196, 0.654901960784314)
149
+ # International orange: #FF4F00
150
+ INTERNATIONAL_ORANGE = RGB.new(1.0, 0.309803921568627, 0.0)
151
+ # Ivory: #FFFFF0
152
+ IVORY = RGB.new(1.0, 1.0, 0.941176470588235)
153
+ # Jade: #00A86B
154
+ JADE = RGB.new(0.0, 0.658823529411765, 0.419607843137255)
155
+ # Khaki: #C3B091
156
+ KHAKI = RGB.new(0.764705882352941, 0.690196078431373, 0.568627450980392)
157
+ # Khaki (X11): #F0E68C
158
+ KHAKI_X11 = RGB.new(0.941176470588235, 0.901960784313726, 0.549019607843137)
159
+ # Lavender: #B57EDC
160
+ LAVENDER = RGB.new(0.709803921568627, 0.494117647058824, 0.862745098039216)
161
+ # Lavender blue: #CCCCFF
162
+ LAVENDER_BLUE = RGB.new(0.8, 0.8, 1.0)
163
+ # Lavender blush: #FFF0F5
164
+ LAVENDER_BLUSH = RGB.new(1.0, 0.941176470588235, 0.96078431372549)
165
+ # Lavender gray: #BDBBD7
166
+ LAVENDER_GRAY = RGB.new(0.741176470588235, 0.733333333333333, 0.843137254901961)
167
+ # Lavender pink: #FBAED2
168
+ LAVENDER_PINK = RGB.new(0.984313725490196, 0.682352941176471, 0.823529411764706)
169
+ # Lavender rose: #FBA0E3
170
+ LAVENDER_ROSE = RGB.new(0.984313725490196, 0.627450980392157, 0.890196078431372)
171
+ # Lemon: #FDE910
172
+ LEMON = RGB.new(0.992156862745098, 0.913725490196078, 0.0627450980392157)
173
+ # Lemon chiffon: #FFFACD
174
+ LEMON_CHIFFON = RGB.new(1.0, 0.980392156862745, 0.803921568627451)
175
+ # Lilac: #C8A2C8
176
+ LILAC = RGB.new(0.784313725490196, 0.635294117647059, 0.784313725490196)
177
+ # Lime: #BFFF00
178
+ LIME = RGB.new(0.749019607843137, 1.0, 0.0)
179
+ # Linen: #FAF0E6
180
+ LINEN = RGB.new(0.980392156862745, 0.941176470588235, 0.901960784313726)
181
+ # Magenta: #FF00FF
182
+ MAGENTA = RGB.new(1.0, 0.0, 1.0)
183
+ # Malachite: #0BDA51
184
+ MALACHITE = RGB.new(0.0431372549019608, 0.854901960784314, 0.317647058823529)
185
+ # Maroon: #800000
186
+ MAROON = RGB.new(0.501960784313725, 0.0, 0.0)
187
+ # Mauve: #E0B0FF
188
+ MAUVE = RGB.new(0.87843137254902, 0.690196078431373, 1.0)
189
+ # Medium carmine: #AF4035
190
+ MEDIUM_CARMINE = RGB.new(0.686274509803922, 0.250980392156863, 0.207843137254902)
191
+ # Medium Lavender: #EE82EE
192
+ MEDIUM_LAVENDER = RGB.new(0.933333333333333, 0.509803921568627, 0.933333333333333)
193
+ # Medium Purple: #9370DB
194
+ MEDIUM_PURPLE = RGB.new(0.576470588235294, 0.43921568627451, 0.858823529411765)
195
+ # Midnight Blue: #003366
196
+ MIDNIGHT_BLUE = RGB.new(0.0, 0.2, 0.4)
197
+ # Mint Green: #98FF98
198
+ MINT_GREEN = RGB.new(0.596078431372549, 1.0, 0.596078431372549)
199
+ # Moss green: #ADDFAD
200
+ MOSS_GREEN = RGB.new(0.67843137254902, 0.874509803921569, 0.67843137254902)
201
+ # Mountbatten pink: #997A8D
202
+ MOUNTBATTEN_PINK = RGB.new(0.6, 0.47843137254902, 0.552941176470588)
203
+ # Mustard: #FFDB58
204
+ MUSTARD = RGB.new(1.0, 0.858823529411765, 0.345098039215686)
205
+ # Navajo white: #FFDEAD
206
+ NAVAJO_WHITE = RGB.new(1.0, 0.870588235294118, 0.67843137254902)
207
+ # Navy Blue: #000080
208
+ NAVY_BLUE = RGB.new(0.0, 0.0, 0.501960784313725)
209
+ # Ochre: #CC7722
210
+ OCHRE = RGB.new(0.8, 0.466666666666667, 0.133333333333333)
211
+ # Old Gold: #CFB53B
212
+ OLD_GOLD = RGB.new(0.811764705882353, 0.709803921568627, 0.231372549019608)
213
+ # Old Lace: #FDF5E6
214
+ OLD_LACE = RGB.new(0.992156862745098, 0.96078431372549, 0.901960784313726)
215
+ # Old Lavender: #796878
216
+ OLD_LAVENDER = RGB.new(0.474509803921569, 0.407843137254902, 0.470588235294118)
217
+ # Old Rose: #C08081
218
+ OLD_ROSE = RGB.new(0.752941176470588, 0.501960784313725, 0.505882352941176)
219
+ # Olive: #808000
220
+ OLIVE = RGB.new(0.501960784313725, 0.501960784313725, 0.0)
221
+ # Olive Drab: #6B8E23
222
+ OLIVE_DRAB = RGB.new(0.419607843137255, 0.556862745098039, 0.137254901960784)
223
+ # Orange (color wheel): #FF7500
224
+ ORANGE_COLOR_WHEEL = RGB.new(1.0, 0.498039215686275, 0.0)
225
+ ORANGE = ORANGE_COLOR_WHEEL
226
+ # Orange (web): #FFA500
227
+ ORANGE_WEB = RGB.new(1.0, 0.647058823529412, 0.0)
228
+ # Orange Peel: #FFA000
229
+ ORANGE_PEEL = RGB.new(1.0, 0.627450980392157, 0.0)
230
+ # Orchid: #DA70D6
231
+ ORCHID = RGB.new(0.854901960784314, 0.43921568627451, 0.83921568627451)
232
+ # Papaya whip: #FFEFD5
233
+ PAPAYA_WHIP = RGB.new(1.0, 0.937254901960784, 0.835294117647059)
234
+ # Pastel green: #77DD77
235
+ PASTEL_GREEN = RGB.new(0.466666666666667, 0.866666666666667, 0.466666666666667)
236
+ # Pastel pink: #FFD1DC
237
+ PASTEL_PINK = RGB.new(1.0, 0.819607843137255, 0.862745098039216)
238
+ # Peach: #FFE5B4
239
+ PEACH = RGB.new(1.0, 0.898039215686275, 0.705882352941177)
240
+ # Peach-orange: #FFCC99
241
+ PEACH_ORANGE = RGB.new(1.0, 0.8, 0.6)
242
+ # Peach-yellow: #FADFAD
243
+ PEACH_YELLOW = RGB.new(0.980392156862745, 0.874509803921569, 0.67843137254902)
244
+ # Pear: #D1E231
245
+ PEAR = RGB.new(0.819607843137255, 0.886274509803922, 0.192156862745098)
246
+ # Periwinkle: #CCCCFF
247
+ PERIWINKLE = RGB.new(0.8, 0.8, 1.0)
248
+ # Persian blue: #1C39BB
249
+ PERSIAN_BLUE = RGB.new(0.109803921568627, 0.223529411764706, 0.733333333333333)
250
+ # Persian green: #00A693
251
+ PERSIAN_GREEN = RGB.new(0.0, 0.650980392156863, 0.576470588235294)
252
+ # Persian indigo: #32127A
253
+ PERSIAN_INDIGO = RGB.new(0.196078431372549, 0.0705882352941176, 0.47843137254902)
254
+ # Persian pink: #F77FBE
255
+ PERSIAN_PINK = RGB.new(0.968627450980392, 0.498039215686275, 0.745098039215686)
256
+ # Persian red: #CC3333
257
+ PERSIAN_RED = RGB.new(0.8, 0.2, 0.2)
258
+ # Persian rose: #FF1CB1
259
+ PERSIAN_ROSE = RGB.new(1.0, 0.109803921568627, 0.694117647058824)
260
+ # Pine Green: #01796F
261
+ PINE_GREEN = RGB.new(0.00392156862745098, 0.474509803921569, 0.435294117647059)
262
+ # Pink: #FFC0CB
263
+ PINK = RGB.new(1.0, 0.752941176470588, 0.796078431372549)
264
+ # Pink-orange: #FF9966
265
+ PINK_ORANGE = RGB.new(1.0, 0.6, 0.4)
266
+ # Pomegranate: #F34723
267
+ POMEGRANATE = RGB.new(0.952941176470588, 0.27843137254902, 0.137254901960784)
268
+ # Powder blue (web): #B0E0E6
269
+ POWDER_BLUE_WEB = RGB.new(0.690196078431373, 0.87843137254902, 0.901960784313726)
270
+ # Puce: #CC8899
271
+ PUCE = RGB.new(0.8, 0.533333333333333, 0.6)
272
+ # Prussian blue: #003153
273
+ PRUSSIAN_BLUE = RGB.new(0.0, 0.192156862745098, 0.325490196078431)
274
+ # Pumpkin: #FF7518
275
+ PUMPKIN = RGB.new(1.0, 0.458823529411765, 0.0941176470588235)
276
+ # Purple: #660099
277
+ PURPLE = RGB.new(0.4, 0.0, 0.6)
278
+ # Raw umber: #734A12
279
+ RAW_UMBER = RGB.new(0.450980392156863, 0.290196078431373, 0.0705882352941176)
280
+ # Red: #FF0000
281
+ RED = RGB.new(1.0, 0.0, 0.0)
282
+ # Red-violet: #C71585
283
+ RED_VIOLET = RGB.new(0.780392156862745, 0.0823529411764706, 0.52156862745098)
284
+ # Robin egg blue: #00CCCC
285
+ ROBIN_EGG_BLUE = RGB.new(0.0, 0.8, 0.8)
286
+ # Rose: #FF007F
287
+ ROSE = RGB.new(1.0, 0.0, 0.498039215686275)
288
+ # Royal Blue: #4169E1
289
+ ROYAL_BLUE = RGB.new(0.254901960784314, 0.411764705882353, 0.882352941176471)
290
+ # Russet: #80461B
291
+ RUSSET = RGB.new(0.501960784313725, 0.274509803921569, 0.105882352941176)
292
+ # Rust: #B7410E
293
+ RUST = RGB.new(0.717647058823529, 0.254901960784314, 0.0549019607843137)
294
+ # Safety Orange (Blaze Orange): #FF6600
295
+ SAFETY_ORANGE = RGB.new(1.0, 0.4, 0.0)
296
+ BLAZE_ORANGE = SAFETY_ORANGE
297
+ # Saffron: #F4C430
298
+ SAFFRON = RGB.new(0.956862745098039, 0.768627450980392, 0.188235294117647)
299
+ # Sapphire: #082567
300
+ SAPPHIRE = RGB.new(0.0313725490196078, 0.145098039215686, 0.403921568627451)
301
+ # Salmon: #FF8C69
302
+ SALMON = RGB.new(1.0, 0.549019607843137, 0.411764705882353)
303
+ # Sandy brown: #F4A460
304
+ SANDY_BROWN = RGB.new(0.956862745098039, 0.643137254901961, 0.376470588235294)
305
+ # Sangria: #92000A
306
+ SANGRIA = RGB.new(0.572549019607843, 0.0, 0.0392156862745098)
307
+ # Scarlet: #FF2400
308
+ SCARLET = RGB.new(1.0, 0.141176470588235, 0.0)
309
+ # School bus yellow: #FFD800
310
+ SCHOOL_BUS_YELLOW = RGB.new(1.0, 0.847058823529412, 0.0)
311
+ # Sea Green: #2E8B57
312
+ SEA_GREEN = RGB.new(0.180392156862745, 0.545098039215686, 0.341176470588235)
313
+ # Seashell: #FFF5EE
314
+ SEASHELL = RGB.new(1.0, 0.96078431372549, 0.933333333333333)
315
+ # Selective yellow: #FFBA00
316
+ SELECTIVE_YELLOW = RGB.new(1.0, 0.729411764705882, 0.0)
317
+ # Sepia: #704214
318
+ SEPIA = RGB.new(0.43921568627451, 0.258823529411765, 0.0784313725490196)
319
+ # Shocking Pink: #FC0FC0
320
+ SHOCKING_PINK = RGB.new(0.988235294117647, 0.0588235294117647, 0.752941176470588)
321
+ # Silver: #C0C0C0
322
+ SILVER = RGB.new(0.752941176470588, 0.752941176470588, 0.752941176470588)
323
+ # Slate gray: #708090
324
+ SLATE_GRAY = RGB.new(0.43921568627451, 0.501960784313725, 0.564705882352941)
325
+ # Smalt (Dark powder blue): #003399
326
+ SMALT = RGB.new(0.0, 0.2, 0.6)
327
+ DARK_POWDER_BLUE = SMALT
328
+ # Spring Green: #00FF7F
329
+ SPRING_GREEN = RGB.new(0.0, 1.0, 0.498039215686275)
330
+ # Steel blue: #4682B4
331
+ STEEL_BLUE = RGB.new(0.274509803921569, 0.509803921568627, 0.705882352941177)
332
+ # Swamp green: #ACB78E
333
+ SWAMP_GREEN = RGB.new(0.674509803921569, 0.717647058823529, 0.556862745098039)
334
+ # Tan: #D2B48C
335
+ TAN = RGB.new(0.823529411764706, 0.705882352941177, 0.549019607843137)
336
+ # Tangerine: #FFCC00
337
+ TANGERINE = RGB.new(1.0, 0.8, 0.0)
338
+ # Taupe: #483C32
339
+ TAUPE = RGB.new(0.282352941176471, 0.235294117647059, 0.196078431372549)
340
+ # Tea Green: #D0F0C0
341
+ TEA_GREEN = RGB.new(0.815686274509804, 0.941176470588235, 0.752941176470588)
342
+ # Teal: #008080
343
+ TEAL = RGB.new(0.0, 0.501960784313725, 0.501960784313725)
344
+ # Tenn&eacute; (Tawny): #CD5700
345
+ TENNE = RGB.new(0.803921568627451, 0.341176470588235, 0.0)
346
+ TAWNY = TENNE
347
+ # Terra cotta: #E2725B
348
+ TERRA_COTTA = RGB.new(0.886274509803922, 0.447058823529412, 0.356862745098039)
349
+ # Thistle: #D8BFD8
350
+ THISTLE = RGB.new(0.847058823529412, 0.749019607843137, 0.847058823529412)
351
+ # Turquoise: #30D5C8
352
+ TURQUOISE = RGB.new(0.188235294117647, 0.835294117647059, 0.784313725490196)
353
+ # Ultramarine: #120A8F
354
+ ULTRAMARINE = RGB.new(0.0705882352941176, 0.0392156862745098, 0.56078431372549)
355
+ # Vermilion: #FF4D00
356
+ VERMILION = RGB.new(1.0, 0.301960784313725, 0.0)
357
+ # Violet: #8B00FF
358
+ VIOLET = RGB.new(0.545098039215686, 0.0, 1.0)
359
+ # Violet-eggplant: #991199
360
+ VIOLET_EGGPLANT = RGB.new(0.6, 0.0666666666666667, 0.6)
361
+ # Viridian: #40826D
362
+ VIRIDIAN = RGB.new(0.250980392156863, 0.509803921568627, 0.427450980392157)
363
+ # Wheat: #F5DEB3
364
+ WHEAT = RGB.new(0.96078431372549, 0.870588235294118, 0.701960784313725)
365
+ # White: #FFFFFF
366
+ WHITE = RGB.new(1.0, 1.0, 1.0)
367
+ # Wisteria: #C9A0DC
368
+ WISTERIA = RGB.new(0.788235294117647, 0.627450980392157, 0.862745098039216)
369
+ # Yellow: #FFFF00
370
+ YELLOW = RGB.new(1.0, 1.0, 0.0)
371
+ # Zinnwaldite: #EBC2AF
372
+ ZINNWALDITE = RGB.new(0.92156862745098, 0.76078431372549, 0.686274509803922)
373
+ module X11
374
+ # Gray: #BEBEBE
375
+ GRAY = RGB.new(0.745098039215686, 0.745098039215686, 0.745098039215686)
376
+ # Green: #00FF00
377
+ GREEN = RGB.new(0.0, 1.0, 0.0)
378
+ # Maroon: #B03060
379
+ MAROON = RGB.new(0.690196078431373, 0.188235294117647, 0.376470588235294)
380
+ # Purple: #A020F0
381
+ PURPLE = RGB.new(0.627450980392157, 0.125490196078431, 0.941176470588235)
382
+ # Alice Blue: #F0F8FF
383
+ ALICE_BLUE = RGB.new(0.941176470588235, 0.972549019607843, 1.0)
384
+ # Antique White: #FAEBD7
385
+ ANTIQUE_WHITE = RGB.new(0.980392156862745, 0.92156862745098, 0.843137254901961)
386
+ # Aqua: #00FFFF
387
+ AQUA = RGB.new(0.0, 1.0, 1.0)
388
+ # Aquamarine: #7FFFD4
389
+ AQUAMARINE = RGB.new(0.498039215686275, 1.0, 0.831372549019608)
390
+ # Azure: #F0FFFF
391
+ AZURE = RGB.new(0.941176470588235, 1.0, 1.0)
392
+ # Beige: #F5F5DC
393
+ BEIGE = RGB.new(0.96078431372549, 0.96078431372549, 0.862745098039216)
394
+ # Bisque: #FFE4C4
395
+ BISQUE = RGB.new(1.0, 0.894117647058824, 0.768627450980392)
396
+ # Black: #000000
397
+ BLACK = RGB.new(0.0, 0.0, 0.0)
398
+ # Blanched Almond: #FFEBCD
399
+ BLANCHED_ALMOND = RGB.new(1.0, 0.92156862745098, 0.803921568627451)
400
+ # Blue: #0000FF
401
+ BLUE = RGB.new(0.0, 0.0, 1.0)
402
+ # Blue Violet: #8A2BE2
403
+ BLUE_VIOLET = RGB.new(0.541176470588235, 0.168627450980392, 0.886274509803922)
404
+ # Brown: #A52A2A
405
+ BROWN = RGB.new(0.647058823529412, 0.164705882352941, 0.164705882352941)
406
+ # Burly Wood: #DEB887
407
+ BURLY_WOOD = RGB.new(0.870588235294118, 0.72156862745098, 0.529411764705882)
408
+ # Cadet Blue: #5F9EA0
409
+ CADET_BLUE = RGB.new(0.372549019607843, 0.619607843137255, 0.627450980392157)
410
+ # Chartreuse: #7FFF00
411
+ CHARTREUSE = RGB.new(0.498039215686275, 1.0, 0.0)
412
+ # Chocolate: #D2691E
413
+ CHOCOLATE = RGB.new(0.823529411764706, 0.411764705882353, 0.117647058823529)
414
+ # Coral: #FF7F50
415
+ CORAL = RGB.new(1.0, 0.498039215686275, 0.313725490196078)
416
+ # Cornflower Blue: #6495ED
417
+ CORNFLOWER_BLUE = RGB.new(0.392156862745098, 0.584313725490196, 0.929411764705882)
418
+ # Cornsilk: #FFF8DC
419
+ CORNSILK = RGB.new(1.0, 0.972549019607843, 0.862745098039216)
420
+ # Crimson: #DC143C
421
+ CRIMSON = RGB.new(0.862745098039216, 0.0784313725490196, 0.235294117647059)
422
+ # Cyan: #00FFFF
423
+ CYAN = RGB.new(0.0, 1.0, 1.0)
424
+ # Dark Blue: #00008B
425
+ DARK_BLUE = RGB.new(0.0, 0.0, 0.545098039215686)
426
+ # Dark Cyan: #008B8B
427
+ DARK_CYAN = RGB.new(0.0, 0.545098039215686, 0.545098039215686)
428
+ # Dark Goldenrod: #B8860B
429
+ DARK_GOLDENROD = RGB.new(0.72156862745098, 0.525490196078431, 0.0431372549019608)
430
+ # Dark Gray: #A9A9A9
431
+ DARK_GRAY = RGB.new(0.662745098039216, 0.662745098039216, 0.662745098039216)
432
+ # Dark Green: #006400
433
+ DARK_GREEN = RGB.new(0.0, 0.392156862745098, 0.0)
434
+ # Dark Khaki: #BDB76B
435
+ DARK_KHAKI = RGB.new(0.741176470588235, 0.717647058823529, 0.419607843137255)
436
+ # Dark Magenta: #8B008B
437
+ DARK_MAGENTA = RGB.new(0.545098039215686, 0.0, 0.545098039215686)
438
+ # Dark Olive Green: #556B2F
439
+ DARK_OLIVE_GREEN = RGB.new(0.333333333333333, 0.419607843137255, 0.184313725490196)
440
+ # Dark Orange: #FF8C00
441
+ DARK_ORANGE = RGB.new(1.0, 0.549019607843137, 0.0)
442
+ # Dark Orchid: #9932CC
443
+ DARK_ORCHID = RGB.new(0.6, 0.196078431372549, 0.8)
444
+ # Dark Red: #8B0000
445
+ DARK_RED = RGB.new(0.545098039215686, 0.0, 0.0)
446
+ # Dark Salmon: #E9967A
447
+ DARK_SALMON = RGB.new(0.913725490196078, 0.588235294117647, 0.47843137254902)
448
+ # Dark Sea Green: #8FBC8F
449
+ DARK_SEA_GREEN = RGB.new(0.56078431372549, 0.737254901960784, 0.56078431372549)
450
+ # Dark Slate Blue: #483D8B
451
+ DARK_SLATE_BLUE = RGB.new(0.282352941176471, 0.23921568627451, 0.545098039215686)
452
+ # Dark Slate Gray: #2F4F4F
453
+ DARK_SLATE_GRAY = RGB.new(0.184313725490196, 0.309803921568627, 0.309803921568627)
454
+ # Dark Turquoise: #00CED1
455
+ DARK_TURQUOISE = RGB.new(0.0, 0.807843137254902, 0.819607843137255)
456
+ # Dark Violet: #9400D3
457
+ DARK_VIOLET = RGB.new(0.580392156862745, 0.0, 0.827450980392157)
458
+ # Deep Pink: #FF1493
459
+ DEEP_PINK = RGB.new(1.0, 0.0784313725490196, 0.576470588235294)
460
+ # Deep Sky Blue: #00BFFF
461
+ DEEP_SKY_BLUE = RGB.new(0.0, 0.749019607843137, 1.0)
462
+ # Dim Gray: #696969
463
+ DIM_GRAY = RGB.new(0.411764705882353, 0.411764705882353, 0.411764705882353)
464
+ # Dodger Blue: #1E90FF
465
+ DODGER_BLUE = RGB.new(0.117647058823529, 0.564705882352941, 1.0)
466
+ # Fire Brick: #B22222
467
+ FIRE_BRICK = RGB.new(0.698039215686274, 0.133333333333333, 0.133333333333333)
468
+ # Floral White: #FFFAF0
469
+ FLORAL_WHITE = RGB.new(1.0, 0.980392156862745, 0.941176470588235)
470
+ # Forest Green: #228B22
471
+ FOREST_GREEN = RGB.new(0.133333333333333, 0.545098039215686, 0.133333333333333)
472
+ # Fuchsia: #FF00FF
473
+ FUCHSIA = RGB.new(1.0, 0.0, 1.0)
474
+ # Gainsboro: #DCDCDC
475
+ GAINSBORO = RGB.new(0.862745098039216, 0.862745098039216, 0.862745098039216)
476
+ # Ghost White: #F8F8FF
477
+ GHOST_WHITE = RGB.new(0.972549019607843, 0.972549019607843, 1.0)
478
+ # Gold: #FFD700
479
+ GOLD = RGB.new(1.0, 0.843137254901961, 0.0)
480
+ # Goldenrod: #DAA520
481
+ GOLDENROD = RGB.new(0.854901960784314, 0.647058823529412, 0.125490196078431)
482
+ # Green Yellow: #ADFF2F
483
+ GREEN_YELLOW = RGB.new(0.67843137254902, 1.0, 0.184313725490196)
484
+ # Honeydew: #F0FFF0
485
+ HONEYDEW = RGB.new(0.941176470588235, 1.0, 0.941176470588235)
486
+ # Hot Pink: #FF69B4
487
+ HOT_PINK = RGB.new(1.0, 0.411764705882353, 0.705882352941177)
488
+ # Indian Red: #CD5C5C
489
+ INDIAN_RED = RGB.new(0.803921568627451, 0.36078431372549, 0.36078431372549)
490
+ # Indigo: #4B0082
491
+ INDIGO = RGB.new(0.294117647058824, 0.0, 0.509803921568627)
492
+ # Ivory: #FFFFF0
493
+ IVORY = RGB.new(1.0, 1.0, 0.941176470588235)
494
+ # Khaki: #F0E68C
495
+ KHAKI = RGB.new(0.941176470588235, 0.901960784313726, 0.549019607843137)
496
+ # Lavender: #E6E6FA
497
+ LAVENDER = RGB.new(0.901960784313726, 0.901960784313726, 0.980392156862745)
498
+ # Lavender Blush: #FFF0F5
499
+ LAVENDER_BLUSH = RGB.new(1.0, 0.941176470588235, 0.96078431372549)
500
+ # Lawn Green: #7CFC00
501
+ LAWN_GREEN = RGB.new(0.486274509803922, 0.988235294117647, 0.0)
502
+ # Lemon Chiffon: #FFFACD
503
+ LEMON_CHIFFON = RGB.new(1.0, 0.980392156862745, 0.803921568627451)
504
+ # Light Blue: #ADD8E6
505
+ LIGHT_BLUE = RGB.new(0.67843137254902, 0.847058823529412, 0.901960784313726)
506
+ # Light Coral: #F08080
507
+ LIGHT_CORAL = RGB.new(0.941176470588235, 0.501960784313725, 0.501960784313725)
508
+ # Light Cyan: #E0FFFF
509
+ LIGHT_CYAN = RGB.new(0.87843137254902, 1.0, 1.0)
510
+ # Light Goldenrod Yellow: #FAFAD2
511
+ LIGHT_GOLDENROD_YELLOW = RGB.new(0.980392156862745, 0.980392156862745, 0.823529411764706)
512
+ # Light Green: #90EE90
513
+ LIGHT_GREEN = RGB.new(0.564705882352941, 0.933333333333333, 0.564705882352941)
514
+ # Light Grey: #D3D3D3
515
+ LIGHT_GREY = RGB.new(0.827450980392157, 0.827450980392157, 0.827450980392157)
516
+ # Light Pink: #FFB6C1
517
+ LIGHT_PINK = RGB.new(1.0, 0.713725490196078, 0.756862745098039)
518
+ # Light Salmon: #FFA07A
519
+ LIGHT_SALMON = RGB.new(1.0, 0.627450980392157, 0.47843137254902)
520
+ # Light Sea Green: #20B2AA
521
+ LIGHT_SEA_GREEN = RGB.new(0.125490196078431, 0.698039215686274, 0.666666666666667)
522
+ # Light Sky Blue: #87CEFA
523
+ LIGHT_SKY_BLUE = RGB.new(0.529411764705882, 0.807843137254902, 0.980392156862745)
524
+ # Light Slate Gray: #778899
525
+ LIGHT_SLATE_GRAY = RGB.new(0.466666666666667, 0.533333333333333, 0.6)
526
+ # Light Steel Blue: #B0C4DE
527
+ LIGHT_STEEL_BLUE = RGB.new(0.690196078431373, 0.768627450980392, 0.870588235294118)
528
+ # Light Yellow: #FFFFE0
529
+ LIGHT_YELLOW = RGB.new(1.0, 1.0, 0.87843137254902)
530
+ # Lime: #00FF00
531
+ LIME = RGB.new(0.0, 1.0, 0.0)
532
+ # Lime Green: #32CD32
533
+ LIME_GREEN = RGB.new(0.196078431372549, 0.803921568627451, 0.196078431372549)
534
+ # Linen: #FAF0E6
535
+ LINEN = RGB.new(0.980392156862745, 0.941176470588235, 0.901960784313726)
536
+ # Magenta: #FF00FF
537
+ MAGENTA = RGB.new(1.0, 0.0, 1.0)
538
+ # Medium Aquamarine: #66CDAA
539
+ MEDIUM_AQUAMARINE = RGB.new(0.4, 0.803921568627451, 0.666666666666667)
540
+ # Medium Blue: #0000CD
541
+ MEDIUM_BLUE = RGB.new(0.0, 0.0, 0.803921568627451)
542
+ # Medium Orchid: #BA55D3
543
+ MEDIUM_ORCHID = RGB.new(0.729411764705882, 0.333333333333333, 0.827450980392157)
544
+ # Medium Purple: #9370DB
545
+ MEDIUM_PURPLE = RGB.new(0.576470588235294, 0.43921568627451, 0.858823529411765)
546
+ # Medium Sea Green: #3CB371
547
+ MEDIUM_SEA_GREEN = RGB.new(0.235294117647059, 0.701960784313725, 0.443137254901961)
548
+ # Medium Slate Blue: #7B68EE
549
+ MEDIUM_SLATE_BLUE = RGB.new(0.482352941176471, 0.407843137254902, 0.933333333333333)
550
+ # Medium Spring Green: #00FA9A
551
+ MEDIUM_SPRING_GREEN = RGB.new(0.0, 0.980392156862745, 0.603921568627451)
552
+ # Medium Turquoise: #48D1CC
553
+ MEDIUM_TURQUOISE = RGB.new(0.282352941176471, 0.819607843137255, 0.8)
554
+ # Medium Violet Red: #C71585
555
+ MEDIUM_VIOLET_RED = RGB.new(0.780392156862745, 0.0823529411764706, 0.52156862745098)
556
+ # Midnight Blue: #191970
557
+ MIDNIGHT_BLUE = RGB.new(0.0980392156862745, 0.0980392156862745, 0.43921568627451)
558
+ # Mint Cream: #F5FFFA
559
+ MINT_CREAM = RGB.new(0.96078431372549, 1.0, 0.980392156862745)
560
+ # Misty Rose: #FFE4E1
561
+ MISTY_ROSE = RGB.new(1.0, 0.894117647058824, 0.882352941176471)
562
+ # Moccasin: #FFE4B5
563
+ MOCCASIN = RGB.new(1.0, 0.894117647058824, 0.709803921568627)
564
+ # Navajo White: #FFDEAD
565
+ NAVAJO_WHITE = RGB.new(1.0, 0.870588235294118, 0.67843137254902)
566
+ # Old Lace: #FDF5E6
567
+ OLD_LACE = RGB.new(0.992156862745098, 0.96078431372549, 0.901960784313726)
568
+ # Olive: #808000
569
+ OLIVE = RGB.new(0.501960784313725, 0.501960784313725, 0.0)
570
+ # Olive Drab: #6B8E23
571
+ OLIVE_DRAB = RGB.new(0.419607843137255, 0.556862745098039, 0.137254901960784)
572
+ # Orange: #FFA500
573
+ ORANGE = RGB.new(1.0, 0.647058823529412, 0.0)
574
+ # Orange Red: #FF4500
575
+ ORANGE_RED = RGB.new(1.0, 0.270588235294118, 0.0)
576
+ # Orchid: #DA70D6
577
+ ORCHID = RGB.new(0.854901960784314, 0.43921568627451, 0.83921568627451)
578
+ # Pale Goldenrod: #EEE8AA
579
+ PALE_GOLDENROD = RGB.new(0.933333333333333, 0.909803921568627, 0.666666666666667)
580
+ # Pale Green: #98FB98
581
+ PALE_GREEN = RGB.new(0.596078431372549, 0.984313725490196, 0.596078431372549)
582
+ # Pale Turquoise: #AFEEEE
583
+ PALE_TURQUOISE = RGB.new(0.686274509803922, 0.933333333333333, 0.933333333333333)
584
+ # Pale Violet Red: #DB7093
585
+ PALE_VIOLET_RED = RGB.new(0.858823529411765, 0.43921568627451, 0.576470588235294)
586
+ # Papaya Whip: #FFEFD5
587
+ PAPAYA_WHIP = RGB.new(1.0, 0.937254901960784, 0.835294117647059)
588
+ # Peach Puff: #FFDAB9
589
+ PEACH_PUFF = RGB.new(1.0, 0.854901960784314, 0.725490196078431)
590
+ # Peru: #CD853F
591
+ PERU = RGB.new(0.803921568627451, 0.52156862745098, 0.247058823529412)
592
+ # Pink: #FFC0CB
593
+ PINK = RGB.new(1.0, 0.752941176470588, 0.796078431372549)
594
+ # Plum: #DDA0DD
595
+ PLUM = RGB.new(0.866666666666667, 0.627450980392157, 0.866666666666667)
596
+ # Powder Blue: #B0E0E6
597
+ POWDER_BLUE = RGB.new(0.690196078431373, 0.87843137254902, 0.901960784313726)
598
+ # Red: #FF0000
599
+ RED = RGB.new(1.0, 0.0, 0.0)
600
+ # Rosy Brown: #BC8F8F
601
+ ROSY_BROWN = RGB.new(0.737254901960784, 0.56078431372549, 0.56078431372549)
602
+ # Royal Blue: #4169E1
603
+ ROYAL_BLUE = RGB.new(0.254901960784314, 0.411764705882353, 0.882352941176471)
604
+ # Saddle Brown: #8B4513
605
+ SADDLE_BROWN = RGB.new(0.545098039215686, 0.270588235294118, 0.0745098039215686)
606
+ # Salmon: #FA8072
607
+ SALMON = RGB.new(0.980392156862745, 0.501960784313725, 0.447058823529412)
608
+ # Sandy Brown: #F4A460
609
+ SANDY_BROWN = RGB.new(0.956862745098039, 0.643137254901961, 0.376470588235294)
610
+ # Sea Green: #2E8B57
611
+ SEA_GREEN = RGB.new(0.180392156862745, 0.545098039215686, 0.341176470588235)
612
+ # Seashell: #FFF5EE
613
+ SEASHELL = RGB.new(1.0, 0.96078431372549, 0.933333333333333)
614
+ # Sienna: #A0522D
615
+ SIENNA = RGB.new(0.627450980392157, 0.32156862745098, 0.176470588235294)
616
+ # Silver: #C0C0C0
617
+ SILVER = RGB.new(0.752941176470588, 0.752941176470588, 0.752941176470588)
618
+ # Sky Blue: #87CEEB
619
+ SKY_BLUE = RGB.new(0.529411764705882, 0.807843137254902, 0.92156862745098)
620
+ # Slate Blue: #6A5ACD
621
+ SLATE_BLUE = RGB.new(0.415686274509804, 0.352941176470588, 0.803921568627451)
622
+ # Slate Gray: #708090
623
+ SLATE_GRAY = RGB.new(0.43921568627451, 0.501960784313725, 0.564705882352941)
624
+ # Snow: #FFFAFA
625
+ SNOW = RGB.new(1.0, 0.980392156862745, 0.980392156862745)
626
+ # Spring Green: #00FF7F
627
+ SPRING_GREEN = RGB.new(0.0, 1.0, 0.498039215686275)
628
+ # Steel Blue: #4682B4
629
+ STEEL_BLUE = RGB.new(0.274509803921569, 0.509803921568627, 0.705882352941177)
630
+ # Tan: #D2B48C
631
+ TAN = RGB.new(0.823529411764706, 0.705882352941177, 0.549019607843137)
632
+ # Teal: #008080
633
+ TEAL = RGB.new(0.0, 0.501960784313725, 0.501960784313725)
634
+ # Thistle: #D8BFD8
635
+ THISTLE = RGB.new(0.847058823529412, 0.749019607843137, 0.847058823529412)
636
+ # Tomato: #FF6347
637
+ TOMATO = RGB.new(1.0, 0.388235294117647, 0.27843137254902)
638
+ # Turquoise: #40E0D0
639
+ TURQUOISE = RGB.new(0.250980392156863, 0.87843137254902, 0.815686274509804)
640
+ # Violet: #EE82EE
641
+ VIOLET = RGB.new(0.933333333333333, 0.509803921568627, 0.933333333333333)
642
+ # Wheat: #F5DEB3
643
+ WHEAT = RGB.new(0.96078431372549, 0.870588235294118, 0.701960784313725)
644
+ # White: #FFFFFF
645
+ WHITE = RGB.new(1.0, 1.0, 1.0)
646
+ # White Smoke: #F5F5F5
647
+ WHITE_SMOKE = RGB.new(0.96078431372549, 0.96078431372549, 0.96078431372549)
648
+ # Yellow: #FFFF00
649
+ YELLOW = RGB.new(1.0, 1.0, 0.0)
650
+ # Yellow Green: #9ACD32
651
+ YELLOW_GREEN = RGB.new(0.603921568627451, 0.803921568627451, 0.196078431372549)
652
+ end
653
+ include X11
654
+
655
+ end
656
+ end