/Graphics-ColorNames-2.11/lib/Graphics/ColorNames/X.pm

# · Perl · 727 lines · 696 code · 25 blank · 6 comment · 0 complexity · e5e2a2e8f1d978bce222d3101434d948 MD5 · raw file

  1. package Graphics::ColorNames::X;
  2. =head1 NAME
  3. Graphics::ColorNames::X - X-Windows color names and equivalent RGB values
  4. =head1 SYNOPSIS
  5. require Graphics::ColorNames::X;
  6. $NameTable = Graphics::ColorNames::X->NamesRgbTable();
  7. $RgbBlack = $NameTable->{black};
  8. =head1 DESCRIPTION
  9. This module defines color names and their associated RGB values used in
  10. X-Windows (from the X-Windows C<rgb.txt> file).
  11. =head1 SEE ALSO
  12. L<Graphics::ColorNames>, rgb.txt
  13. =head1 AUTHOR
  14. Robert Rothenberg <rrwo at cpan.org>
  15. =head2 Acknowledgements
  16. Steve Pomeroy <steve_x at earthling.net> -- fixed the broken color definitions
  17. =head1 LICENSE
  18. Copyright (c) 2001-2008 Robert Rothenberg. All rights reserved.
  19. This program is free software; you can redistribute it and/or
  20. modify it under the same terms as Perl itself.
  21. =cut
  22. use strict;
  23. use warnings;
  24. our $VERSION = '2.11';
  25. #$VERSION = eval $VERSION;
  26. # Original name and colors (v1.01 and earlier) from Kevin J. Walsh,
  27. # http://eies.njit.edu/~walsh/rgb.html
  28. # Afterwards, XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp
  29. # Verified with Xorg: rgb.txt,v 1.3 2000/08/17 19:54:00 cpqbld Exp
  30. # Duplicate namesiwth spaces were removed in v2.10.
  31. sub NamesRgbTable() {
  32. use integer;
  33. return {
  34. "snow" => 0xfffafa,
  35. "ghostwhite" => 0xf8f8ff,
  36. "whitesmoke" => 0xf5f5f5,
  37. "gainsboro" => 0xdcdcdc,
  38. "floralwhite" => 0xfffaf0,
  39. "oldlace" => 0xfdf5e6,
  40. "linen" => 0xfaf0e6,
  41. "antiquewhite" => 0xfaebd7,
  42. "papayawhip" => 0xffefd5,
  43. "blanchedalmond" => 0xffebcd,
  44. "bisque" => 0xffe4c4,
  45. "peachpuff" => 0xffdab9,
  46. "navajowhite" => 0xffdead,
  47. "moccasin" => 0xffe4b5,
  48. "cornsilk" => 0xfff8dc,
  49. "ivory" => 0xfffff0,
  50. "lemonchiffon" => 0xfffacd,
  51. "seashell" => 0xfff5ee,
  52. "honeydew" => 0xf0fff0,
  53. "mintcream" => 0xf5fffa,
  54. "azure" => 0xf0ffff,
  55. "aliceblue" => 0xf0f8ff,
  56. "lavender" => 0xe6e6fa,
  57. "lavenderblush" => 0xfff0f5,
  58. "mistyrose" => 0xffe4e1,
  59. "white" => 0xffffff,
  60. "black" => 0x000000,
  61. "darkslategray" => 0x2f4f4f,
  62. "darkslategrey" => 0x2f4f4f,
  63. "dimgray" => 0x696969,
  64. "dimgrey" => 0x696969,
  65. "slategray" => 0x708090,
  66. "slategrey" => 0x708090,
  67. "lightslategray" => 0x778899,
  68. "lightslategrey" => 0x778899,
  69. "gray" => 0xbebebe,
  70. "grey" => 0xbebebe,
  71. "lightgrey" => 0xd3d3d3,
  72. "lightgray" => 0xd3d3d3,
  73. "midnightblue" => 0x191970,
  74. "navy" => 0x000080,
  75. "navyblue" => 0x000080,
  76. "cornflowerblue" => 0x6495ed,
  77. "darkslateblue" => 0x483d8b,
  78. "slateblue" => 0x6a5acd,
  79. "mediumslateblue" => 0x7b68ee,
  80. "lightslateblue" => 0x8470ff,
  81. "mediumblue" => 0x0000cd,
  82. "royalblue" => 0x4169e1,
  83. "blue" => 0x0000ff,
  84. "dodgerblue" => 0x1e90ff,
  85. "deepskyblue" => 0x00bfff,
  86. "skyblue" => 0x87ceeb,
  87. "lightskyblue" => 0x87cefa,
  88. "steelblue" => 0x4682b4,
  89. "lightsteelblue" => 0xb0c4de,
  90. "lightblue" => 0xadd8e6,
  91. "powderblue" => 0xb0e0e6,
  92. "paleturquoise" => 0xafeeee,
  93. "darkturquoise" => 0x00ced1,
  94. "mediumturquoise" => 0x48d1cc,
  95. "turquoise" => 0x40e0d0,
  96. "cyan" => 0x00ffff,
  97. "lightcyan" => 0xe0ffff,
  98. "cadetblue" => 0x5f9ea0,
  99. "mediumaquamarine" => 0x66cdaa,
  100. "aquamarine" => 0x7fffd4,
  101. "darkgreen" => 0x006400,
  102. "darkolivegreen" => 0x556b2f,
  103. "darkseagreen" => 0x8fbc8f,
  104. "seagreen" => 0x2e8b57,
  105. "mediumseagreen" => 0x3cb371,
  106. "lightseagreen" => 0x20b2aa,
  107. "palegreen" => 0x98fb98,
  108. "springgreen" => 0x00ff7f,
  109. "lawngreen" => 0x7cfc00,
  110. "green" => 0x00ff00,
  111. "chartreuse" => 0x7fff00,
  112. "mediumspringgreen" => 0x00fa9a,
  113. "greenyellow" => 0xadff2f,
  114. "limegreen" => 0x32cd32,
  115. "yellowgreen" => 0x9acd32,
  116. "forestgreen" => 0x228b22,
  117. "olivedrab" => 0x6b8e23,
  118. "darkkhaki" => 0xbdb76b,
  119. "khaki" => 0xf0e68c,
  120. "palegoldenrod" => 0xeee8aa,
  121. "lightgoldenrodyellow" => 0xfafad2,
  122. "lightyellow" => 0xffffe0,
  123. "yellow" => 0xffff00,
  124. "gold" => 0xffd700,
  125. "lightgoldenrod" => 0xeedd82,
  126. "goldenrod" => 0xdaa520,
  127. "darkgoldenrod" => 0xb8860b,
  128. "rosybrown" => 0xbc8f8f,
  129. "indianred" => 0xcd5c5c,
  130. "saddlebrown" => 0x8b4513,
  131. "sienna" => 0xa0522d,
  132. "peru" => 0xcd853f,
  133. "burlywood" => 0xdeb887,
  134. "beige" => 0xf5f5dc,
  135. "wheat" => 0xf5deb3,
  136. "sandybrown" => 0xf4a460,
  137. "tan" => 0xd2b48c,
  138. "chocolate" => 0xd2691e,
  139. "firebrick" => 0xb22222,
  140. "brown" => 0xa52a2a,
  141. "darksalmon" => 0xe9967a,
  142. "salmon" => 0xfa8072,
  143. "lightsalmon" => 0xffa07a,
  144. "orange" => 0xffa500,
  145. "darkorange" => 0xff8c00,
  146. "coral" => 0xff7f50,
  147. "lightcoral" => 0xf08080,
  148. "tomato" => 0xff6347,
  149. "orangered" => 0xff4500,
  150. "red" => 0xff0000,
  151. "hotpink" => 0xff69b4,
  152. "deeppink" => 0xff1493,
  153. "pink" => 0xffc0cb,
  154. "lightpink" => 0xffb6c1,
  155. "palevioletred" => 0xdb7093,
  156. "maroon" => 0xb03060,
  157. "mediumvioletred" => 0xc71585,
  158. "violetred" => 0xd02090,
  159. "magenta" => 0xff00ff,
  160. "violet" => 0xee82ee,
  161. "plum" => 0xdda0dd,
  162. "orchid" => 0xda70d6,
  163. "mediumorchid" => 0xba55d3,
  164. "darkorchid" => 0x9932cc,
  165. "darkviolet" => 0x9400d3,
  166. "blueviolet" => 0x8a2be2,
  167. "purple" => 0xa020f0,
  168. "mediumpurple" => 0x9370db,
  169. "thistle" => 0xd8bfd8,
  170. "snow1" => 0xfffafa,
  171. "snow2" => 0xeee9e9,
  172. "snow3" => 0xcdc9c9,
  173. "snow4" => 0x8b8989,
  174. "seashell1" => 0xfff5ee,
  175. "seashell2" => 0xeee5de,
  176. "seashell3" => 0xcdc5bf,
  177. "seashell4" => 0x8b8682,
  178. "antiquewhite1" => 0xffefdb,
  179. "antiquewhite2" => 0xeedfcc,
  180. "antiquewhite3" => 0xcdc0b0,
  181. "antiquewhite4" => 0x8b8378,
  182. "bisque1" => 0xffe4c4,
  183. "bisque2" => 0xeed5b7,
  184. "bisque3" => 0xcdb79e,
  185. "bisque4" => 0x8b7d6b,
  186. "peachpuff1" => 0xffdab9,
  187. "peachpuff2" => 0xeecbad,
  188. "peachpuff3" => 0xcdaf95,
  189. "peachpuff4" => 0x8b7765,
  190. "navajowhite1" => 0xffdead,
  191. "navajowhite2" => 0xeecfa1,
  192. "navajowhite3" => 0xcdb38b,
  193. "navajowhite4" => 0x8b795e,
  194. "lemonchiffon1" => 0xfffacd,
  195. "lemonchiffon2" => 0xeee9bf,
  196. "lemonchiffon3" => 0xcdc9a5,
  197. "lemonchiffon4" => 0x8b8970,
  198. "cornsilk1" => 0xfff8dc,
  199. "cornsilk2" => 0xeee8cd,
  200. "cornsilk3" => 0xcdc8b1,
  201. "cornsilk4" => 0x8b8878,
  202. "ivory1" => 0xfffff0,
  203. "ivory2" => 0xeeeee0,
  204. "ivory3" => 0xcdcdc1,
  205. "ivory4" => 0x8b8b83,
  206. "honeydew1" => 0xf0fff0,
  207. "honeydew2" => 0xe0eee0,
  208. "honeydew3" => 0xc1cdc1,
  209. "honeydew4" => 0x838b83,
  210. "lavenderblush1" => 0xfff0f5,
  211. "lavenderblush2" => 0xeee0e5,
  212. "lavenderblush3" => 0xcdc1c5,
  213. "lavenderblush4" => 0x8b8386,
  214. "mistyrose1" => 0xffe4e1,
  215. "mistyrose2" => 0xeed5d2,
  216. "mistyrose3" => 0xcdb7b5,
  217. "mistyrose4" => 0x8b7d7b,
  218. "azure1" => 0xf0ffff,
  219. "azure2" => 0xe0eeee,
  220. "azure3" => 0xc1cdcd,
  221. "azure4" => 0x838b8b,
  222. "slateblue1" => 0x836fff,
  223. "slateblue2" => 0x7a67ee,
  224. "slateblue3" => 0x6959cd,
  225. "slateblue4" => 0x473c8b,
  226. "royalblue1" => 0x4876ff,
  227. "royalblue2" => 0x436eee,
  228. "royalblue3" => 0x3a5fcd,
  229. "royalblue4" => 0x27408b,
  230. "blue1" => 0x0000ff,
  231. "blue2" => 0x0000ee,
  232. "blue3" => 0x0000cd,
  233. "blue4" => 0x00008b,
  234. "dodgerblue1" => 0x1e90ff,
  235. "dodgerblue2" => 0x1c86ee,
  236. "dodgerblue3" => 0x1874cd,
  237. "dodgerblue4" => 0x104e8b,
  238. "steelblue1" => 0x63b8ff,
  239. "steelblue2" => 0x5cacee,
  240. "steelblue3" => 0x4f94cd,
  241. "steelblue4" => 0x36648b,
  242. "deepskyblue1" => 0x00bfff,
  243. "deepskyblue2" => 0x00b2ee,
  244. "deepskyblue3" => 0x009acd,
  245. "deepskyblue4" => 0x00688b,
  246. "skyblue1" => 0x87ceff,
  247. "skyblue2" => 0x7ec0ee,
  248. "skyblue3" => 0x6ca6cd,
  249. "skyblue4" => 0x4a708b,
  250. "lightskyblue1" => 0xb0e2ff,
  251. "lightskyblue2" => 0xa4d3ee,
  252. "lightskyblue3" => 0x8db6cd,
  253. "lightskyblue4" => 0x607b8b,
  254. "slategray1" => 0xc6e2ff,
  255. "slategray2" => 0xb9d3ee,
  256. "slategray3" => 0x9fb6cd,
  257. "slategray4" => 0x6c7b8b,
  258. "slategrey1" => 0xc6e2ff,
  259. "slategrey2" => 0xb9d3ee,
  260. "slategrey3" => 0x9fb6cd,
  261. "slategrey4" => 0x6c7b8b,
  262. "lightsteelblue1" => 0xcae1ff,
  263. "lightsteelblue2" => 0xbcd2ee,
  264. "lightsteelblue3" => 0xa2b5cd,
  265. "lightsteelblue4" => 0x6e7b8b,
  266. "lightblue1" => 0xbfefff,
  267. "lightblue2" => 0xb2dfee,
  268. "lightblue3" => 0x9ac0cd,
  269. "lightblue4" => 0x68838b,
  270. "lightcyan1" => 0xe0ffff,
  271. "lightcyan2" => 0xd1eeee,
  272. "lightcyan3" => 0xb4cdcd,
  273. "lightcyan4" => 0x7a8b8b,
  274. "paleturquoise1" => 0xbbffff,
  275. "paleturquoise2" => 0xaeeeee,
  276. "paleturquoise3" => 0x96cdcd,
  277. "paleturquoise4" => 0x668b8b,
  278. "cadetblue1" => 0x98f5ff,
  279. "cadetblue2" => 0x8ee5ee,
  280. "cadetblue3" => 0x7ac5cd,
  281. "cadetblue4" => 0x53868b,
  282. "turquoise1" => 0x00f5ff,
  283. "turquoise2" => 0x00e5ee,
  284. "turquoise3" => 0x00c5cd,
  285. "turquoise4" => 0x00868b,
  286. "cyan1" => 0x00ffff,
  287. "cyan2" => 0x00eeee,
  288. "cyan3" => 0x00cdcd,
  289. "cyan4" => 0x008b8b,
  290. "darkslategray1" => 0x97ffff,
  291. "darkslategray2" => 0x8deeee,
  292. "darkslategray3" => 0x79cdcd,
  293. "darkslategray4" => 0x528b8b,
  294. "darkslategrey1" => 0x97ffff,
  295. "darkslategrey2" => 0x8deeee,
  296. "darkslategrey3" => 0x79cdcd,
  297. "darkslategrey4" => 0x528b8b,
  298. "aquamarine1" => 0x7fffd4,
  299. "aquamarine2" => 0x76eec6,
  300. "aquamarine3" => 0x66cdaa,
  301. "aquamarine4" => 0x458b74,
  302. "darkseagreen1" => 0xc1ffc1,
  303. "darkseagreen2" => 0xb4eeb4,
  304. "darkseagreen3" => 0x9bcd9b,
  305. "darkseagreen4" => 0x698b69,
  306. "seagreen1" => 0x54ff9f,
  307. "seagreen2" => 0x4eee94,
  308. "seagreen3" => 0x43cd80,
  309. "seagreen4" => 0x2e8b57,
  310. "palegreen1" => 0x9aff9a,
  311. "palegreen2" => 0x90ee90,
  312. "palegreen3" => 0x7ccd7c,
  313. "palegreen4" => 0x548b54,
  314. "springgreen1" => 0x00ff7f,
  315. "springgreen2" => 0x00ee76,
  316. "springgreen3" => 0x00cd66,
  317. "springgreen4" => 0x008b45,
  318. "green1" => 0x00ff00,
  319. "green2" => 0x00ee00,
  320. "green3" => 0x00cd00,
  321. "green4" => 0x008b00,
  322. "chartreuse1" => 0x7fff00,
  323. "chartreuse2" => 0x76ee00,
  324. "chartreuse3" => 0x66cd00,
  325. "chartreuse4" => 0x458b00,
  326. "olivedrab1" => 0xc0ff3e,
  327. "olivedrab2" => 0xb3ee3a,
  328. "olivedrab3" => 0x9acd32,
  329. "olivedrab4" => 0x698b22,
  330. "darkolivegreen1" => 0xcaff70,
  331. "darkolivegreen2" => 0xbcee68,
  332. "darkolivegreen3" => 0xa2cd5a,
  333. "darkolivegreen4" => 0x6e8b3d,
  334. "khaki1" => 0xfff68f,
  335. "khaki2" => 0xeee685,
  336. "khaki3" => 0xcdc673,
  337. "khaki4" => 0x8b864e,
  338. "lightgoldenrod1" => 0xffec8b,
  339. "lightgoldenrod2" => 0xeedc82,
  340. "lightgoldenrod3" => 0xcdbe70,
  341. "lightgoldenrod4" => 0x8b814c,
  342. "lightyellow1" => 0xffffe0,
  343. "lightyellow2" => 0xeeeed1,
  344. "lightyellow3" => 0xcdcdb4,
  345. "lightyellow4" => 0x8b8b7a,
  346. "yellow1" => 0xffff00,
  347. "yellow2" => 0xeeee00,
  348. "yellow3" => 0xcdcd00,
  349. "yellow4" => 0x8b8b00,
  350. "gold1" => 0xffd700,
  351. "gold2" => 0xeec900,
  352. "gold3" => 0xcdad00,
  353. "gold4" => 0x8b7500,
  354. "goldenrod1" => 0xffc125,
  355. "goldenrod2" => 0xeeb422,
  356. "goldenrod3" => 0xcd9b1d,
  357. "goldenrod4" => 0x8b6914,
  358. "darkgoldenrod1" => 0xffb90f,
  359. "darkgoldenrod2" => 0xeead0e,
  360. "darkgoldenrod3" => 0xcd950c,
  361. "darkgoldenrod4" => 0x8b6508,
  362. "rosybrown1" => 0xffc1c1,
  363. "rosybrown2" => 0xeeb4b4,
  364. "rosybrown3" => 0xcd9b9b,
  365. "rosybrown4" => 0x8b6969,
  366. "indianred1" => 0xff6a6a,
  367. "indianred2" => 0xee6363,
  368. "indianred3" => 0xcd5555,
  369. "indianred4" => 0x8b3a3a,
  370. "sienna1" => 0xff8247,
  371. "sienna2" => 0xee7942,
  372. "sienna3" => 0xcd6839,
  373. "sienna4" => 0x8b4726,
  374. "burlywood1" => 0xffd39b,
  375. "burlywood2" => 0xeec591,
  376. "burlywood3" => 0xcdaa7d,
  377. "burlywood4" => 0x8b7355,
  378. "wheat1" => 0xffe7ba,
  379. "wheat2" => 0xeed8ae,
  380. "wheat3" => 0xcdba96,
  381. "wheat4" => 0x8b7e66,
  382. "tan1" => 0xffa54f,
  383. "tan2" => 0xee9a49,
  384. "tan3" => 0xcd853f,
  385. "tan4" => 0x8b5a2b,
  386. "chocolate1" => 0xff7f24,
  387. "chocolate2" => 0xee7621,
  388. "chocolate3" => 0xcd661d,
  389. "chocolate4" => 0x8b4513,
  390. "firebrick1" => 0xff3030,
  391. "firebrick2" => 0xee2c2c,
  392. "firebrick3" => 0xcd2626,
  393. "firebrick4" => 0x8b1a1a,
  394. "brown1" => 0xff4040,
  395. "brown2" => 0xee3b3b,
  396. "brown3" => 0xcd3333,
  397. "brown4" => 0x8b2323,
  398. "salmon1" => 0xff8c69,
  399. "salmon2" => 0xee8262,
  400. "salmon3" => 0xcd7054,
  401. "salmon4" => 0x8b4c39,
  402. "lightsalmon1" => 0xffa07a,
  403. "lightsalmon2" => 0xee9572,
  404. "lightsalmon3" => 0xcd8162,
  405. "lightsalmon4" => 0x8b5742,
  406. "orange1" => 0xffa500,
  407. "orange2" => 0xee9a00,
  408. "orange3" => 0xcd8500,
  409. "orange4" => 0x8b5a00,
  410. "darkorange1" => 0xff7f00,
  411. "darkorange2" => 0xee7600,
  412. "darkorange3" => 0xcd6600,
  413. "darkorange4" => 0x8b4500,
  414. "coral1" => 0xff7256,
  415. "coral2" => 0xee6a50,
  416. "coral3" => 0xcd5b45,
  417. "coral4" => 0x8b3e2f,
  418. "tomato1" => 0xff6347,
  419. "tomato2" => 0xee5c42,
  420. "tomato3" => 0xcd4f39,
  421. "tomato4" => 0x8b3626,
  422. "orangered1" => 0xff4500,
  423. "orangered2" => 0xee4000,
  424. "orangered3" => 0xcd3700,
  425. "orangered4" => 0x8b2500,
  426. "red1" => 0xff0000,
  427. "red2" => 0xee0000,
  428. "red3" => 0xcd0000,
  429. "red4" => 0x8b0000,
  430. "deeppink1" => 0xff1493,
  431. "deeppink2" => 0xee1289,
  432. "deeppink3" => 0xcd1076,
  433. "deeppink4" => 0x8b0a50,
  434. "hotpink1" => 0xff6eb4,
  435. "hotpink2" => 0xee6aa7,
  436. "hotpink3" => 0xcd6090,
  437. "hotpink4" => 0x8b3a62,
  438. "pink1" => 0xffb5c5,
  439. "pink2" => 0xeea9b8,
  440. "pink3" => 0xcd919e,
  441. "pink4" => 0x8b636c,
  442. "lightpink1" => 0xffaeb9,
  443. "lightpink2" => 0xeea2ad,
  444. "lightpink3" => 0xcd8c95,
  445. "lightpink4" => 0x8b5f65,
  446. "palevioletred1" => 0xff82ab,
  447. "palevioletred2" => 0xee799f,
  448. "palevioletred3" => 0xcd6889,
  449. "palevioletred4" => 0x8b475d,
  450. "maroon1" => 0xff34b3,
  451. "maroon2" => 0xee30a7,
  452. "maroon3" => 0xcd2990,
  453. "maroon4" => 0x8b1c62,
  454. "violetred1" => 0xff3e96,
  455. "violetred2" => 0xee3a8c,
  456. "violetred3" => 0xcd3278,
  457. "violetred4" => 0x8b2252,
  458. "magenta1" => 0xff00ff,
  459. "magenta2" => 0xee00ee,
  460. "magenta3" => 0xcd00cd,
  461. "magenta4" => 0x8b008b,
  462. "orchid1" => 0xff83fa,
  463. "orchid2" => 0xee7ae9,
  464. "orchid3" => 0xcd69c9,
  465. "orchid4" => 0x8b4789,
  466. "plum1" => 0xffbbff,
  467. "plum2" => 0xeeaeee,
  468. "plum3" => 0xcd96cd,
  469. "plum4" => 0x8b668b,
  470. "mediumorchid1" => 0xe066ff,
  471. "mediumorchid2" => 0xd15fee,
  472. "mediumorchid3" => 0xb452cd,
  473. "mediumorchid4" => 0x7a378b,
  474. "darkorchid1" => 0xbf3eff,
  475. "darkorchid2" => 0xb23aee,
  476. "darkorchid3" => 0x9a32cd,
  477. "darkorchid4" => 0x68228b,
  478. "purple1" => 0x9b30ff,
  479. "purple2" => 0x912cee,
  480. "purple3" => 0x7d26cd,
  481. "purple4" => 0x551a8b,
  482. "mediumpurple1" => 0xab82ff,
  483. "mediumpurple2" => 0x9f79ee,
  484. "mediumpurple3" => 0x8968cd,
  485. "mediumpurple4" => 0x5d478b,
  486. "thistle1" => 0xffe1ff,
  487. "thistle2" => 0xeed2ee,
  488. "thistle3" => 0xcdb5cd,
  489. "thistle4" => 0x8b7b8b,
  490. "gray0" => 0x000000,
  491. "gray1" => 0x030303,
  492. "gray2" => 0x050505,
  493. "gray3" => 0x080808,
  494. "gray4" => 0x0a0a0a,
  495. "gray5" => 0x0d0d0d,
  496. "gray6" => 0x0f0f0f,
  497. "gray7" => 0x121212,
  498. "gray8" => 0x141414,
  499. "gray9" => 0x171717,
  500. "gray10" => 0x1a1a1a,
  501. "gray11" => 0x1c1c1c,
  502. "gray12" => 0x1f1f1f,
  503. "gray13" => 0x212121,
  504. "gray14" => 0x242424,
  505. "gray15" => 0x262626,
  506. "gray16" => 0x292929,
  507. "gray17" => 0x2b2b2b,
  508. "gray18" => 0x2e2e2e,
  509. "gray19" => 0x303030,
  510. "gray20" => 0x333333,
  511. "gray21" => 0x363636,
  512. "gray22" => 0x383838,
  513. "gray23" => 0x3b3b3b,
  514. "gray24" => 0x3d3d3d,
  515. "gray25" => 0x404040,
  516. "gray26" => 0x424242,
  517. "gray27" => 0x454545,
  518. "gray28" => 0x474747,
  519. "gray29" => 0x4a4a4a,
  520. "gray30" => 0x4d4d4d,
  521. "gray31" => 0x4f4f4f,
  522. "gray32" => 0x525252,
  523. "gray33" => 0x545454,
  524. "gray34" => 0x575757,
  525. "gray35" => 0x595959,
  526. "gray36" => 0x5c5c5c,
  527. "gray37" => 0x5e5e5e,
  528. "gray38" => 0x616161,
  529. "gray39" => 0x636363,
  530. "gray40" => 0x666666,
  531. "gray41" => 0x696969,
  532. "gray42" => 0x6b6b6b,
  533. "gray43" => 0x6e6e6e,
  534. "gray44" => 0x707070,
  535. "gray45" => 0x737373,
  536. "gray46" => 0x757575,
  537. "gray47" => 0x787878,
  538. "gray48" => 0x7a7a7a,
  539. "gray49" => 0x7d7d7d,
  540. "gray50" => 0x7f7f7f,
  541. "gray51" => 0x828282,
  542. "gray52" => 0x858585,
  543. "gray53" => 0x878787,
  544. "gray54" => 0x8a8a8a,
  545. "gray55" => 0x8c8c8c,
  546. "gray56" => 0x8f8f8f,
  547. "gray57" => 0x919191,
  548. "gray58" => 0x949494,
  549. "gray59" => 0x969696,
  550. "gray60" => 0x999999,
  551. "gray61" => 0x9c9c9c,
  552. "gray62" => 0x9e9e9e,
  553. "gray63" => 0xa1a1a1,
  554. "gray64" => 0xa3a3a3,
  555. "gray65" => 0xa6a6a6,
  556. "gray66" => 0xa8a8a8,
  557. "gray67" => 0xababab,
  558. "gray68" => 0xadadad,
  559. "gray69" => 0xb0b0b0,
  560. "gray70" => 0xb3b3b3,
  561. "gray71" => 0xb5b5b5,
  562. "gray72" => 0xb8b8b8,
  563. "gray73" => 0xbababa,
  564. "gray74" => 0xbdbdbd,
  565. "gray75" => 0xbfbfbf,
  566. "gray76" => 0xc2c2c2,
  567. "gray77" => 0xc4c4c4,
  568. "gray78" => 0xc7c7c7,
  569. "gray79" => 0xc9c9c9,
  570. "gray80" => 0xcccccc,
  571. "gray81" => 0xcfcfcf,
  572. "gray82" => 0xd1d1d1,
  573. "gray83" => 0xd4d4d4,
  574. "gray84" => 0xd6d6d6,
  575. "gray85" => 0xd9d9d9,
  576. "gray86" => 0xdbdbdb,
  577. "gray87" => 0xdedede,
  578. "gray88" => 0xe0e0e0,
  579. "gray89" => 0xe3e3e3,
  580. "gray90" => 0xe5e5e5,
  581. "gray91" => 0xe8e8e8,
  582. "gray92" => 0xebebeb,
  583. "gray93" => 0xededed,
  584. "gray94" => 0xf0f0f0,
  585. "gray95" => 0xf2f2f2,
  586. "gray96" => 0xf5f5f5,
  587. "gray97" => 0xf7f7f7,
  588. "gray98" => 0xfafafa,
  589. "gray99" => 0xfcfcfc,
  590. "gray100" => 0xffffff,
  591. "grey0" => 0x000000,
  592. "grey1" => 0x030303,
  593. "grey2" => 0x050505,
  594. "grey3" => 0x080808,
  595. "grey4" => 0x0a0a0a,
  596. "grey5" => 0x0d0d0d,
  597. "grey6" => 0x0f0f0f,
  598. "grey7" => 0x121212,
  599. "grey8" => 0x141414,
  600. "grey9" => 0x171717,
  601. "grey10" => 0x1a1a1a,
  602. "grey11" => 0x1c1c1c,
  603. "grey12" => 0x1f1f1f,
  604. "grey13" => 0x212121,
  605. "grey14" => 0x242424,
  606. "grey15" => 0x262626,
  607. "grey16" => 0x292929,
  608. "grey17" => 0x2b2b2b,
  609. "grey18" => 0x2e2e2e,
  610. "grey19" => 0x303030,
  611. "grey20" => 0x333333,
  612. "grey21" => 0x363636,
  613. "grey22" => 0x383838,
  614. "grey23" => 0x3b3b3b,
  615. "grey24" => 0x3d3d3d,
  616. "grey25" => 0x404040,
  617. "grey26" => 0x424242,
  618. "grey27" => 0x454545,
  619. "grey28" => 0x474747,
  620. "grey29" => 0x4a4a4a,
  621. "grey30" => 0x4d4d4d,
  622. "grey31" => 0x4f4f4f,
  623. "grey32" => 0x525252,
  624. "grey33" => 0x545454,
  625. "grey34" => 0x575757,
  626. "grey35" => 0x595959,
  627. "grey36" => 0x5c5c5c,
  628. "grey37" => 0x5e5e5e,
  629. "grey38" => 0x616161,
  630. "grey39" => 0x636363,
  631. "grey40" => 0x666666,
  632. "grey41" => 0x696969,
  633. "grey42" => 0x6b6b6b,
  634. "grey43" => 0x6e6e6e,
  635. "grey44" => 0x707070,
  636. "grey45" => 0x737373,
  637. "grey46" => 0x757575,
  638. "grey47" => 0x787878,
  639. "grey48" => 0x7a7a7a,
  640. "grey49" => 0x7d7d7d,
  641. "grey50" => 0x7f7f7f,
  642. "grey51" => 0x828282,
  643. "grey52" => 0x858585,
  644. "grey53" => 0x878787,
  645. "grey54" => 0x8a8a8a,
  646. "grey55" => 0x8c8c8c,
  647. "grey56" => 0x8f8f8f,
  648. "grey57" => 0x919191,
  649. "grey58" => 0x949494,
  650. "grey59" => 0x969696,
  651. "grey60" => 0x999999,
  652. "grey61" => 0x9c9c9c,
  653. "grey62" => 0x9e9e9e,
  654. "grey63" => 0xa1a1a1,
  655. "grey64" => 0xa3a3a3,
  656. "grey65" => 0xa6a6a6,
  657. "grey66" => 0xa8a8a8,
  658. "grey67" => 0xababab,
  659. "grey68" => 0xadadad,
  660. "grey69" => 0xb0b0b0,
  661. "grey70" => 0xb3b3b3,
  662. "grey71" => 0xb5b5b5,
  663. "grey72" => 0xb8b8b8,
  664. "grey73" => 0xbababa,
  665. "grey74" => 0xbdbdbd,
  666. "grey75" => 0xbfbfbf,
  667. "grey76" => 0xc2c2c2,
  668. "grey77" => 0xc4c4c4,
  669. "grey78" => 0xc7c7c7,
  670. "grey79" => 0xc9c9c9,
  671. "grey80" => 0xcccccc,
  672. "grey81" => 0xcfcfcf,
  673. "grey82" => 0xd1d1d1,
  674. "grey83" => 0xd4d4d4,
  675. "grey84" => 0xd6d6d6,
  676. "grey85" => 0xd9d9d9,
  677. "grey86" => 0xdbdbdb,
  678. "grey87" => 0xdedede,
  679. "grey88" => 0xe0e0e0,
  680. "grey89" => 0xe3e3e3,
  681. "grey90" => 0xe5e5e5,
  682. "grey91" => 0xe8e8e8,
  683. "grey92" => 0xebebeb,
  684. "grey93" => 0xededed,
  685. "grey94" => 0xf0f0f0,
  686. "grey95" => 0xf2f2f2,
  687. "grey96" => 0xf5f5f5,
  688. "grey97" => 0xf7f7f7,
  689. "grey98" => 0xfafafa,
  690. "grey99" => 0xfcfcfc,
  691. "grey100" => 0xffffff,
  692. "darkgrey" => 0xa9a9a9,
  693. "darkgray" => 0xa9a9a9,
  694. "darkblue" => 0x00008b,
  695. "darkcyan" => 0x008b8b,
  696. "darkmagenta" => 0x8b008b,
  697. "darkred" => 0x8b0000,
  698. "lightgreen" => 0x90ee90,
  699. };
  700. }
  701. 1;
  702. __END__