x11def.inc 178 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924
  1. /*
  2. Legal:
  3. Version: MPL 1.1
  4. The contents of this file are subject to the Mozilla Public License Version
  5. 1.1 the "License"; you may not use this file except in compliance with
  6. the License. You may obtain a copy of the License at
  7. http://www.mozilla.org/MPL/
  8. Software distributed under the License is distributed on an "AS IS" basis,
  9. WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  10. for the specific language governing rights and limitations under the
  11. License.
  12. The Original Code is the YSI framework.
  13. The Initial Developer of the Original Code is Alex "Y_Less" Cole.
  14. Portions created by the Initial Developer are Copyright C 2011
  15. the Initial Developer. All Rights Reserved.
  16. Contributors:
  17. Y_Less
  18. koolk
  19. JoeBullet/Google63
  20. g_aSlice/Slice
  21. Misiur
  22. samphunter
  23. tianmeta
  24. maddinat0r
  25. spacemud
  26. Crayder
  27. Dayvison
  28. Ahmad45123
  29. Zeex
  30. irinel1996
  31. Yiin-
  32. Chaprnks
  33. Konstantinos
  34. Masterchen09
  35. Southclaws
  36. PatchwerkQWER
  37. m0k1
  38. paulommu
  39. udan111
  40. Thanks:
  41. JoeBullet/Google63 - Handy arbitrary ASM jump code using SCTRL.
  42. ZeeX - Very productive conversations.
  43. koolk - IsPlayerinAreaEx code.
  44. TheAlpha - Danish translation.
  45. breadfish - German translation.
  46. Fireburn - Dutch translation.
  47. yom - French translation.
  48. 50p - Polish translation.
  49. Zamaroht - Spanish translation.
  50. Los - Portuguese translation.
  51. Dracoblue, sintax, mabako, Xtreme, other coders - Producing other modes for
  52. me to strive to better.
  53. Pixels^ - Running XScripters where the idea was born.
  54. Matite - Pestering me to release it and using it.
  55. Very special thanks to:
  56. Thiadmer - PAWN, whose limits continue to amaze me!
  57. Kye/Kalcor - SA:MP.
  58. SA:MP Team past, present and future - SA:MP.
  59. Optional plugins:
  60. Gamer_Z - GPS.
  61. Incognito - Streamer.
  62. Me - sscanf2, fixes2, Whirlpool.
  63. */
  64. // Standard colours
  65. #define X11_SNOW 0xFFFAFAAA
  66. #define X11_GHOSTWHITE 0xF8F8FFAA
  67. #define X11_GHOST_WHITE 0xF8F8FFAA
  68. #define X11_WHITESMOKE 0xF5F5F5AA
  69. #define X11_WHITE_SMOKE 0xF5F5F5AA
  70. #define X11_GAINSBORO 0xDCDCDCAA
  71. #define X11_FLORALWHITE 0xFFFAF0AA
  72. #define X11_FLORAL_WHITE 0xFFFAF0AA
  73. #define X11_OLDLACE 0xFDF5E6AA
  74. #define X11_OLD_LACE 0xFDF5E6AA
  75. #define X11_LINEN 0xFAF0E6AA
  76. #define X11_ANTIQUEWHITE 0xFAEBD7AA
  77. #define X11_ANTIQUE_WHITE 0xFAEBD7AA
  78. #define X11_PAPAYAWHIP 0xFFEFD5AA
  79. #define X11_PAPAYA_WHIP 0xFFEFD5AA
  80. #define X11_BLANCHEDALMOND 0xFFEBCDAA
  81. #define X11_BLANCHED_ALMOND 0xFFEBCDAA
  82. #define X11_BISQUE 0xFFE4C4AA
  83. #define X11_PEACHPUFF 0xFFDAB9AA
  84. #define X11_PEACH_PUFF 0xFFDAB9AA
  85. #define X11_NAVAJOWHITE 0xFFDEADAA
  86. #define X11_NAVAJO_WHITE 0xFFDEADAA
  87. #define X11_MOCCASIN 0xFFE4B5AA
  88. #define X11_CORNSILK 0xFFF8DCAA
  89. #define X11_IVORY 0xFFFFF0AA
  90. #define X11_LEMONCHIFFON 0xFFFACDAA
  91. #define X11_LEMON_CHIFFON 0xFFFACDAA
  92. #define X11_SEASHELL 0xFFF5EEAA
  93. #define X11_HONEYDEW 0xF0FFF0AA
  94. #define X11_MINTCREAM 0xF5FFFAAA
  95. #define X11_MINT_CREAM 0xF5FFFAAA
  96. #define X11_AZURE 0xF0FFFFAA
  97. #define X11_ALICEBLUE 0xF0F8FFAA
  98. #define X11_ALICE_BLUE 0xF0F8FFAA
  99. #define X11_LAVENDER 0xE6E6FAAA
  100. #define X11_LAVENDERBLUSH 0xFFF0F5AA
  101. #define X11_LAVENDER_BLUSH 0xFFF0F5AA
  102. #define X11_MISTYROSE 0xFFE4E1AA
  103. #define X11_MISTY_ROSE 0xFFE4E1AA
  104. #define X11_WHITE 0xFFFFFFAA
  105. #define X11_BLACK 0x000000AA
  106. #define X11_DARKSLATEGRAY 0x2F4F4FAA
  107. #define X11_DARK_SLATE_GRAY 0x2F4F4FAA
  108. #define X11_DARKSLATEGREY 0x2F4F4FAA
  109. #define X11_DARK_SLATE_GREY 0x2F4F4FAA
  110. #define X11_DIMGRAY 0x696969AA
  111. #define X11_DIM_GRAY 0x696969AA
  112. #define X11_DIMGREY 0x696969AA
  113. #define X11_DIM_GREY 0x696969AA
  114. #define X11_SLATEGRAY 0x708090AA
  115. #define X11_SLATE_GRAY 0x708090AA
  116. #define X11_SLATEGREY 0x708090AA
  117. #define X11_SLATE_GREY 0x708090AA
  118. #define X11_LIGHTSLATEGRAY 0x778899AA
  119. #define X11_LIGHT_SLATE_GRAY 0x778899AA
  120. #define X11_LIGHTSLATEGREY 0x778899AA
  121. #define X11_LIGHT_SLATE_GREY 0x778899AA
  122. #define X11_GRAY 0xBEBEBEAA
  123. #define X11_GREY 0xBEBEBEAA
  124. #define X11_LIGHTGREY 0xD3D3D3AA
  125. #define X11_LIGHT_GREY 0xD3D3D3AA
  126. #define X11_LIGHTGRAY 0xD3D3D3AA
  127. #define X11_LIGHT_GRAY 0xD3D3D3AA
  128. #define X11_MIDNIGHTBLUE 0x191970AA
  129. #define X11_MIDNIGHT_BLUE 0x191970AA
  130. #define X11_NAVY 0x000080AA
  131. #define X11_NAVYBLUE 0x000080AA
  132. #define X11_NAVY_BLUE 0x000080AA
  133. #define X11_CORNFLOWERBLUE 0x6495EDAA
  134. #define X11_CORNFLOWER_BLUE 0x6495EDAA
  135. #define X11_DARKSLATEBLUE 0x483D8BAA
  136. #define X11_DARK_SLATE_BLUE 0x483D8BAA
  137. #define X11_SLATEBLUE 0x6A5ACDAA
  138. #define X11_SLATE_BLUE 0x6A5ACDAA
  139. #define X11_MEDIUMSLATEBLUE 0x7B68EEAA
  140. #define X11_MEDIUM_SLATE_BLUE 0x7B68EEAA
  141. #define X11_LIGHTSLATEBLUE 0x8470FFAA
  142. #define X11_LIGHT_SLATE_BLUE 0x8470FFAA
  143. #define X11_MEDIUMBLUE 0x0000CDAA
  144. #define X11_MEDIUM_BLUE 0x0000CDAA
  145. #define X11_ROYALBLUE 0x4169E1AA
  146. #define X11_ROYAL_BLUE 0x4169E1AA
  147. #define X11_BLUE 0x0000FFAA
  148. #define X11_DODGERBLUE 0x1E90FFAA
  149. #define X11_DODGER_BLUE 0x1E90FFAA
  150. #define X11_DEEPSKYBLUE 0x00BFFFAA
  151. #define X11_DEEP_SKY_BLUE 0x00BFFFAA
  152. #define X11_SKYBLUE 0x87CEEBAA
  153. #define X11_SKY_BLUE 0x87CEEBAA
  154. #define X11_LIGHTSKYBLUE 0x87CEFAAA
  155. #define X11_LIGHT_SKY_BLUE 0x87CEFAAA
  156. #define X11_STEELBLUE 0x4682B4AA
  157. #define X11_STEEL_BLUE 0x4682B4AA
  158. #define X11_LIGHTSTEELBLUE 0xB0C4DEAA
  159. #define X11_LIGHT_STEEL_BLUE 0xB0C4DEAA
  160. #define X11_LIGHTBLUE 0xADD8E6AA
  161. #define X11_LIGHT_BLUE 0xADD8E6AA
  162. #define X11_POWDERBLUE 0xB0E0E6AA
  163. #define X11_POWDER_BLUE 0xB0E0E6AA
  164. #define X11_PALETURQUOISE 0xAFEEEEAA
  165. #define X11_PALE_TURQUOISE 0xAFEEEEAA
  166. #define X11_DARKTURQUOISE 0x00CED1AA
  167. #define X11_DARK_TURQUOISE 0x00CED1AA
  168. #define X11_MEDIUMTURQUOISE 0x48D1CCAA
  169. #define X11_MEDIUM_TURQUOISE 0x48D1CCAA
  170. #define X11_TURQUOISE 0x40E0D0AA
  171. #define X11_CYAN 0x00FFFFAA
  172. #define X11_LIGHTCYAN 0xE0FFFFAA
  173. #define X11_LIGHT_CYAN 0xE0FFFFAA
  174. #define X11_CADETBLUE 0x5F9EA0AA
  175. #define X11_CADET_BLUE 0x5F9EA0AA
  176. #define X11_MEDIUMAQUAMARINE 0x66CDAAAA
  177. #define X11_MEDIUM_AQUAMARINE 0x66CDAAAA
  178. #define X11_AQUAMARINE 0x7FFFD4AA
  179. #define X11_DARKGREEN 0x006400AA
  180. #define X11_DARK_GREEN 0x006400AA
  181. #define X11_DARKOLIVEGREEN 0x556B2FAA
  182. #define X11_DARK_OLIVE_GREEN 0x556B2FAA
  183. #define X11_DARKSEAGREEN 0x8FBC8FAA
  184. #define X11_DARK_SEA_GREEN 0x8FBC8FAA
  185. #define X11_SEAGREEN 0x2E8B57AA
  186. #define X11_SEA_GREEN 0x2E8B57AA
  187. #define X11_MEDIUMSEAGREEN 0x3CB371AA
  188. #define X11_MEDIUM_SEA_GREEN 0x3CB371AA
  189. #define X11_LIGHTSEAGREEN 0x20B2AAAA
  190. #define X11_LIGHT_SEA_GREEN 0x20B2AAAA
  191. #define X11_PALEGREEN 0x98FB98AA
  192. #define X11_PALE_GREEN 0x98FB98AA
  193. #define X11_SPRINGGREEN 0x00FF7FAA
  194. #define X11_SPRING_GREEN 0x00FF7FAA
  195. #define X11_LAWNGREEN 0x7CFC00AA
  196. #define X11_LAWN_GREEN 0x7CFC00AA
  197. #define X11_GREEN 0x00FF00AA
  198. #define X11_CHARTREUSE 0x7FFF00AA
  199. #define X11_MEDIUMSPRINGGREEN 0x00FA9AAA
  200. #define X11_MEDIUM_SPRING_GREEN 0x00FA9AAA
  201. #define X11_GREENYELLOW 0xADFF2FAA
  202. #define X11_GREEN_YELLOW 0xADFF2FAA
  203. #define X11_LIMEGREEN 0x32CD32AA
  204. #define X11_LIME_GREEN 0x32CD32AA
  205. #define X11_YELLOWGREEN 0x9ACD32AA
  206. #define X11_YELLOW_GREEN 0x9ACD32AA
  207. #define X11_FORESTGREEN 0x228B22AA
  208. #define X11_FOREST_GREEN 0x228B22AA
  209. #define X11_OLIVEDRAB 0x6B8E23AA
  210. #define X11_OLIVE_DRAB 0x6B8E23AA
  211. #define X11_DARKKHAKI 0xBDB76BAA
  212. #define X11_DARK_KHAKI 0xBDB76BAA
  213. #define X11_KHAKI 0xF0E68CAA
  214. #define X11_PALEGOLDENROD 0xEEE8AAAA
  215. #define X11_PALE_GOLDENROD 0xEEE8AAAA
  216. #define X11_LIGHTGOLDENRODYELLOW 0xFAFAD2AA
  217. #define X11_LIGHT_GOLDENROD_YELLOW 0xFAFAD2AA
  218. #define X11_LIGHTYELLOW 0xFFFFE0AA
  219. #define X11_LIGHT_YELLOW 0xFFFFE0AA
  220. #define X11_YELLOW 0xFFFF00AA
  221. #define X11_GOLD 0xFFD700AA
  222. #define X11_LIGHTGOLDENROD 0xEEDD82AA
  223. #define X11_LIGHT_GOLDENROD 0xEEDD82AA
  224. #define X11_GOLDENROD 0xDAA520AA
  225. #define X11_DARKGOLDENROD 0xB8860BAA
  226. #define X11_DARK_GOLDENROD 0xB8860BAA
  227. #define X11_ROSYBROWN 0xBC8F8FAA
  228. #define X11_ROSY_BROWN 0xBC8F8FAA
  229. #define X11_INDIANRED 0xCD5C5CAA
  230. #define X11_INDIAN_RED 0xCD5C5CAA
  231. #define X11_SADDLEBROWN 0x8B4513AA
  232. #define X11_SADDLE_BROWN 0x8B4513AA
  233. #define X11_SIENNA 0xA0522DAA
  234. #define X11_PERU 0xCD853FAA
  235. #define X11_BURLYWOOD 0xDEB887AA
  236. #define X11_BEIGE 0xF5F5DCAA
  237. #define X11_WHEAT 0xF5DEB3AA
  238. #define X11_SANDYBROWN 0xF4A460AA
  239. #define X11_SANDY_BROWN 0xF4A460AA
  240. #define X11_TAN 0xD2B48CAA
  241. #define X11_CHOCOLATE 0xD2691EAA
  242. #define X11_FIREBRICK 0xB22222AA
  243. #define X11_BROWN 0xA52A2AAA
  244. #define X11_DARKSALMON 0xE9967AAA
  245. #define X11_DARK_SALMON 0xE9967AAA
  246. #define X11_SALMON 0xFA8072AA
  247. #define X11_LIGHTSALMON 0xFFA07AAA
  248. #define X11_LIGHT_SALMON 0xFFA07AAA
  249. #define X11_ORANGE 0xFFA500AA
  250. #define X11_DARKORANGE 0xFF8C00AA
  251. #define X11_DARK_ORANGE 0xFF8C00AA
  252. #define X11_CORAL 0xFF7F50AA
  253. #define X11_LIGHTCORAL 0xF08080AA
  254. #define X11_LIGHT_CORAL 0xF08080AA
  255. #define X11_TOMATO 0xFF6347AA
  256. #define X11_ORANGERED 0xFF4500AA
  257. #define X11_ORANGE_RED 0xFF4500AA
  258. #define X11_RED 0xFF0000AA
  259. #define X11_HOTPINK 0xFF69B4AA
  260. #define X11_HOT_PINK 0xFF69B4AA
  261. #define X11_DEEPPINK 0xFF1493AA
  262. #define X11_DEEP_PINK 0xFF1493AA
  263. #define X11_PINK 0xFFC0CBAA
  264. #define X11_LIGHTPINK 0xFFB6C1AA
  265. #define X11_LIGHT_PINK 0xFFB6C1AA
  266. #define X11_PALEVIOLETRED 0xDB7093AA
  267. #define X11_PALE_VIOLET_RED 0xDB7093AA
  268. #define X11_MAROON 0xB03060AA
  269. #define X11_MEDIUMVIOLETRED 0xC71585AA
  270. #define X11_MEDIUM_VIOLET_RED 0xC71585AA
  271. #define X11_VIOLETRED 0xD02090AA
  272. #define X11_VIOLET_RED 0xD02090AA
  273. #define X11_MAGENTA 0xFF00FFAA
  274. #define X11_VIOLET 0xEE82EEAA
  275. #define X11_PLUM 0xDDA0DDAA
  276. #define X11_ORCHID 0xDA70D6AA
  277. #define X11_MEDIUMORCHID 0xBA55D3AA
  278. #define X11_MEDIUM_ORCHID 0xBA55D3AA
  279. #define X11_DARKORCHID 0x9932CCAA
  280. #define X11_DARK_ORCHID 0x9932CCAA
  281. #define X11_DARKVIOLET 0x9400D3AA
  282. #define X11_DARK_VIOLET 0x9400D3AA
  283. #define X11_BLUEVIOLET 0x8A2BE2AA
  284. #define X11_BLUE_VIOLET 0x8A2BE2AA
  285. #define X11_PURPLE 0xA020F0AA
  286. #define X11_MEDIUMPURPLE 0x9370DBAA
  287. #define X11_MEDIUM_PURPLE 0x9370DBAA
  288. #define X11_THISTLE 0xD8BFD8AA
  289. #define X11_SNOW1 0xFFFAFAAA
  290. #define X11_SNOW_1 0xFFFAFAAA
  291. #define X11_SNOW2 0xEEE9E9AA
  292. #define X11_SNOW_2 0xEEE9E9AA
  293. #define X11_SNOW3 0xCDC9C9AA
  294. #define X11_SNOW_3 0xCDC9C9AA
  295. #define X11_SNOW4 0x8B8989AA
  296. #define X11_SNOW_4 0x8B8989AA
  297. #define X11_SEASHELL1 0xFFF5EEAA
  298. #define X11_SEASHELL_1 0xFFF5EEAA
  299. #define X11_SEASHELL2 0xEEE5DEAA
  300. #define X11_SEASHELL_2 0xEEE5DEAA
  301. #define X11_SEASHELL3 0xCDC5BFAA
  302. #define X11_SEASHELL_3 0xCDC5BFAA
  303. #define X11_SEASHELL4 0x8B8682AA
  304. #define X11_SEASHELL_4 0x8B8682AA
  305. #define X11_ANTIQUEWHITE1 0xFFEFDBAA
  306. #define X11_ANTIQUE_WHITE_1 0xFFEFDBAA
  307. #define X11_ANTIQUEWHITE2 0xEEDFCCAA
  308. #define X11_ANTIQUE_WHITE_2 0xEEDFCCAA
  309. #define X11_ANTIQUEWHITE3 0xCDC0B0AA
  310. #define X11_ANTIQUE_WHITE_3 0xCDC0B0AA
  311. #define X11_ANTIQUEWHITE4 0x8B8378AA
  312. #define X11_ANTIQUE_WHITE_4 0x8B8378AA
  313. #define X11_BISQUE1 0xFFE4C4AA
  314. #define X11_BISQUE_1 0xFFE4C4AA
  315. #define X11_BISQUE2 0xEED5B7AA
  316. #define X11_BISQUE_2 0xEED5B7AA
  317. #define X11_BISQUE3 0xCDB79EAA
  318. #define X11_BISQUE_3 0xCDB79EAA
  319. #define X11_BISQUE4 0x8B7D6BAA
  320. #define X11_BISQUE_4 0x8B7D6BAA
  321. #define X11_PEACHPUFF1 0xFFDAB9AA
  322. #define X11_PEACH_PUFF_1 0xFFDAB9AA
  323. #define X11_PEACHPUFF2 0xEECBADAA
  324. #define X11_PEACH_PUFF_2 0xEECBADAA
  325. #define X11_PEACHPUFF3 0xCDAF95AA
  326. #define X11_PEACH_PUFF_3 0xCDAF95AA
  327. #define X11_PEACHPUFF4 0x8B7765AA
  328. #define X11_PEACH_PUFF_4 0x8B7765AA
  329. #define X11_NAVAJOWHITE1 0xFFDEADAA
  330. #define X11_NAVAJO_WHITE_1 0xFFDEADAA
  331. #define X11_NAVAJOWHITE2 0xEECFA1AA
  332. #define X11_NAVAJO_WHITE_2 0xEECFA1AA
  333. #define X11_NAVAJOWHITE3 0xCDB38BAA
  334. #define X11_NAVAJO_WHITE_3 0xCDB38BAA
  335. #define X11_NAVAJOWHITE4 0x8B795EAA
  336. #define X11_NAVAJO_WHITE_4 0x8B795EAA
  337. #define X11_LEMONCHIFFON1 0xFFFACDAA
  338. #define X11_LEMON_CHIFFON_1 0xFFFACDAA
  339. #define X11_LEMONCHIFFON2 0xEEE9BFAA
  340. #define X11_LEMON_CHIFFON_2 0xEEE9BFAA
  341. #define X11_LEMONCHIFFON3 0xCDC9A5AA
  342. #define X11_LEMON_CHIFFON_3 0xCDC9A5AA
  343. #define X11_LEMONCHIFFON4 0x8B8970AA
  344. #define X11_LEMON_CHIFFON_4 0x8B8970AA
  345. #define X11_CORNSILK1 0xFFF8DCAA
  346. #define X11_CORNSILK_1 0xFFF8DCAA
  347. #define X11_CORNSILK2 0xEEE8CDAA
  348. #define X11_CORNSILK_2 0xEEE8CDAA
  349. #define X11_CORNSILK3 0xCDC8B1AA
  350. #define X11_CORNSILK_3 0xCDC8B1AA
  351. #define X11_CORNSILK4 0x8B8878AA
  352. #define X11_CORNSILK_4 0x8B8878AA
  353. #define X11_IVORY1 0xFFFFF0AA
  354. #define X11_IVORY_1 0xFFFFF0AA
  355. #define X11_IVORY2 0xEEEEE0AA
  356. #define X11_IVORY_2 0xEEEEE0AA
  357. #define X11_IVORY3 0xCDCDC1AA
  358. #define X11_IVORY_3 0xCDCDC1AA
  359. #define X11_IVORY4 0x8B8B83AA
  360. #define X11_IVORY_4 0x8B8B83AA
  361. #define X11_HONEYDEW1 0xF0FFF0AA
  362. #define X11_HONEYDEW_1 0xF0FFF0AA
  363. #define X11_HONEYDEW2 0xE0EEE0AA
  364. #define X11_HONEYDEW_2 0xE0EEE0AA
  365. #define X11_HONEYDEW3 0xC1CDC1AA
  366. #define X11_HONEYDEW_3 0xC1CDC1AA
  367. #define X11_HONEYDEW4 0x838B83AA
  368. #define X11_HONEYDEW_4 0x838B83AA
  369. #define X11_LAVENDERBLUSH1 0xFFF0F5AA
  370. #define X11_LAVENDER_BLUSH_1 0xFFF0F5AA
  371. #define X11_LAVENDERBLUSH2 0xEEE0E5AA
  372. #define X11_LAVENDER_BLUSH_2 0xEEE0E5AA
  373. #define X11_LAVENDERBLUSH3 0xCDC1C5AA
  374. #define X11_LAVENDER_BLUSH_3 0xCDC1C5AA
  375. #define X11_LAVENDERBLUSH4 0x8B8386AA
  376. #define X11_LAVENDER_BLUSH_4 0x8B8386AA
  377. #define X11_MISTYROSE1 0xFFE4E1AA
  378. #define X11_MISTY_ROSE_1 0xFFE4E1AA
  379. #define X11_MISTYROSE2 0xEED5D2AA
  380. #define X11_MISTY_ROSE_2 0xEED5D2AA
  381. #define X11_MISTYROSE3 0xCDB7B5AA
  382. #define X11_MISTY_ROSE_3 0xCDB7B5AA
  383. #define X11_MISTYROSE4 0x8B7D7BAA
  384. #define X11_MISTY_ROSE_4 0x8B7D7BAA
  385. #define X11_AZURE1 0xF0FFFFAA
  386. #define X11_AZURE_1 0xF0FFFFAA
  387. #define X11_AZURE2 0xE0EEEEAA
  388. #define X11_AZURE_2 0xE0EEEEAA
  389. #define X11_AZURE3 0xC1CDCDAA
  390. #define X11_AZURE_3 0xC1CDCDAA
  391. #define X11_AZURE4 0x838B8BAA
  392. #define X11_AZURE_4 0x838B8BAA
  393. #define X11_SLATEBLUE1 0x836FFFAA
  394. #define X11_SLATE_BLUE_1 0x836FFFAA
  395. #define X11_SLATEBLUE2 0x7A67EEAA
  396. #define X11_SLATE_BLUE_2 0x7A67EEAA
  397. #define X11_SLATEBLUE3 0x6959CDAA
  398. #define X11_SLATE_BLUE_3 0x6959CDAA
  399. #define X11_SLATEBLUE4 0x473C8BAA
  400. #define X11_SLATE_BLUE_4 0x473C8BAA
  401. #define X11_ROYALBLUE1 0x4876FFAA
  402. #define X11_ROYAL_BLUE_1 0x4876FFAA
  403. #define X11_ROYALBLUE2 0x436EEEAA
  404. #define X11_ROYAL_BLUE_2 0x436EEEAA
  405. #define X11_ROYALBLUE3 0x3A5FCDAA
  406. #define X11_ROYAL_BLUE_3 0x3A5FCDAA
  407. #define X11_ROYALBLUE4 0x27408BAA
  408. #define X11_ROYAL_BLUE_4 0x27408BAA
  409. #define X11_BLUE1 0x0000FFAA
  410. #define X11_BLUE_1 0x0000FFAA
  411. #define X11_BLUE2 0x0000EEAA
  412. #define X11_BLUE_2 0x0000EEAA
  413. #define X11_BLUE3 0x0000CDAA
  414. #define X11_BLUE_3 0x0000CDAA
  415. #define X11_BLUE4 0x00008BAA
  416. #define X11_BLUE_4 0x00008BAA
  417. #define X11_DODGERBLUE1 0x1E90FFAA
  418. #define X11_DODGER_BLUE_1 0x1E90FFAA
  419. #define X11_DODGERBLUE2 0x1C86EEAA
  420. #define X11_DODGER_BLUE_2 0x1C86EEAA
  421. #define X11_DODGERBLUE3 0x1874CDAA
  422. #define X11_DODGER_BLUE_3 0x1874CDAA
  423. #define X11_DODGERBLUE4 0x104E8BAA
  424. #define X11_DODGER_BLUE_4 0x104E8BAA
  425. #define X11_STEELBLUE1 0x63B8FFAA
  426. #define X11_STEEL_BLUE_1 0x63B8FFAA
  427. #define X11_STEELBLUE2 0x5CACEEAA
  428. #define X11_STEEL_BLUE_2 0x5CACEEAA
  429. #define X11_STEELBLUE3 0x4F94CDAA
  430. #define X11_STEEL_BLUE_3 0x4F94CDAA
  431. #define X11_STEELBLUE4 0x36648BAA
  432. #define X11_STEEL_BLUE_4 0x36648BAA
  433. #define X11_DEEPSKYBLUE1 0x00BFFFAA
  434. #define X11_DEEP_SKY_BLUE_1 0x00BFFFAA
  435. #define X11_DEEPSKYBLUE2 0x00B2EEAA
  436. #define X11_DEEP_SKY_BLUE_2 0x00B2EEAA
  437. #define X11_DEEPSKYBLUE3 0x009ACDAA
  438. #define X11_DEEP_SKY_BLUE_3 0x009ACDAA
  439. #define X11_DEEPSKYBLUE4 0x00688BAA
  440. #define X11_DEEP_SKY_BLUE_4 0x00688BAA
  441. #define X11_SKYBLUE1 0x87CEFFAA
  442. #define X11_SKY_BLUE_1 0x87CEFFAA
  443. #define X11_SKYBLUE2 0x7EC0EEAA
  444. #define X11_SKY_BLUE_2 0x7EC0EEAA
  445. #define X11_SKYBLUE3 0x6CA6CDAA
  446. #define X11_SKY_BLUE_3 0x6CA6CDAA
  447. #define X11_SKYBLUE4 0x4A708BAA
  448. #define X11_SKY_BLUE_4 0x4A708BAA
  449. #define X11_LIGHTSKYBLUE1 0xB0E2FFAA
  450. #define X11_LIGHT_SKY_BLUE_1 0xB0E2FFAA
  451. #define X11_LIGHTSKYBLUE2 0xA4D3EEAA
  452. #define X11_LIGHT_SKY_BLUE_2 0xA4D3EEAA
  453. #define X11_LIGHTSKYBLUE3 0x8DB6CDAA
  454. #define X11_LIGHT_SKY_BLUE_3 0x8DB6CDAA
  455. #define X11_LIGHTSKYBLUE4 0x607B8BAA
  456. #define X11_LIGHT_SKY_BLUE_4 0x607B8BAA
  457. #define X11_SLATEGRAY1 0xC6E2FFAA
  458. #define X11_SLATE_GRAY_1 0xC6E2FFAA
  459. #define X11_SLATEGRAY2 0xB9D3EEAA
  460. #define X11_SLATE_GRAY_2 0xB9D3EEAA
  461. #define X11_SLATEGRAY3 0x9FB6CDAA
  462. #define X11_SLATE_GRAY_3 0x9FB6CDAA
  463. #define X11_SLATEGRAY4 0x6C7B8BAA
  464. #define X11_SLATE_GRAY_4 0x6C7B8BAA
  465. #define X11_SLATEGREY1 0xC6E2FFAA
  466. #define X11_SLATE_GREY_1 0xC6E2FFAA
  467. #define X11_SLATEGREY2 0xB9D3EEAA
  468. #define X11_SLATE_GREY_2 0xB9D3EEAA
  469. #define X11_SLATEGREY3 0x9FB6CDAA
  470. #define X11_SLATE_GREY_3 0x9FB6CDAA
  471. #define X11_SLATEGREY4 0x6C7B8BAA
  472. #define X11_SLATE_GREY_4 0x6C7B8BAA
  473. #define X11_LIGHTSTEELBLUE1 0xCAE1FFAA
  474. #define X11_LIGHT_STEEL_BLUE_1 0xCAE1FFAA
  475. #define X11_LIGHTSTEELBLUE2 0xBCD2EEAA
  476. #define X11_LIGHT_STEEL_BLUE_2 0xBCD2EEAA
  477. #define X11_LIGHTSTEELBLUE3 0xA2B5CDAA
  478. #define X11_LIGHT_STEEL_BLUE_3 0xA2B5CDAA
  479. #define X11_LIGHTSTEELBLUE4 0x6E7B8BAA
  480. #define X11_LIGHT_STEEL_BLUE_4 0x6E7B8BAA
  481. #define X11_LIGHTBLUE1 0xBFEFFFAA
  482. #define X11_LIGHT_BLUE_1 0xBFEFFFAA
  483. #define X11_LIGHTBLUE2 0xB2DFEEAA
  484. #define X11_LIGHT_BLUE_2 0xB2DFEEAA
  485. #define X11_LIGHTBLUE3 0x9AC0CDAA
  486. #define X11_LIGHT_BLUE_3 0x9AC0CDAA
  487. #define X11_LIGHTBLUE4 0x68838BAA
  488. #define X11_LIGHT_BLUE_4 0x68838BAA
  489. #define X11_LIGHTCYAN1 0xE0FFFFAA
  490. #define X11_LIGHT_CYAN_1 0xE0FFFFAA
  491. #define X11_LIGHTCYAN2 0xD1EEEEAA
  492. #define X11_LIGHT_CYAN_2 0xD1EEEEAA
  493. #define X11_LIGHTCYAN3 0xB4CDCDAA
  494. #define X11_LIGHT_CYAN_3 0xB4CDCDAA
  495. #define X11_LIGHTCYAN4 0x7A8B8BAA
  496. #define X11_LIGHT_CYAN_4 0x7A8B8BAA
  497. #define X11_PALETURQUOISE1 0xBBFFFFAA
  498. #define X11_PALE_TURQUOISE_1 0xBBFFFFAA
  499. #define X11_PALETURQUOISE2 0xAEEEEEAA
  500. #define X11_PALE_TURQUOISE_2 0xAEEEEEAA
  501. #define X11_PALETURQUOISE3 0x96CDCDAA
  502. #define X11_PALE_TURQUOISE_3 0x96CDCDAA
  503. #define X11_PALETURQUOISE4 0x668B8BAA
  504. #define X11_PALE_TURQUOISE_4 0x668B8BAA
  505. #define X11_CADETBLUE1 0x98F5FFAA
  506. #define X11_CADET_BLUE_1 0x98F5FFAA
  507. #define X11_CADETBLUE2 0x8EE5EEAA
  508. #define X11_CADET_BLUE_2 0x8EE5EEAA
  509. #define X11_CADETBLUE3 0x7AC5CDAA
  510. #define X11_CADET_BLUE_3 0x7AC5CDAA
  511. #define X11_CADETBLUE4 0x53868BAA
  512. #define X11_CADET_BLUE_4 0x53868BAA
  513. #define X11_TURQUOISE1 0x00F5FFAA
  514. #define X11_TURQUOISE_1 0x00F5FFAA
  515. #define X11_TURQUOISE2 0x00E5EEAA
  516. #define X11_TURQUOISE_2 0x00E5EEAA
  517. #define X11_TURQUOISE3 0x00C5CDAA
  518. #define X11_TURQUOISE_3 0x00C5CDAA
  519. #define X11_TURQUOISE4 0x00868BAA
  520. #define X11_TURQUOISE_4 0x00868BAA
  521. #define X11_CYAN1 0x00FFFFAA
  522. #define X11_CYAN_1 0x00FFFFAA
  523. #define X11_CYAN2 0x00EEEEAA
  524. #define X11_CYAN_2 0x00EEEEAA
  525. #define X11_CYAN3 0x00CDCDAA
  526. #define X11_CYAN_3 0x00CDCDAA
  527. #define X11_CYAN4 0x008B8BAA
  528. #define X11_CYAN_4 0x008B8BAA
  529. #define X11_DARKSLATEGRAY1 0x97FFFFAA
  530. #define X11_DARK_SLATE_GRAY_1 0x97FFFFAA
  531. #define X11_DARKSLATEGRAY2 0x8DEEEEAA
  532. #define X11_DARK_SLATE_GRAY_2 0x8DEEEEAA
  533. #define X11_DARKSLATEGRAY3 0x79CDCDAA
  534. #define X11_DARK_SLATE_GRAY_3 0x79CDCDAA
  535. #define X11_DARKSLATEGRAY4 0x528B8BAA
  536. #define X11_DARK_SLATE_GRAY_4 0x528B8BAA
  537. #define X11_DARKSLATEGREY1 0x97FFFFAA
  538. #define X11_DARK_SLATE_GREY_1 0x97FFFFAA
  539. #define X11_DARKSLATEGREY2 0x8DEEEEAA
  540. #define X11_DARK_SLATE_GREY_2 0x8DEEEEAA
  541. #define X11_DARKSLATEGREY3 0x79CDCDAA
  542. #define X11_DARK_SLATE_GREY_3 0x79CDCDAA
  543. #define X11_DARKSLATEGREY4 0x528B8BAA
  544. #define X11_DARK_SLATE_GREY_4 0x528B8BAA
  545. #define X11_AQUAMARINE1 0x7FFFD4AA
  546. #define X11_AQUAMARINE_1 0x7FFFD4AA
  547. #define X11_AQUAMARINE2 0x76EEC6AA
  548. #define X11_AQUAMARINE_2 0x76EEC6AA
  549. #define X11_AQUAMARINE3 0x66CDAAAA
  550. #define X11_AQUAMARINE_3 0x66CDAAAA
  551. #define X11_AQUAMARINE4 0x458B74AA
  552. #define X11_AQUAMARINE_4 0x458B74AA
  553. #define X11_DARKSEAGREEN1 0xC1FFC1AA
  554. #define X11_DARK_SEA_GREEN_1 0xC1FFC1AA
  555. #define X11_DARKSEAGREEN2 0xB4EEB4AA
  556. #define X11_DARK_SEA_GREEN_2 0xB4EEB4AA
  557. #define X11_DARKSEAGREEN3 0x9BCD9BAA
  558. #define X11_DARK_SEA_GREEN_3 0x9BCD9BAA
  559. #define X11_DARKSEAGREEN4 0x698B69AA
  560. #define X11_DARK_SEA_GREEN_4 0x698B69AA
  561. #define X11_SEAGREEN1 0x54FF9FAA
  562. #define X11_SEA_GREEN_1 0x54FF9FAA
  563. #define X11_SEAGREEN2 0x4EEE94AA
  564. #define X11_SEA_GREEN_2 0x4EEE94AA
  565. #define X11_SEAGREEN3 0x43CD80AA
  566. #define X11_SEA_GREEN_3 0x43CD80AA
  567. #define X11_SEAGREEN4 0x2E8B57AA
  568. #define X11_SEA_GREEN_4 0x2E8B57AA
  569. #define X11_PALEGREEN1 0x9AFF9AAA
  570. #define X11_PALE_GREEN_1 0x9AFF9AAA
  571. #define X11_PALEGREEN2 0x90EE90AA
  572. #define X11_PALE_GREEN_2 0x90EE90AA
  573. #define X11_PALEGREEN3 0x7CCD7CAA
  574. #define X11_PALE_GREEN_3 0x7CCD7CAA
  575. #define X11_PALEGREEN4 0x548B54AA
  576. #define X11_PALE_GREEN_4 0x548B54AA
  577. #define X11_SPRINGGREEN1 0x00FF7FAA
  578. #define X11_SPRING_GREEN_1 0x00FF7FAA
  579. #define X11_SPRINGGREEN2 0x00EE76AA
  580. #define X11_SPRING_GREEN_2 0x00EE76AA
  581. #define X11_SPRINGGREEN3 0x00CD66AA
  582. #define X11_SPRING_GREEN_3 0x00CD66AA
  583. #define X11_SPRINGGREEN4 0x008B45AA
  584. #define X11_SPRING_GREEN_4 0x008B45AA
  585. #define X11_GREEN1 0x00FF00AA
  586. #define X11_GREEN_1 0x00FF00AA
  587. #define X11_GREEN2 0x00EE00AA
  588. #define X11_GREEN_2 0x00EE00AA
  589. #define X11_GREEN3 0x00CD00AA
  590. #define X11_GREEN_3 0x00CD00AA
  591. #define X11_GREEN4 0x008B00AA
  592. #define X11_GREEN_4 0x008B00AA
  593. #define X11_CHARTREUSE1 0x7FFF00AA
  594. #define X11_CHARTREUSE_1 0x7FFF00AA
  595. #define X11_CHARTREUSE2 0x76EE00AA
  596. #define X11_CHARTREUSE_2 0x76EE00AA
  597. #define X11_CHARTREUSE3 0x66CD00AA
  598. #define X11_CHARTREUSE_3 0x66CD00AA
  599. #define X11_CHARTREUSE4 0x458B00AA
  600. #define X11_CHARTREUSE_4 0x458B00AA
  601. #define X11_OLIVEDRAB1 0xC0FF3EAA
  602. #define X11_OLIVE_DRAB_1 0xC0FF3EAA
  603. #define X11_OLIVEDRAB2 0xB3EE3AAA
  604. #define X11_OLIVE_DRAB_2 0xB3EE3AAA
  605. #define X11_OLIVEDRAB3 0x9ACD32AA
  606. #define X11_OLIVE_DRAB_3 0x9ACD32AA
  607. #define X11_OLIVEDRAB4 0x698B22AA
  608. #define X11_OLIVE_DRAB_4 0x698B22AA
  609. #define X11_DARKOLIVEGREEN1 0xCAFF70AA
  610. #define X11_DARK_OLIVE_GREEN_1 0xCAFF70AA
  611. #define X11_DARKOLIVEGREEN2 0xBCEE68AA
  612. #define X11_DARK_OLIVE_GREEN_2 0xBCEE68AA
  613. #define X11_DARKOLIVEGREEN3 0xA2CD5AAA
  614. #define X11_DARK_OLIVE_GREEN_3 0xA2CD5AAA
  615. #define X11_DARKOLIVEGREEN4 0x6E8B3DAA
  616. #define X11_DARK_OLIVE_GREEN_4 0x6E8B3DAA
  617. #define X11_KHAKI1 0xFFF68FAA
  618. #define X11_KHAKI_1 0xFFF68FAA
  619. #define X11_KHAKI2 0xEEE685AA
  620. #define X11_KHAKI_2 0xEEE685AA
  621. #define X11_KHAKI3 0xCDC673AA
  622. #define X11_KHAKI_3 0xCDC673AA
  623. #define X11_KHAKI4 0x8B864EAA
  624. #define X11_KHAKI_4 0x8B864EAA
  625. #define X11_LIGHTGOLDENROD1 0xFFEC8BAA
  626. #define X11_LIGHT_GOLDENROD_1 0xFFEC8BAA
  627. #define X11_LIGHTGOLDENROD2 0xEEDC82AA
  628. #define X11_LIGHT_GOLDENROD_2 0xEEDC82AA
  629. #define X11_LIGHTGOLDENROD3 0xCDBE70AA
  630. #define X11_LIGHT_GOLDENROD_3 0xCDBE70AA
  631. #define X11_LIGHTGOLDENROD4 0x8B814CAA
  632. #define X11_LIGHT_GOLDENROD_4 0x8B814CAA
  633. #define X11_LIGHTYELLOW1 0xFFFFE0AA
  634. #define X11_LIGHT_YELLOW_1 0xFFFFE0AA
  635. #define X11_LIGHTYELLOW2 0xEEEED1AA
  636. #define X11_LIGHT_YELLOW_2 0xEEEED1AA
  637. #define X11_LIGHTYELLOW3 0xCDCDB4AA
  638. #define X11_LIGHT_YELLOW_3 0xCDCDB4AA
  639. #define X11_LIGHTYELLOW4 0x8B8B7AAA
  640. #define X11_LIGHT_YELLOW_4 0x8B8B7AAA
  641. #define X11_YELLOW1 0xFFFF00AA
  642. #define X11_YELLOW_1 0xFFFF00AA
  643. #define X11_YELLOW2 0xEEEE00AA
  644. #define X11_YELLOW_2 0xEEEE00AA
  645. #define X11_YELLOW3 0xCDCD00AA
  646. #define X11_YELLOW_3 0xCDCD00AA
  647. #define X11_YELLOW4 0x8B8B00AA
  648. #define X11_YELLOW_4 0x8B8B00AA
  649. #define X11_GOLD1 0xFFD700AA
  650. #define X11_GOLD_1 0xFFD700AA
  651. #define X11_GOLD2 0xEEC900AA
  652. #define X11_GOLD_2 0xEEC900AA
  653. #define X11_GOLD3 0xCDAD00AA
  654. #define X11_GOLD_3 0xCDAD00AA
  655. #define X11_GOLD4 0x8B7500AA
  656. #define X11_GOLD_4 0x8B7500AA
  657. #define X11_GOLDENROD1 0xFFC125AA
  658. #define X11_GOLDENROD_1 0xFFC125AA
  659. #define X11_GOLDENROD2 0xEEB422AA
  660. #define X11_GOLDENROD_2 0xEEB422AA
  661. #define X11_GOLDENROD3 0xCD9B1DAA
  662. #define X11_GOLDENROD_3 0xCD9B1DAA
  663. #define X11_GOLDENROD4 0x8B6914AA
  664. #define X11_GOLDENROD_4 0x8B6914AA
  665. #define X11_DARKGOLDENROD1 0xFFB90FAA
  666. #define X11_DARK_GOLDENROD_1 0xFFB90FAA
  667. #define X11_DARKGOLDENROD2 0xEEAD0EAA
  668. #define X11_DARK_GOLDENROD_2 0xEEAD0EAA
  669. #define X11_DARKGOLDENROD3 0xCD950CAA
  670. #define X11_DARK_GOLDENROD_3 0xCD950CAA
  671. #define X11_DARKGOLDENROD4 0x8B6508AA
  672. #define X11_DARK_GOLDENROD_4 0x8B6508AA
  673. #define X11_ROSYBROWN1 0xFFC1C1AA
  674. #define X11_ROSY_BROWN_1 0xFFC1C1AA
  675. #define X11_ROSYBROWN2 0xEEB4B4AA
  676. #define X11_ROSY_BROWN_2 0xEEB4B4AA
  677. #define X11_ROSYBROWN3 0xCD9B9BAA
  678. #define X11_ROSY_BROWN_3 0xCD9B9BAA
  679. #define X11_ROSYBROWN4 0x8B6969AA
  680. #define X11_ROSY_BROWN_4 0x8B6969AA
  681. #define X11_INDIANRED1 0xFF6A6AAA
  682. #define X11_INDIAN_RED_1 0xFF6A6AAA
  683. #define X11_INDIANRED2 0xEE6363AA
  684. #define X11_INDIAN_RED_2 0xEE6363AA
  685. #define X11_INDIANRED3 0xCD5555AA
  686. #define X11_INDIAN_RED_3 0xCD5555AA
  687. #define X11_INDIANRED4 0x8B3A3AAA
  688. #define X11_INDIAN_RED_4 0x8B3A3AAA
  689. #define X11_SIENNA1 0xFF8247AA
  690. #define X11_SIENNA_1 0xFF8247AA
  691. #define X11_SIENNA2 0xEE7942AA
  692. #define X11_SIENNA_2 0xEE7942AA
  693. #define X11_SIENNA3 0xCD6839AA
  694. #define X11_SIENNA_3 0xCD6839AA
  695. #define X11_SIENNA4 0x8B4726AA
  696. #define X11_SIENNA_4 0x8B4726AA
  697. #define X11_BURLYWOOD1 0xFFD39BAA
  698. #define X11_BURLYWOOD_1 0xFFD39BAA
  699. #define X11_BURLYWOOD2 0xEEC591AA
  700. #define X11_BURLYWOOD_2 0xEEC591AA
  701. #define X11_BURLYWOOD3 0xCDAA7DAA
  702. #define X11_BURLYWOOD_3 0xCDAA7DAA
  703. #define X11_BURLYWOOD4 0x8B7355AA
  704. #define X11_BURLYWOOD_4 0x8B7355AA
  705. #define X11_WHEAT1 0xFFE7BAAA
  706. #define X11_WHEAT_1 0xFFE7BAAA
  707. #define X11_WHEAT2 0xEED8AEAA
  708. #define X11_WHEAT_2 0xEED8AEAA
  709. #define X11_WHEAT3 0xCDBA96AA
  710. #define X11_WHEAT_3 0xCDBA96AA
  711. #define X11_WHEAT4 0x8B7E66AA
  712. #define X11_WHEAT_4 0x8B7E66AA
  713. #define X11_TAN1 0xFFA54FAA
  714. #define X11_TAN_1 0xFFA54FAA
  715. #define X11_TAN2 0xEE9A49AA
  716. #define X11_TAN_2 0xEE9A49AA
  717. #define X11_TAN3 0xCD853FAA
  718. #define X11_TAN_3 0xCD853FAA
  719. #define X11_TAN4 0x8B5A2BAA
  720. #define X11_TAN_4 0x8B5A2BAA
  721. #define X11_CHOCOLATE1 0xFF7F24AA
  722. #define X11_CHOCOLATE_1 0xFF7F24AA
  723. #define X11_CHOCOLATE2 0xEE7621AA
  724. #define X11_CHOCOLATE_2 0xEE7621AA
  725. #define X11_CHOCOLATE3 0xCD661DAA
  726. #define X11_CHOCOLATE_3 0xCD661DAA
  727. #define X11_CHOCOLATE4 0x8B4513AA
  728. #define X11_CHOCOLATE_4 0x8B4513AA
  729. #define X11_FIREBRICK1 0xFF3030AA
  730. #define X11_FIREBRICK_1 0xFF3030AA
  731. #define X11_FIREBRICK2 0xEE2C2CAA
  732. #define X11_FIREBRICK_2 0xEE2C2CAA
  733. #define X11_FIREBRICK3 0xCD2626AA
  734. #define X11_FIREBRICK_3 0xCD2626AA
  735. #define X11_FIREBRICK4 0x8B1A1AAA
  736. #define X11_FIREBRICK_4 0x8B1A1AAA
  737. #define X11_BROWN1 0xFF4040AA
  738. #define X11_BROWN_1 0xFF4040AA
  739. #define X11_BROWN2 0xEE3B3BAA
  740. #define X11_BROWN_2 0xEE3B3BAA
  741. #define X11_BROWN3 0xCD3333AA
  742. #define X11_BROWN_3 0xCD3333AA
  743. #define X11_BROWN4 0x8B2323AA
  744. #define X11_BROWN_4 0x8B2323AA
  745. #define X11_SALMON1 0xFF8C69AA
  746. #define X11_SALMON_1 0xFF8C69AA
  747. #define X11_SALMON2 0xEE8262AA
  748. #define X11_SALMON_2 0xEE8262AA
  749. #define X11_SALMON3 0xCD7054AA
  750. #define X11_SALMON_3 0xCD7054AA
  751. #define X11_SALMON4 0x8B4C39AA
  752. #define X11_SALMON_4 0x8B4C39AA
  753. #define X11_LIGHTSALMON1 0xFFA07AAA
  754. #define X11_LIGHT_SALMON_1 0xFFA07AAA
  755. #define X11_LIGHTSALMON2 0xEE9572AA
  756. #define X11_LIGHT_SALMON_2 0xEE9572AA
  757. #define X11_LIGHTSALMON3 0xCD8162AA
  758. #define X11_LIGHT_SALMON_3 0xCD8162AA
  759. #define X11_LIGHTSALMON4 0x8B5742AA
  760. #define X11_LIGHT_SALMON_4 0x8B5742AA
  761. #define X11_ORANGE1 0xFFA500AA
  762. #define X11_ORANGE_1 0xFFA500AA
  763. #define X11_ORANGE2 0xEE9A00AA
  764. #define X11_ORANGE_2 0xEE9A00AA
  765. #define X11_ORANGE3 0xCD8500AA
  766. #define X11_ORANGE_3 0xCD8500AA
  767. #define X11_ORANGE4 0x8B5A00AA
  768. #define X11_ORANGE_4 0x8B5A00AA
  769. #define X11_DARKORANGE1 0xFF7F00AA
  770. #define X11_DARK_ORANGE_1 0xFF7F00AA
  771. #define X11_DARKORANGE2 0xEE7600AA
  772. #define X11_DARK_ORANGE_2 0xEE7600AA
  773. #define X11_DARKORANGE3 0xCD6600AA
  774. #define X11_DARK_ORANGE_3 0xCD6600AA
  775. #define X11_DARKORANGE4 0x8B4500AA
  776. #define X11_DARK_ORANGE_4 0x8B4500AA
  777. #define X11_CORAL1 0xFF7256AA
  778. #define X11_CORAL_1 0xFF7256AA
  779. #define X11_CORAL2 0xEE6A50AA
  780. #define X11_CORAL_2 0xEE6A50AA
  781. #define X11_CORAL3 0xCD5B45AA
  782. #define X11_CORAL_3 0xCD5B45AA
  783. #define X11_CORAL4 0x8B3E2FAA
  784. #define X11_CORAL_4 0x8B3E2FAA
  785. #define X11_TOMATO1 0xFF6347AA
  786. #define X11_TOMATO_1 0xFF6347AA
  787. #define X11_TOMATO2 0xEE5C42AA
  788. #define X11_TOMATO_2 0xEE5C42AA
  789. #define X11_TOMATO3 0xCD4F39AA
  790. #define X11_TOMATO_3 0xCD4F39AA
  791. #define X11_TOMATO4 0x8B3626AA
  792. #define X11_TOMATO_4 0x8B3626AA
  793. #define X11_ORANGERED1 0xFF4500AA
  794. #define X11_ORANGE_RED_1 0xFF4500AA
  795. #define X11_ORANGERED2 0xEE4000AA
  796. #define X11_ORANGE_RED_2 0xEE4000AA
  797. #define X11_ORANGERED3 0xCD3700AA
  798. #define X11_ORANGE_RED_3 0xCD3700AA
  799. #define X11_ORANGERED4 0x8B2500AA
  800. #define X11_ORANGE_RED_4 0x8B2500AA
  801. #define X11_RED1 0xFF0000AA
  802. #define X11_RED_1 0xFF0000AA
  803. #define X11_RED2 0xEE0000AA
  804. #define X11_RED_2 0xEE0000AA
  805. #define X11_RED3 0xCD0000AA
  806. #define X11_RED_3 0xCD0000AA
  807. #define X11_RED4 0x8B0000AA
  808. #define X11_RED_4 0x8B0000AA
  809. #define X11_DEEPPINK1 0xFF1493AA
  810. #define X11_DEEP_PINK_1 0xFF1493AA
  811. #define X11_DEEPPINK2 0xEE1289AA
  812. #define X11_DEEP_PINK_2 0xEE1289AA
  813. #define X11_DEEPPINK3 0xCD1076AA
  814. #define X11_DEEP_PINK_3 0xCD1076AA
  815. #define X11_DEEPPINK4 0x8B0A50AA
  816. #define X11_DEEP_PINK_4 0x8B0A50AA
  817. #define X11_HOTPINK1 0xFF6EB4AA
  818. #define X11_HOT_PINK_1 0xFF6EB4AA
  819. #define X11_HOTPINK2 0xEE6AA7AA
  820. #define X11_HOT_PINK_2 0xEE6AA7AA
  821. #define X11_HOTPINK3 0xCD6090AA
  822. #define X11_HOT_PINK_3 0xCD6090AA
  823. #define X11_HOTPINK4 0x8B3A62AA
  824. #define X11_HOT_PINK_4 0x8B3A62AA
  825. #define X11_PINK1 0xFFB5C5AA
  826. #define X11_PINK_1 0xFFB5C5AA
  827. #define X11_PINK2 0xEEA9B8AA
  828. #define X11_PINK_2 0xEEA9B8AA
  829. #define X11_PINK3 0xCD919EAA
  830. #define X11_PINK_3 0xCD919EAA
  831. #define X11_PINK4 0x8B636CAA
  832. #define X11_PINK_4 0x8B636CAA
  833. #define X11_LIGHTPINK1 0xFFAEB9AA
  834. #define X11_LIGHT_PINK_1 0xFFAEB9AA
  835. #define X11_LIGHTPINK2 0xEEA2ADAA
  836. #define X11_LIGHT_PINK_2 0xEEA2ADAA
  837. #define X11_LIGHTPINK3 0xCD8C95AA
  838. #define X11_LIGHT_PINK_3 0xCD8C95AA
  839. #define X11_LIGHTPINK4 0x8B5F65AA
  840. #define X11_LIGHT_PINK_4 0x8B5F65AA
  841. #define X11_PALEVIOLETRED1 0xFF82ABAA
  842. #define X11_PALE_VIOLET_RED_1 0xFF82ABAA
  843. #define X11_PALEVIOLETRED2 0xEE799FAA
  844. #define X11_PALE_VIOLET_RED_2 0xEE799FAA
  845. #define X11_PALEVIOLETRED3 0xCD6889AA
  846. #define X11_PALE_VIOLET_RED_3 0xCD6889AA
  847. #define X11_PALEVIOLETRED4 0x8B475DAA
  848. #define X11_PALE_VIOLET_RED_4 0x8B475DAA
  849. #define X11_MAROON1 0xFF34B3AA
  850. #define X11_MAROON_1 0xFF34B3AA
  851. #define X11_MAROON2 0xEE30A7AA
  852. #define X11_MAROON_2 0xEE30A7AA
  853. #define X11_MAROON3 0xCD2990AA
  854. #define X11_MAROON_3 0xCD2990AA
  855. #define X11_MAROON4 0x8B1C62AA
  856. #define X11_MAROON_4 0x8B1C62AA
  857. #define X11_VIOLETRED1 0xFF3E96AA
  858. #define X11_VIOLET_RED_1 0xFF3E96AA
  859. #define X11_VIOLETRED2 0xEE3A8CAA
  860. #define X11_VIOLET_RED_2 0xEE3A8CAA
  861. #define X11_VIOLETRED3 0xCD3278AA
  862. #define X11_VIOLET_RED_3 0xCD3278AA
  863. #define X11_VIOLETRED4 0x8B2252AA
  864. #define X11_VIOLET_RED_4 0x8B2252AA
  865. #define X11_MAGENTA1 0xFF00FFAA
  866. #define X11_MAGENTA_1 0xFF00FFAA
  867. #define X11_MAGENTA2 0xEE00EEAA
  868. #define X11_MAGENTA_2 0xEE00EEAA
  869. #define X11_MAGENTA3 0xCD00CDAA
  870. #define X11_MAGENTA_3 0xCD00CDAA
  871. #define X11_MAGENTA4 0x8B008BAA
  872. #define X11_MAGENTA_4 0x8B008BAA
  873. #define X11_ORCHID1 0xFF83FAAA
  874. #define X11_ORCHID_1 0xFF83FAAA
  875. #define X11_ORCHID2 0xEE7AE9AA
  876. #define X11_ORCHID_2 0xEE7AE9AA
  877. #define X11_ORCHID3 0xCD69C9AA
  878. #define X11_ORCHID_3 0xCD69C9AA
  879. #define X11_ORCHID4 0x8B4789AA
  880. #define X11_ORCHID_4 0x8B4789AA
  881. #define X11_PLUM1 0xFFBBFFAA
  882. #define X11_PLUM_1 0xFFBBFFAA
  883. #define X11_PLUM2 0xEEAEEEAA
  884. #define X11_PLUM_2 0xEEAEEEAA
  885. #define X11_PLUM3 0xCD96CDAA
  886. #define X11_PLUM_3 0xCD96CDAA
  887. #define X11_PLUM4 0x8B668BAA
  888. #define X11_PLUM_4 0x8B668BAA
  889. #define X11_MEDIUMORCHID1 0xE066FFAA
  890. #define X11_MEDIUM_ORCHID_1 0xE066FFAA
  891. #define X11_MEDIUMORCHID2 0xD15FEEAA
  892. #define X11_MEDIUM_ORCHID_2 0xD15FEEAA
  893. #define X11_MEDIUMORCHID3 0xB452CDAA
  894. #define X11_MEDIUM_ORCHID_3 0xB452CDAA
  895. #define X11_MEDIUMORCHID4 0x7A378BAA
  896. #define X11_MEDIUM_ORCHID_4 0x7A378BAA
  897. #define X11_DARKORCHID1 0xBF3EFFAA
  898. #define X11_DARK_ORCHID_1 0xBF3EFFAA
  899. #define X11_DARKORCHID2 0xB23AEEAA
  900. #define X11_DARK_ORCHID_2 0xB23AEEAA
  901. #define X11_DARKORCHID3 0x9A32CDAA
  902. #define X11_DARK_ORCHID_3 0x9A32CDAA
  903. #define X11_DARKORCHID4 0x68228BAA
  904. #define X11_DARK_ORCHID_4 0x68228BAA
  905. #define X11_PURPLE1 0x9B30FFAA
  906. #define X11_PURPLE_1 0x9B30FFAA
  907. #define X11_PURPLE2 0x912CEEAA
  908. #define X11_PURPLE_2 0x912CEEAA
  909. #define X11_PURPLE3 0x7D26CDAA
  910. #define X11_PURPLE_3 0x7D26CDAA
  911. #define X11_PURPLE4 0x551A8BAA
  912. #define X11_PURPLE_4 0x551A8BAA
  913. #define X11_MEDIUMPURPLE1 0xAB82FFAA
  914. #define X11_MEDIUM_PURPLE_1 0xAB82FFAA
  915. #define X11_MEDIUMPURPLE2 0x9F79EEAA
  916. #define X11_MEDIUM_PURPLE_2 0x9F79EEAA
  917. #define X11_MEDIUMPURPLE3 0x8968CDAA
  918. #define X11_MEDIUM_PURPLE_3 0x8968CDAA
  919. #define X11_MEDIUMPURPLE4 0x5D478BAA
  920. #define X11_MEDIUM_PURPLE_4 0x5D478BAA
  921. #define X11_THISTLE1 0xFFE1FFAA
  922. #define X11_THISTLE_1 0xFFE1FFAA
  923. #define X11_THISTLE2 0xEED2EEAA
  924. #define X11_THISTLE_2 0xEED2EEAA
  925. #define X11_THISTLE3 0xCDB5CDAA
  926. #define X11_THISTLE_3 0xCDB5CDAA
  927. #define X11_THISTLE4 0x8B7B8BAA
  928. #define X11_THISTLE_4 0x8B7B8BAA
  929. #define X11_GRAY0 0x000000AA
  930. #define X11_GRAY_0 0x000000AA
  931. #define X11_GREY0 0x000000AA
  932. #define X11_GREY_0 0x000000AA
  933. #define X11_GRAY1 0x030303AA
  934. #define X11_GRAY_1 0x030303AA
  935. #define X11_GREY1 0x030303AA
  936. #define X11_GREY_1 0x030303AA
  937. #define X11_GRAY2 0x050505AA
  938. #define X11_GRAY_2 0x050505AA
  939. #define X11_GREY2 0x050505AA
  940. #define X11_GREY_2 0x050505AA
  941. #define X11_GRAY3 0x080808AA
  942. #define X11_GRAY_3 0x080808AA
  943. #define X11_GREY3 0x080808AA
  944. #define X11_GREY_3 0x080808AA
  945. #define X11_GRAY4 0x0A0A0AAA
  946. #define X11_GRAY_4 0x0A0A0AAA
  947. #define X11_GREY4 0x0A0A0AAA
  948. #define X11_GREY_4 0x0A0A0AAA
  949. #define X11_GRAY5 0x0D0D0DAA
  950. #define X11_GRAY_5 0x0D0D0DAA
  951. #define X11_GREY5 0x0D0D0DAA
  952. #define X11_GREY_5 0x0D0D0DAA
  953. #define X11_GRAY6 0x0F0F0FAA
  954. #define X11_GRAY_6 0x0F0F0FAA
  955. #define X11_GREY6 0x0F0F0FAA
  956. #define X11_GREY_6 0x0F0F0FAA
  957. #define X11_GRAY7 0x121212AA
  958. #define X11_GRAY_7 0x121212AA
  959. #define X11_GREY7 0x121212AA
  960. #define X11_GREY_7 0x121212AA
  961. #define X11_GRAY8 0x141414AA
  962. #define X11_GRAY_8 0x141414AA
  963. #define X11_GREY8 0x141414AA
  964. #define X11_GREY_8 0x141414AA
  965. #define X11_GRAY9 0x171717AA
  966. #define X11_GRAY_9 0x171717AA
  967. #define X11_GREY9 0x171717AA
  968. #define X11_GREY_9 0x171717AA
  969. #define X11_GRAY10 0x1A1A1AAA
  970. #define X11_GRAY_10 0x1A1A1AAA
  971. #define X11_GREY10 0x1A1A1AAA
  972. #define X11_GREY_10 0x1A1A1AAA
  973. #define X11_GRAY11 0x1C1C1CAA
  974. #define X11_GRAY_11 0x1C1C1CAA
  975. #define X11_GREY11 0x1C1C1CAA
  976. #define X11_GREY_11 0x1C1C1CAA
  977. #define X11_GRAY12 0x1F1F1FAA
  978. #define X11_GRAY_12 0x1F1F1FAA
  979. #define X11_GREY12 0x1F1F1FAA
  980. #define X11_GREY_12 0x1F1F1FAA
  981. #define X11_GRAY13 0x212121AA
  982. #define X11_GRAY_13 0x212121AA
  983. #define X11_GREY13 0x212121AA
  984. #define X11_GREY_13 0x212121AA
  985. #define X11_GRAY14 0x242424AA
  986. #define X11_GRAY_14 0x242424AA
  987. #define X11_GREY14 0x242424AA
  988. #define X11_GREY_14 0x242424AA
  989. #define X11_GRAY15 0x262626AA
  990. #define X11_GRAY_15 0x262626AA
  991. #define X11_GREY15 0x262626AA
  992. #define X11_GREY_15 0x262626AA
  993. #define X11_GRAY16 0x292929AA
  994. #define X11_GRAY_16 0x292929AA
  995. #define X11_GREY16 0x292929AA
  996. #define X11_GREY_16 0x292929AA
  997. #define X11_GRAY17 0x2B2B2BAA
  998. #define X11_GRAY_17 0x2B2B2BAA
  999. #define X11_GREY17 0x2B2B2BAA
  1000. #define X11_GREY_17 0x2B2B2BAA
  1001. #define X11_GRAY18 0x2E2E2EAA
  1002. #define X11_GRAY_18 0x2E2E2EAA
  1003. #define X11_GREY18 0x2E2E2EAA
  1004. #define X11_GREY_18 0x2E2E2EAA
  1005. #define X11_GRAY19 0x303030AA
  1006. #define X11_GRAY_19 0x303030AA
  1007. #define X11_GREY19 0x303030AA
  1008. #define X11_GREY_19 0x303030AA
  1009. #define X11_GRAY20 0x333333AA
  1010. #define X11_GRAY_20 0x333333AA
  1011. #define X11_GREY20 0x333333AA
  1012. #define X11_GREY_20 0x333333AA
  1013. #define X11_GRAY21 0x363636AA
  1014. #define X11_GRAY_21 0x363636AA
  1015. #define X11_GREY21 0x363636AA
  1016. #define X11_GREY_21 0x363636AA
  1017. #define X11_GRAY22 0x383838AA
  1018. #define X11_GRAY_22 0x383838AA
  1019. #define X11_GREY22 0x383838AA
  1020. #define X11_GREY_22 0x383838AA
  1021. #define X11_GRAY23 0x3B3B3BAA
  1022. #define X11_GRAY_23 0x3B3B3BAA
  1023. #define X11_GREY23 0x3B3B3BAA
  1024. #define X11_GREY_23 0x3B3B3BAA
  1025. #define X11_GRAY24 0x3D3D3DAA
  1026. #define X11_GRAY_24 0x3D3D3DAA
  1027. #define X11_GREY24 0x3D3D3DAA
  1028. #define X11_GREY_24 0x3D3D3DAA
  1029. #define X11_GRAY25 0x404040AA
  1030. #define X11_GRAY_25 0x404040AA
  1031. #define X11_GREY25 0x404040AA
  1032. #define X11_GREY_25 0x404040AA
  1033. #define X11_GRAY26 0x424242AA
  1034. #define X11_GRAY_26 0x424242AA
  1035. #define X11_GREY26 0x424242AA
  1036. #define X11_GREY_26 0x424242AA
  1037. #define X11_GRAY27 0x454545AA
  1038. #define X11_GRAY_27 0x454545AA
  1039. #define X11_GREY27 0x454545AA
  1040. #define X11_GREY_27 0x454545AA
  1041. #define X11_GRAY28 0x474747AA
  1042. #define X11_GRAY_28 0x474747AA
  1043. #define X11_GREY28 0x474747AA
  1044. #define X11_GREY_28 0x474747AA
  1045. #define X11_GRAY29 0x4A4A4AAA
  1046. #define X11_GRAY_29 0x4A4A4AAA
  1047. #define X11_GREY29 0x4A4A4AAA
  1048. #define X11_GREY_29 0x4A4A4AAA
  1049. #define X11_GRAY30 0x4D4D4DAA
  1050. #define X11_GRAY_30 0x4D4D4DAA
  1051. #define X11_GREY30 0x4D4D4DAA
  1052. #define X11_GREY_30 0x4D4D4DAA
  1053. #define X11_GRAY31 0x4F4F4FAA
  1054. #define X11_GRAY_31 0x4F4F4FAA
  1055. #define X11_GREY31 0x4F4F4FAA
  1056. #define X11_GREY_31 0x4F4F4FAA
  1057. #define X11_GRAY32 0x525252AA
  1058. #define X11_GRAY_32 0x525252AA
  1059. #define X11_GREY32 0x525252AA
  1060. #define X11_GREY_32 0x525252AA
  1061. #define X11_GRAY33 0x545454AA
  1062. #define X11_GRAY_33 0x545454AA
  1063. #define X11_GREY33 0x545454AA
  1064. #define X11_GREY_33 0x545454AA
  1065. #define X11_GRAY34 0x575757AA
  1066. #define X11_GRAY_34 0x575757AA
  1067. #define X11_GREY34 0x575757AA
  1068. #define X11_GREY_34 0x575757AA
  1069. #define X11_GRAY35 0x595959AA
  1070. #define X11_GRAY_35 0x595959AA
  1071. #define X11_GREY35 0x595959AA
  1072. #define X11_GREY_35 0x595959AA
  1073. #define X11_GRAY36 0x5C5C5CAA
  1074. #define X11_GRAY_36 0x5C5C5CAA
  1075. #define X11_GREY36 0x5C5C5CAA
  1076. #define X11_GREY_36 0x5C5C5CAA
  1077. #define X11_GRAY37 0x5E5E5EAA
  1078. #define X11_GRAY_37 0x5E5E5EAA
  1079. #define X11_GREY37 0x5E5E5EAA
  1080. #define X11_GREY_37 0x5E5E5EAA
  1081. #define X11_GRAY38 0x616161AA
  1082. #define X11_GRAY_38 0x616161AA
  1083. #define X11_GREY38 0x616161AA
  1084. #define X11_GREY_38 0x616161AA
  1085. #define X11_GRAY39 0x636363AA
  1086. #define X11_GRAY_39 0x636363AA
  1087. #define X11_GREY39 0x636363AA
  1088. #define X11_GREY_39 0x636363AA
  1089. #define X11_GRAY40 0x666666AA
  1090. #define X11_GRAY_40 0x666666AA
  1091. #define X11_GREY40 0x666666AA
  1092. #define X11_GREY_40 0x666666AA
  1093. #define X11_GRAY41 0x696969AA
  1094. #define X11_GRAY_41 0x696969AA
  1095. #define X11_GREY41 0x696969AA
  1096. #define X11_GREY_41 0x696969AA
  1097. #define X11_GRAY42 0x6B6B6BAA
  1098. #define X11_GRAY_42 0x6B6B6BAA
  1099. #define X11_GREY42 0x6B6B6BAA
  1100. #define X11_GREY_42 0x6B6B6BAA
  1101. #define X11_GRAY43 0x6E6E6EAA
  1102. #define X11_GRAY_43 0x6E6E6EAA
  1103. #define X11_GREY43 0x6E6E6EAA
  1104. #define X11_GREY_43 0x6E6E6EAA
  1105. #define X11_GRAY44 0x707070AA
  1106. #define X11_GRAY_44 0x707070AA
  1107. #define X11_GREY44 0x707070AA
  1108. #define X11_GREY_44 0x707070AA
  1109. #define X11_GRAY45 0x737373AA
  1110. #define X11_GRAY_45 0x737373AA
  1111. #define X11_GREY45 0x737373AA
  1112. #define X11_GREY_45 0x737373AA
  1113. #define X11_GRAY46 0x757575AA
  1114. #define X11_GRAY_46 0x757575AA
  1115. #define X11_GREY46 0x757575AA
  1116. #define X11_GREY_46 0x757575AA
  1117. #define X11_GRAY47 0x787878AA
  1118. #define X11_GRAY_47 0x787878AA
  1119. #define X11_GREY47 0x787878AA
  1120. #define X11_GREY_47 0x787878AA
  1121. #define X11_GRAY48 0x7A7A7AAA
  1122. #define X11_GRAY_48 0x7A7A7AAA
  1123. #define X11_GREY48 0x7A7A7AAA
  1124. #define X11_GREY_48 0x7A7A7AAA
  1125. #define X11_GRAY49 0x7D7D7DAA
  1126. #define X11_GRAY_49 0x7D7D7DAA
  1127. #define X11_GREY49 0x7D7D7DAA
  1128. #define X11_GREY_49 0x7D7D7DAA
  1129. #define X11_GRAY50 0x7F7F7FAA
  1130. #define X11_GRAY_50 0x7F7F7FAA
  1131. #define X11_GREY50 0x7F7F7FAA
  1132. #define X11_GREY_50 0x7F7F7FAA
  1133. #define X11_GRAY51 0x828282AA
  1134. #define X11_GRAY_51 0x828282AA
  1135. #define X11_GREY51 0x828282AA
  1136. #define X11_GREY_51 0x828282AA
  1137. #define X11_GRAY52 0x858585AA
  1138. #define X11_GRAY_52 0x858585AA
  1139. #define X11_GREY52 0x858585AA
  1140. #define X11_GREY_52 0x858585AA
  1141. #define X11_GRAY53 0x878787AA
  1142. #define X11_GRAY_53 0x878787AA
  1143. #define X11_GREY53 0x878787AA
  1144. #define X11_GREY_53 0x878787AA
  1145. #define X11_GRAY54 0x8A8A8AAA
  1146. #define X11_GRAY_54 0x8A8A8AAA
  1147. #define X11_GREY54 0x8A8A8AAA
  1148. #define X11_GREY_54 0x8A8A8AAA
  1149. #define X11_GRAY55 0x8C8C8CAA
  1150. #define X11_GRAY_55 0x8C8C8CAA
  1151. #define X11_GREY55 0x8C8C8CAA
  1152. #define X11_GREY_55 0x8C8C8CAA
  1153. #define X11_GRAY56 0x8F8F8FAA
  1154. #define X11_GRAY_56 0x8F8F8FAA
  1155. #define X11_GREY56 0x8F8F8FAA
  1156. #define X11_GREY_56 0x8F8F8FAA
  1157. #define X11_GRAY57 0x919191AA
  1158. #define X11_GRAY_57 0x919191AA
  1159. #define X11_GREY57 0x919191AA
  1160. #define X11_GREY_57 0x919191AA
  1161. #define X11_GRAY58 0x949494AA
  1162. #define X11_GRAY_58 0x949494AA
  1163. #define X11_GREY58 0x949494AA
  1164. #define X11_GREY_58 0x949494AA
  1165. #define X11_GRAY59 0x969696AA
  1166. #define X11_GRAY_59 0x969696AA
  1167. #define X11_GREY59 0x969696AA
  1168. #define X11_GREY_59 0x969696AA
  1169. #define X11_GRAY60 0x999999AA
  1170. #define X11_GRAY_60 0x999999AA
  1171. #define X11_GREY60 0x999999AA
  1172. #define X11_GREY_60 0x999999AA
  1173. #define X11_GRAY61 0x9C9C9CAA
  1174. #define X11_GRAY_61 0x9C9C9CAA
  1175. #define X11_GREY61 0x9C9C9CAA
  1176. #define X11_GREY_61 0x9C9C9CAA
  1177. #define X11_GRAY62 0x9E9E9EAA
  1178. #define X11_GRAY_62 0x9E9E9EAA
  1179. #define X11_GREY62 0x9E9E9EAA
  1180. #define X11_GREY_62 0x9E9E9EAA
  1181. #define X11_GRAY63 0xA1A1A1AA
  1182. #define X11_GRAY_63 0xA1A1A1AA
  1183. #define X11_GREY63 0xA1A1A1AA
  1184. #define X11_GREY_63 0xA1A1A1AA
  1185. #define X11_GRAY64 0xA3A3A3AA
  1186. #define X11_GRAY_64 0xA3A3A3AA
  1187. #define X11_GREY64 0xA3A3A3AA
  1188. #define X11_GREY_64 0xA3A3A3AA
  1189. #define X11_GRAY65 0xA6A6A6AA
  1190. #define X11_GRAY_65 0xA6A6A6AA
  1191. #define X11_GREY65 0xA6A6A6AA
  1192. #define X11_GREY_65 0xA6A6A6AA
  1193. #define X11_GRAY66 0xA8A8A8AA
  1194. #define X11_GRAY_66 0xA8A8A8AA
  1195. #define X11_GREY66 0xA8A8A8AA
  1196. #define X11_GREY_66 0xA8A8A8AA
  1197. #define X11_GRAY67 0xABABABAA
  1198. #define X11_GRAY_67 0xABABABAA
  1199. #define X11_GREY67 0xABABABAA
  1200. #define X11_GREY_67 0xABABABAA
  1201. #define X11_GRAY68 0xADADADAA
  1202. #define X11_GRAY_68 0xADADADAA
  1203. #define X11_GREY68 0xADADADAA
  1204. #define X11_GREY_68 0xADADADAA
  1205. #define X11_GRAY69 0xB0B0B0AA
  1206. #define X11_GRAY_69 0xB0B0B0AA
  1207. #define X11_GREY69 0xB0B0B0AA
  1208. #define X11_GREY_69 0xB0B0B0AA
  1209. #define X11_GRAY70 0xB3B3B3AA
  1210. #define X11_GRAY_70 0xB3B3B3AA
  1211. #define X11_GREY70 0xB3B3B3AA
  1212. #define X11_GREY_70 0xB3B3B3AA
  1213. #define X11_GRAY71 0xB5B5B5AA
  1214. #define X11_GRAY_71 0xB5B5B5AA
  1215. #define X11_GREY71 0xB5B5B5AA
  1216. #define X11_GREY_71 0xB5B5B5AA
  1217. #define X11_GRAY72 0xB8B8B8AA
  1218. #define X11_GRAY_72 0xB8B8B8AA
  1219. #define X11_GREY72 0xB8B8B8AA
  1220. #define X11_GREY_72 0xB8B8B8AA
  1221. #define X11_GRAY73 0xBABABAAA
  1222. #define X11_GRAY_73 0xBABABAAA
  1223. #define X11_GREY73 0xBABABAAA
  1224. #define X11_GREY_73 0xBABABAAA
  1225. #define X11_GRAY74 0xBDBDBDAA
  1226. #define X11_GRAY_74 0xBDBDBDAA
  1227. #define X11_GREY74 0xBDBDBDAA
  1228. #define X11_GREY_74 0xBDBDBDAA
  1229. #define X11_GRAY75 0xBFBFBFAA
  1230. #define X11_GRAY_75 0xBFBFBFAA
  1231. #define X11_GREY75 0xBFBFBFAA
  1232. #define X11_GREY_75 0xBFBFBFAA
  1233. #define X11_GRAY76 0xC2C2C2AA
  1234. #define X11_GRAY_76 0xC2C2C2AA
  1235. #define X11_GREY76 0xC2C2C2AA
  1236. #define X11_GREY_76 0xC2C2C2AA
  1237. #define X11_GRAY77 0xC4C4C4AA
  1238. #define X11_GRAY_77 0xC4C4C4AA
  1239. #define X11_GREY77 0xC4C4C4AA
  1240. #define X11_GREY_77 0xC4C4C4AA
  1241. #define X11_GRAY78 0xC7C7C7AA
  1242. #define X11_GRAY_78 0xC7C7C7AA
  1243. #define X11_GREY78 0xC7C7C7AA
  1244. #define X11_GREY_78 0xC7C7C7AA
  1245. #define X11_GRAY79 0xC9C9C9AA
  1246. #define X11_GRAY_79 0xC9C9C9AA
  1247. #define X11_GREY79 0xC9C9C9AA
  1248. #define X11_GREY_79 0xC9C9C9AA
  1249. #define X11_GRAY80 0xCCCCCCAA
  1250. #define X11_GRAY_80 0xCCCCCCAA
  1251. #define X11_GREY80 0xCCCCCCAA
  1252. #define X11_GREY_80 0xCCCCCCAA
  1253. #define X11_GRAY81 0xCFCFCFAA
  1254. #define X11_GRAY_81 0xCFCFCFAA
  1255. #define X11_GREY81 0xCFCFCFAA
  1256. #define X11_GREY_81 0xCFCFCFAA
  1257. #define X11_GRAY82 0xD1D1D1AA
  1258. #define X11_GRAY_82 0xD1D1D1AA
  1259. #define X11_GREY82 0xD1D1D1AA
  1260. #define X11_GREY_82 0xD1D1D1AA
  1261. #define X11_GRAY83 0xD4D4D4AA
  1262. #define X11_GRAY_83 0xD4D4D4AA
  1263. #define X11_GREY83 0xD4D4D4AA
  1264. #define X11_GREY_83 0xD4D4D4AA
  1265. #define X11_GRAY84 0xD6D6D6AA
  1266. #define X11_GRAY_84 0xD6D6D6AA
  1267. #define X11_GREY84 0xD6D6D6AA
  1268. #define X11_GREY_84 0xD6D6D6AA
  1269. #define X11_GRAY85 0xD9D9D9AA
  1270. #define X11_GRAY_85 0xD9D9D9AA
  1271. #define X11_GREY85 0xD9D9D9AA
  1272. #define X11_GREY_85 0xD9D9D9AA
  1273. #define X11_GRAY86 0xDBDBDBAA
  1274. #define X11_GRAY_86 0xDBDBDBAA
  1275. #define X11_GREY86 0xDBDBDBAA
  1276. #define X11_GREY_86 0xDBDBDBAA
  1277. #define X11_GRAY87 0xDEDEDEAA
  1278. #define X11_GRAY_87 0xDEDEDEAA
  1279. #define X11_GREY87 0xDEDEDEAA
  1280. #define X11_GREY_87 0xDEDEDEAA
  1281. #define X11_GRAY88 0xE0E0E0AA
  1282. #define X11_GRAY_88 0xE0E0E0AA
  1283. #define X11_GREY88 0xE0E0E0AA
  1284. #define X11_GREY_88 0xE0E0E0AA
  1285. #define X11_GRAY89 0xE3E3E3AA
  1286. #define X11_GRAY_89 0xE3E3E3AA
  1287. #define X11_GREY89 0xE3E3E3AA
  1288. #define X11_GREY_89 0xE3E3E3AA
  1289. #define X11_GRAY90 0xE5E5E5AA
  1290. #define X11_GRAY_90 0xE5E5E5AA
  1291. #define X11_GREY90 0xE5E5E5AA
  1292. #define X11_GREY_90 0xE5E5E5AA
  1293. #define X11_GRAY91 0xE8E8E8AA
  1294. #define X11_GRAY_91 0xE8E8E8AA
  1295. #define X11_GREY91 0xE8E8E8AA
  1296. #define X11_GREY_91 0xE8E8E8AA
  1297. #define X11_GRAY92 0xEBEBEBAA
  1298. #define X11_GRAY_92 0xEBEBEBAA
  1299. #define X11_GREY92 0xEBEBEBAA
  1300. #define X11_GREY_92 0xEBEBEBAA
  1301. #define X11_GRAY93 0xEDEDEDAA
  1302. #define X11_GRAY_93 0xEDEDEDAA
  1303. #define X11_GREY93 0xEDEDEDAA
  1304. #define X11_GREY_93 0xEDEDEDAA
  1305. #define X11_GRAY94 0xF0F0F0AA
  1306. #define X11_GRAY_94 0xF0F0F0AA
  1307. #define X11_GREY94 0xF0F0F0AA
  1308. #define X11_GREY_94 0xF0F0F0AA
  1309. #define X11_GRAY95 0xF2F2F2AA
  1310. #define X11_GRAY_95 0xF2F2F2AA
  1311. #define X11_GREY95 0xF2F2F2AA
  1312. #define X11_GREY_95 0xF2F2F2AA
  1313. #define X11_GRAY96 0xF5F5F5AA
  1314. #define X11_GRAY_96 0xF5F5F5AA
  1315. #define X11_GREY96 0xF5F5F5AA
  1316. #define X11_GREY_96 0xF5F5F5AA
  1317. #define X11_GRAY97 0xF7F7F7AA
  1318. #define X11_GRAY_97 0xF7F7F7AA
  1319. #define X11_GREY97 0xF7F7F7AA
  1320. #define X11_GREY_97 0xF7F7F7AA
  1321. #define X11_GRAY98 0xFAFAFAAA
  1322. #define X11_GRAY_98 0xFAFAFAAA
  1323. #define X11_GREY98 0xFAFAFAAA
  1324. #define X11_GREY_98 0xFAFAFAAA
  1325. #define X11_GRAY99 0xFCFCFCAA
  1326. #define X11_GRAY_99 0xFCFCFCAA
  1327. #define X11_GREY99 0xFCFCFCAA
  1328. #define X11_GREY_99 0xFCFCFCAA
  1329. #define X11_GRAY100 0xFFFFFFAA
  1330. #define X11_GRAY_100 0xFFFFFFAA
  1331. #define X11_GREY100 0xFFFFFFAA
  1332. #define X11_GREY_100 0xFFFFFFAA
  1333. #define X11_DARKGREY 0xA9A9A9AA
  1334. #define X11_DARK_GREY 0xA9A9A9AA
  1335. #define X11_DARKGRAY 0xA9A9A9AA
  1336. #define X11_DARK_GRAY 0xA9A9A9AA
  1337. #define X11_DARKBLUE 0x00008BAA
  1338. #define X11_DARK_BLUE 0x00008BAA
  1339. #define X11_DARKCYAN 0x008B8BAA
  1340. #define X11_DARK_CYAN 0x008B8BAA
  1341. #define X11_DARKMAGENTA 0x8B008BAA
  1342. #define X11_DARK_MAGENTA 0x8B008BAA
  1343. #define X11_DARKRED 0x8B0000AA
  1344. #define X11_DARK_RED 0x8B0000AA
  1345. #define X11_LIGHTGREEN 0x90EE90AA
  1346. #define X11_LIGHT_GREEN 0x90EE90AA
  1347. // Embeddable colours.
  1348. #define SNOW "{FFFAFA}"
  1349. #define GHOSTWHITE "{F8F8FF}"
  1350. #define GHOST_WHITE "{F8F8FF}"
  1351. #define WHITESMOKE "{F5F5F5}"
  1352. #define WHITE_SMOKE "{F5F5F5}"
  1353. #define GAINSBORO "{DCDCDC}"
  1354. #define FLORALWHITE "{FFFAF0}"
  1355. #define FLORAL_WHITE "{FFFAF0}"
  1356. #define OLDLACE "{FDF5E6}"
  1357. #define OLD_LACE "{FDF5E6}"
  1358. #define LINEN "{FAF0E6}"
  1359. #define ANTIQUEWHITE "{FAEBD7}"
  1360. #define ANTIQUE_WHITE "{FAEBD7}"
  1361. #define PAPAYAWHIP "{FFEFD5}"
  1362. #define PAPAYA_WHIP "{FFEFD5}"
  1363. #define BLANCHEDALMOND "{FFEBCD}"
  1364. #define BLANCHED_ALMOND "{FFEBCD}"
  1365. #define BISQUE "{FFE4C4}"
  1366. #define PEACHPUFF "{FFDAB9}"
  1367. #define PEACH_PUFF "{FFDAB9}"
  1368. #define NAVAJOWHITE "{FFDEAD}"
  1369. #define NAVAJO_WHITE "{FFDEAD}"
  1370. #define MOCCASIN "{FFE4B5}"
  1371. #define CORNSILK "{FFF8DC}"
  1372. #define IVORY "{FFFFF0}"
  1373. #define LEMONCHIFFON "{FFFACD}"
  1374. #define LEMON_CHIFFON "{FFFACD}"
  1375. #define SEASHELL "{FFF5EE}"
  1376. #define HONEYDEW "{F0FFF0}"
  1377. #define MINTCREAM "{F5FFFA}"
  1378. #define MINT_CREAM "{F5FFFA}"
  1379. #define AZURE "{F0FFFF}"
  1380. #define ALICEBLUE "{F0F8FF}"
  1381. #define ALICE_BLUE "{F0F8FF}"
  1382. #define LAVENDER "{E6E6FA}"
  1383. #define LAVENDERBLUSH "{FFF0F5}"
  1384. #define LAVENDER_BLUSH "{FFF0F5}"
  1385. #define MISTYROSE "{FFE4E1}"
  1386. #define MISTY_ROSE "{FFE4E1}"
  1387. #define WHITE "{FFFFFF}"
  1388. #define BLACK "{000000}"
  1389. #define DARKSLATEGRAY "{2F4F4F}"
  1390. #define DARK_SLATE_GRAY "{2F4F4F}"
  1391. #define DARKSLATEGREY "{2F4F4F}"
  1392. #define DARK_SLATE_GREY "{2F4F4F}"
  1393. #define DIMGRAY "{696969}"
  1394. #define DIM_GRAY "{696969}"
  1395. #define DIMGREY "{696969}"
  1396. #define DIM_GREY "{696969}"
  1397. #define SLATEGRAY "{708090}"
  1398. #define SLATE_GRAY "{708090}"
  1399. #define SLATEGREY "{708090}"
  1400. #define SLATE_GREY "{708090}"
  1401. #define LIGHTSLATEGRAY "{778899}"
  1402. #define LIGHT_SLATE_GRAY "{778899}"
  1403. #define LIGHTSLATEGREY "{778899}"
  1404. #define LIGHT_SLATE_GREY "{778899}"
  1405. #define GRAY "{BEBEBE}"
  1406. #define GREY "{BEBEBE}"
  1407. #define LIGHTGREY "{D3D3D3}"
  1408. #define LIGHT_GREY "{D3D3D3}"
  1409. #define LIGHTGRAY "{D3D3D3}"
  1410. #define LIGHT_GRAY "{D3D3D3}"
  1411. #define MIDNIGHTBLUE "{191970}"
  1412. #define MIDNIGHT_BLUE "{191970}"
  1413. #define NAVY "{000080}"
  1414. #define NAVYBLUE "{000080}"
  1415. #define NAVY_BLUE "{000080}"
  1416. #define CORNFLOWERBLUE "{6495ED}"
  1417. #define CORNFLOWER_BLUE "{6495ED}"
  1418. #define DARKSLATEBLUE "{483D8B}"
  1419. #define DARK_SLATE_BLUE "{483D8B}"
  1420. #define SLATEBLUE "{6A5ACD}"
  1421. #define SLATE_BLUE "{6A5ACD}"
  1422. #define MEDIUMSLATEBLUE "{7B68EE}"
  1423. #define MEDIUM_SLATE_BLUE "{7B68EE}"
  1424. #define LIGHTSLATEBLUE "{8470FF}"
  1425. #define LIGHT_SLATE_BLUE "{8470FF}"
  1426. #define MEDIUMBLUE "{0000CD}"
  1427. #define MEDIUM_BLUE "{0000CD}"
  1428. #define ROYALBLUE "{4169E1}"
  1429. #define ROYAL_BLUE "{4169E1}"
  1430. #define BLUE "{0000FF}"
  1431. #define DODGERBLUE "{1E90FF}"
  1432. #define DODGER_BLUE "{1E90FF}"
  1433. #define DEEPSKYBLUE "{00BFFF}"
  1434. #define DEEP_SKY_BLUE "{00BFFF}"
  1435. #define SKYBLUE "{87CEEB}"
  1436. #define SKY_BLUE "{87CEEB}"
  1437. #define LIGHTSKYBLUE "{87CEFA}"
  1438. #define LIGHT_SKY_BLUE "{87CEFA}"
  1439. #define STEELBLUE "{4682B4}"
  1440. #define STEEL_BLUE "{4682B4}"
  1441. #define LIGHTSTEELBLUE "{B0C4DE}"
  1442. #define LIGHT_STEEL_BLUE "{B0C4DE}"
  1443. #define LIGHTBLUE "{ADD8E6}"
  1444. #define LIGHT_BLUE "{ADD8E6}"
  1445. #define POWDERBLUE "{B0E0E6}"
  1446. #define POWDER_BLUE "{B0E0E6}"
  1447. #define PALETURQUOISE "{AFEEEE}"
  1448. #define PALE_TURQUOISE "{AFEEEE}"
  1449. #define DARKTURQUOISE "{00CED1}"
  1450. #define DARK_TURQUOISE "{00CED1}"
  1451. #define MEDIUMTURQUOISE "{48D1CC}"
  1452. #define MEDIUM_TURQUOISE "{48D1CC}"
  1453. #define TURQUOISE "{40E0D0}"
  1454. #define CYAN "{00FFFF}"
  1455. #define LIGHTCYAN "{E0FFFF}"
  1456. #define LIGHT_CYAN "{E0FFFF}"
  1457. #define CADETBLUE "{5F9EA0}"
  1458. #define CADET_BLUE "{5F9EA0}"
  1459. #define MEDIUMAQUAMARINE "{66CDAA}"
  1460. #define MEDIUM_AQUAMARINE "{66CDAA}"
  1461. #define AQUAMARINE "{7FFFD4}"
  1462. #define DARKGREEN "{006400}"
  1463. #define DARK_GREEN "{006400}"
  1464. #define DARKOLIVEGREEN "{556B2F}"
  1465. #define DARK_OLIVE_GREEN "{556B2F}"
  1466. #define DARKSEAGREEN "{8FBC8F}"
  1467. #define DARK_SEA_GREEN "{8FBC8F}"
  1468. #define SEAGREEN "{2E8B57}"
  1469. #define SEA_GREEN "{2E8B57}"
  1470. #define MEDIUMSEAGREEN "{3CB371}"
  1471. #define MEDIUM_SEA_GREEN "{3CB371}"
  1472. #define LIGHTSEAGREEN "{20B2AA}"
  1473. #define LIGHT_SEA_GREEN "{20B2AA}"
  1474. #define PALEGREEN "{98FB98}"
  1475. #define PALE_GREEN "{98FB98}"
  1476. #define SPRINGGREEN "{00FF7F}"
  1477. #define SPRING_GREEN "{00FF7F}"
  1478. #define LAWNGREEN "{7CFC00}"
  1479. #define LAWN_GREEN "{7CFC00}"
  1480. #define GREEN "{00FF00}"
  1481. #define CHARTREUSE "{7FFF00}"
  1482. #define MEDIUMSPRINGGREEN "{00FA9A}"
  1483. #define MEDIUM_SPRING_GREEN "{00FA9A}"
  1484. #define GREENYELLOW "{ADFF2F}"
  1485. #define GREEN_YELLOW "{ADFF2F}"
  1486. #define LIMEGREEN "{32CD32}"
  1487. #define LIME_GREEN "{32CD32}"
  1488. #define YELLOWGREEN "{9ACD32}"
  1489. #define YELLOW_GREEN "{9ACD32}"
  1490. #define FORESTGREEN "{228B22}"
  1491. #define FOREST_GREEN "{228B22}"
  1492. #define OLIVEDRAB "{6B8E23}"
  1493. #define OLIVE_DRAB "{6B8E23}"
  1494. #define DARKKHAKI "{BDB76B}"
  1495. #define DARK_KHAKI "{BDB76B}"
  1496. #define KHAKI "{F0E68C}"
  1497. #define PALEGOLDENROD "{EEE8AA}"
  1498. #define PALE_GOLDENROD "{EEE8AA}"
  1499. #define LIGHTGOLDENRODYELLOW "{FAFAD2}"
  1500. #define LIGHT_GOLDENROD_YELLOW "{FAFAD2}"
  1501. #define LIGHTYELLOW "{FFFFE0}"
  1502. #define LIGHT_YELLOW "{FFFFE0}"
  1503. #define YELLOW "{FFFF00}"
  1504. #define GOLD "{FFD700}"
  1505. #define LIGHTGOLDENROD "{EEDD82}"
  1506. #define LIGHT_GOLDENROD "{EEDD82}"
  1507. #define GOLDENROD "{DAA520}"
  1508. #define DARKGOLDENROD "{B8860B}"
  1509. #define DARK_GOLDENROD "{B8860B}"
  1510. #define ROSYBROWN "{BC8F8F}"
  1511. #define ROSY_BROWN "{BC8F8F}"
  1512. #define INDIANRED "{CD5C5C}"
  1513. #define INDIAN_RED "{CD5C5C}"
  1514. #define SADDLEBROWN "{8B4513}"
  1515. #define SADDLE_BROWN "{8B4513}"
  1516. #define SIENNA "{A0522D}"
  1517. #define PERU "{CD853F}"
  1518. #define BURLYWOOD "{DEB887}"
  1519. #define BEIGE "{F5F5DC}"
  1520. #define WHEAT "{F5DEB3}"
  1521. #define SANDYBROWN "{F4A460}"
  1522. #define SANDY_BROWN "{F4A460}"
  1523. #define TAN "{D2B48C}"
  1524. #define CHOCOLATE "{D2691E}"
  1525. #define FIREBRICK "{B22222}"
  1526. #define BROWN "{A52A2A}"
  1527. #define DARKSALMON "{E9967A}"
  1528. #define DARK_SALMON "{E9967A}"
  1529. #define SALMON "{FA8072}"
  1530. #define LIGHTSALMON "{FFA07A}"
  1531. #define LIGHT_SALMON "{FFA07A}"
  1532. #define ORANGE "{FFA500}"
  1533. #define DARKORANGE "{FF8C00}"
  1534. #define DARK_ORANGE "{FF8C00}"
  1535. #define CORAL "{FF7F50}"
  1536. #define LIGHTCORAL "{F08080}"
  1537. #define LIGHT_CORAL "{F08080}"
  1538. #define TOMATO "{FF6347}"
  1539. #define ORANGERED "{FF4500}"
  1540. #define ORANGE_RED "{FF4500}"
  1541. #define RED "{FF0000}"
  1542. #define HOTPINK "{FF69B4}"
  1543. #define HOT_PINK "{FF69B4}"
  1544. #define DEEPPINK "{FF1493}"
  1545. #define DEEP_PINK "{FF1493}"
  1546. #define PINK "{FFC0CB}"
  1547. #define LIGHTPINK "{FFB6C1}"
  1548. #define LIGHT_PINK "{FFB6C1}"
  1549. #define PALEVIOLETRED "{DB7093}"
  1550. #define PALE_VIOLET_RED "{DB7093}"
  1551. #define MAROON "{B03060}"
  1552. #define MEDIUMVIOLETRED "{C71585}"
  1553. #define MEDIUM_VIOLET_RED "{C71585}"
  1554. #define VIOLETRED "{D02090}"
  1555. #define VIOLET_RED "{D02090}"
  1556. #define MAGENTA "{FF00FF}"
  1557. #define VIOLET "{EE82EE}"
  1558. #define PLUM "{DDA0DD}"
  1559. #define ORCHID "{DA70D6}"
  1560. #define MEDIUMORCHID "{BA55D3}"
  1561. #define MEDIUM_ORCHID "{BA55D3}"
  1562. #define DARKORCHID "{9932CC}"
  1563. #define DARK_ORCHID "{9932CC}"
  1564. #define DARKVIOLET "{9400D3}"
  1565. #define DARK_VIOLET "{9400D3}"
  1566. #define BLUEVIOLET "{8A2BE2}"
  1567. #define BLUE_VIOLET "{8A2BE2}"
  1568. #define PURPLE "{A020F0}"
  1569. #define MEDIUMPURPLE "{9370DB}"
  1570. #define MEDIUM_PURPLE "{9370DB}"
  1571. #define THISTLE "{D8BFD8}"
  1572. #define SNOW1 "{FFFAFA}"
  1573. #define SNOW_1 "{FFFAFA}"
  1574. #define SNOW2 "{EEE9E9}"
  1575. #define SNOW_2 "{EEE9E9}"
  1576. #define SNOW3 "{CDC9C9}"
  1577. #define SNOW_3 "{CDC9C9}"
  1578. #define SNOW4 "{8B8989}"
  1579. #define SNOW_4 "{8B8989}"
  1580. #define SEASHELL1 "{FFF5EE}"
  1581. #define SEASHELL_1 "{FFF5EE}"
  1582. #define SEASHELL2 "{EEE5DE}"
  1583. #define SEASHELL_2 "{EEE5DE}"
  1584. #define SEASHELL3 "{CDC5BF}"
  1585. #define SEASHELL_3 "{CDC5BF}"
  1586. #define SEASHELL4 "{8B8682}"
  1587. #define SEASHELL_4 "{8B8682}"
  1588. #define ANTIQUEWHITE1 "{FFEFDB}"
  1589. #define ANTIQUE_WHITE_1 "{FFEFDB}"
  1590. #define ANTIQUEWHITE2 "{EEDFCC}"
  1591. #define ANTIQUE_WHITE_2 "{EEDFCC}"
  1592. #define ANTIQUEWHITE3 "{CDC0B0}"
  1593. #define ANTIQUE_WHITE_3 "{CDC0B0}"
  1594. #define ANTIQUEWHITE4 "{8B8378}"
  1595. #define ANTIQUE_WHITE_4 "{8B8378}"
  1596. #define BISQUE1 "{FFE4C4}"
  1597. #define BISQUE_1 "{FFE4C4}"
  1598. #define BISQUE2 "{EED5B7}"
  1599. #define BISQUE_2 "{EED5B7}"
  1600. #define BISQUE3 "{CDB79E}"
  1601. #define BISQUE_3 "{CDB79E}"
  1602. #define BISQUE4 "{8B7D6B}"
  1603. #define BISQUE_4 "{8B7D6B}"
  1604. #define PEACHPUFF1 "{FFDAB9}"
  1605. #define PEACH_PUFF_1 "{FFDAB9}"
  1606. #define PEACHPUFF2 "{EECBAD}"
  1607. #define PEACH_PUFF_2 "{EECBAD}"
  1608. #define PEACHPUFF3 "{CDAF95}"
  1609. #define PEACH_PUFF_3 "{CDAF95}"
  1610. #define PEACHPUFF4 "{8B7765}"
  1611. #define PEACH_PUFF_4 "{8B7765}"
  1612. #define NAVAJOWHITE1 "{FFDEAD}"
  1613. #define NAVAJO_WHITE_1 "{FFDEAD}"
  1614. #define NAVAJOWHITE2 "{EECFA1}"
  1615. #define NAVAJO_WHITE_2 "{EECFA1}"
  1616. #define NAVAJOWHITE3 "{CDB38B}"
  1617. #define NAVAJO_WHITE_3 "{CDB38B}"
  1618. #define NAVAJOWHITE4 "{8B795E}"
  1619. #define NAVAJO_WHITE_4 "{8B795E}"
  1620. #define LEMONCHIFFON1 "{FFFACD}"
  1621. #define LEMON_CHIFFON_1 "{FFFACD}"
  1622. #define LEMONCHIFFON2 "{EEE9BF}"
  1623. #define LEMON_CHIFFON_2 "{EEE9BF}"
  1624. #define LEMONCHIFFON3 "{CDC9A5}"
  1625. #define LEMON_CHIFFON_3 "{CDC9A5}"
  1626. #define LEMONCHIFFON4 "{8B8970}"
  1627. #define LEMON_CHIFFON_4 "{8B8970}"
  1628. #define CORNSILK1 "{FFF8DC}"
  1629. #define CORNSILK_1 "{FFF8DC}"
  1630. #define CORNSILK2 "{EEE8CD}"
  1631. #define CORNSILK_2 "{EEE8CD}"
  1632. #define CORNSILK3 "{CDC8B1}"
  1633. #define CORNSILK_3 "{CDC8B1}"
  1634. #define CORNSILK4 "{8B8878}"
  1635. #define CORNSILK_4 "{8B8878}"
  1636. #define IVORY1 "{FFFFF0}"
  1637. #define IVORY_1 "{FFFFF0}"
  1638. #define IVORY2 "{EEEEE0}"
  1639. #define IVORY_2 "{EEEEE0}"
  1640. #define IVORY3 "{CDCDC1}"
  1641. #define IVORY_3 "{CDCDC1}"
  1642. #define IVORY4 "{8B8B83}"
  1643. #define IVORY_4 "{8B8B83}"
  1644. #define HONEYDEW1 "{F0FFF0}"
  1645. #define HONEYDEW_1 "{F0FFF0}"
  1646. #define HONEYDEW2 "{E0EEE0}"
  1647. #define HONEYDEW_2 "{E0EEE0}"
  1648. #define HONEYDEW3 "{C1CDC1}"
  1649. #define HONEYDEW_3 "{C1CDC1}"
  1650. #define HONEYDEW4 "{838B83}"
  1651. #define HONEYDEW_4 "{838B83}"
  1652. #define LAVENDERBLUSH1 "{FFF0F5}"
  1653. #define LAVENDER_BLUSH_1 "{FFF0F5}"
  1654. #define LAVENDERBLUSH2 "{EEE0E5}"
  1655. #define LAVENDER_BLUSH_2 "{EEE0E5}"
  1656. #define LAVENDERBLUSH3 "{CDC1C5}"
  1657. #define LAVENDER_BLUSH_3 "{CDC1C5}"
  1658. #define LAVENDERBLUSH4 "{8B8386}"
  1659. #define LAVENDER_BLUSH_4 "{8B8386}"
  1660. #define MISTYROSE1 "{FFE4E1}"
  1661. #define MISTY_ROSE_1 "{FFE4E1}"
  1662. #define MISTYROSE2 "{EED5D2}"
  1663. #define MISTY_ROSE_2 "{EED5D2}"
  1664. #define MISTYROSE3 "{CDB7B5}"
  1665. #define MISTY_ROSE_3 "{CDB7B5}"
  1666. #define MISTYROSE4 "{8B7D7B}"
  1667. #define MISTY_ROSE_4 "{8B7D7B}"
  1668. #define AZURE1 "{F0FFFF}"
  1669. #define AZURE_1 "{F0FFFF}"
  1670. #define AZURE2 "{E0EEEE}"
  1671. #define AZURE_2 "{E0EEEE}"
  1672. #define AZURE3 "{C1CDCD}"
  1673. #define AZURE_3 "{C1CDCD}"
  1674. #define AZURE4 "{838B8B}"
  1675. #define AZURE_4 "{838B8B}"
  1676. #define SLATEBLUE1 "{836FFF}"
  1677. #define SLATE_BLUE_1 "{836FFF}"
  1678. #define SLATEBLUE2 "{7A67EE}"
  1679. #define SLATE_BLUE_2 "{7A67EE}"
  1680. #define SLATEBLUE3 "{6959CD}"
  1681. #define SLATE_BLUE_3 "{6959CD}"
  1682. #define SLATEBLUE4 "{473C8B}"
  1683. #define SLATE_BLUE_4 "{473C8B}"
  1684. #define ROYALBLUE1 "{4876FF}"
  1685. #define ROYAL_BLUE_1 "{4876FF}"
  1686. #define ROYALBLUE2 "{436EEE}"
  1687. #define ROYAL_BLUE_2 "{436EEE}"
  1688. #define ROYALBLUE3 "{3A5FCD}"
  1689. #define ROYAL_BLUE_3 "{3A5FCD}"
  1690. #define ROYALBLUE4 "{27408B}"
  1691. #define ROYAL_BLUE_4 "{27408B}"
  1692. #define BLUE1 "{0000FF}"
  1693. #define BLUE_1 "{0000FF}"
  1694. #define BLUE2 "{0000EE}"
  1695. #define BLUE_2 "{0000EE}"
  1696. #define BLUE3 "{0000CD}"
  1697. #define BLUE_3 "{0000CD}"
  1698. #define BLUE4 "{00008B}"
  1699. #define BLUE_4 "{00008B}"
  1700. #define DODGERBLUE1 "{1E90FF}"
  1701. #define DODGER_BLUE_1 "{1E90FF}"
  1702. #define DODGERBLUE2 "{1C86EE}"
  1703. #define DODGER_BLUE_2 "{1C86EE}"
  1704. #define DODGERBLUE3 "{1874CD}"
  1705. #define DODGER_BLUE_3 "{1874CD}"
  1706. #define DODGERBLUE4 "{104E8B}"
  1707. #define DODGER_BLUE_4 "{104E8B}"
  1708. #define STEELBLUE1 "{63B8FF}"
  1709. #define STEEL_BLUE_1 "{63B8FF}"
  1710. #define STEELBLUE2 "{5CACEE}"
  1711. #define STEEL_BLUE_2 "{5CACEE}"
  1712. #define STEELBLUE3 "{4F94CD}"
  1713. #define STEEL_BLUE_3 "{4F94CD}"
  1714. #define STEELBLUE4 "{36648B}"
  1715. #define STEEL_BLUE_4 "{36648B}"
  1716. #define DEEPSKYBLUE1 "{00BFFF}"
  1717. #define DEEP_SKY_BLUE_1 "{00BFFF}"
  1718. #define DEEPSKYBLUE2 "{00B2EE}"
  1719. #define DEEP_SKY_BLUE_2 "{00B2EE}"
  1720. #define DEEPSKYBLUE3 "{009ACD}"
  1721. #define DEEP_SKY_BLUE_3 "{009ACD}"
  1722. #define DEEPSKYBLUE4 "{00688B}"
  1723. #define DEEP_SKY_BLUE_4 "{00688B}"
  1724. #define SKYBLUE1 "{87CEFF}"
  1725. #define SKY_BLUE_1 "{87CEFF}"
  1726. #define SKYBLUE2 "{7EC0EE}"
  1727. #define SKY_BLUE_2 "{7EC0EE}"
  1728. #define SKYBLUE3 "{6CA6CD}"
  1729. #define SKY_BLUE_3 "{6CA6CD}"
  1730. #define SKYBLUE4 "{4A708B}"
  1731. #define SKY_BLUE_4 "{4A708B}"
  1732. #define LIGHTSKYBLUE1 "{B0E2FF}"
  1733. #define LIGHT_SKY_BLUE_1 "{B0E2FF}"
  1734. #define LIGHTSKYBLUE2 "{A4D3EE}"
  1735. #define LIGHT_SKY_BLUE_2 "{A4D3EE}"
  1736. #define LIGHTSKYBLUE3 "{8DB6CD}"
  1737. #define LIGHT_SKY_BLUE_3 "{8DB6CD}"
  1738. #define LIGHTSKYBLUE4 "{607B8B}"
  1739. #define LIGHT_SKY_BLUE_4 "{607B8B}"
  1740. #define SLATEGRAY1 "{C6E2FF}"
  1741. #define SLATE_GRAY_1 "{C6E2FF}"
  1742. #define SLATEGRAY2 "{B9D3EE}"
  1743. #define SLATE_GRAY_2 "{B9D3EE}"
  1744. #define SLATEGRAY3 "{9FB6CD}"
  1745. #define SLATE_GRAY_3 "{9FB6CD}"
  1746. #define SLATEGRAY4 "{6C7B8B}"
  1747. #define SLATE_GRAY_4 "{6C7B8B}"
  1748. #define SLATEGREY1 "{C6E2FF}"
  1749. #define SLATE_GREY_1 "{C6E2FF}"
  1750. #define SLATEGREY2 "{B9D3EE}"
  1751. #define SLATE_GREY_2 "{B9D3EE}"
  1752. #define SLATEGREY3 "{9FB6CD}"
  1753. #define SLATE_GREY_3 "{9FB6CD}"
  1754. #define SLATEGREY4 "{6C7B8B}"
  1755. #define SLATE_GREY_4 "{6C7B8B}"
  1756. #define LIGHTSTEELBLUE1 "{CAE1FF}"
  1757. #define LIGHT_STEEL_BLUE_1 "{CAE1FF}"
  1758. #define LIGHTSTEELBLUE2 "{BCD2EE}"
  1759. #define LIGHT_STEEL_BLUE_2 "{BCD2EE}"
  1760. #define LIGHTSTEELBLUE3 "{A2B5CD}"
  1761. #define LIGHT_STEEL_BLUE_3 "{A2B5CD}"
  1762. #define LIGHTSTEELBLUE4 "{6E7B8B}"
  1763. #define LIGHT_STEEL_BLUE_4 "{6E7B8B}"
  1764. #define LIGHTBLUE1 "{BFEFFF}"
  1765. #define LIGHT_BLUE_1 "{BFEFFF}"
  1766. #define LIGHTBLUE2 "{B2DFEE}"
  1767. #define LIGHT_BLUE_2 "{B2DFEE}"
  1768. #define LIGHTBLUE3 "{9AC0CD}"
  1769. #define LIGHT_BLUE_3 "{9AC0CD}"
  1770. #define LIGHTBLUE4 "{68838B}"
  1771. #define LIGHT_BLUE_4 "{68838B}"
  1772. #define LIGHTCYAN1 "{E0FFFF}"
  1773. #define LIGHT_CYAN_1 "{E0FFFF}"
  1774. #define LIGHTCYAN2 "{D1EEEE}"
  1775. #define LIGHT_CYAN_2 "{D1EEEE}"
  1776. #define LIGHTCYAN3 "{B4CDCD}"
  1777. #define LIGHT_CYAN_3 "{B4CDCD}"
  1778. #define LIGHTCYAN4 "{7A8B8B}"
  1779. #define LIGHT_CYAN_4 "{7A8B8B}"
  1780. #define PALETURQUOISE1 "{BBFFFF}"
  1781. #define PALE_TURQUOISE_1 "{BBFFFF}"
  1782. #define PALETURQUOISE2 "{AEEEEE}"
  1783. #define PALE_TURQUOISE_2 "{AEEEEE}"
  1784. #define PALETURQUOISE3 "{96CDCD}"
  1785. #define PALE_TURQUOISE_3 "{96CDCD}"
  1786. #define PALETURQUOISE4 "{668B8B}"
  1787. #define PALE_TURQUOISE_4 "{668B8B}"
  1788. #define CADETBLUE1 "{98F5FF}"
  1789. #define CADET_BLUE_1 "{98F5FF}"
  1790. #define CADETBLUE2 "{8EE5EE}"
  1791. #define CADET_BLUE_2 "{8EE5EE}"
  1792. #define CADETBLUE3 "{7AC5CD}"
  1793. #define CADET_BLUE_3 "{7AC5CD}"
  1794. #define CADETBLUE4 "{53868B}"
  1795. #define CADET_BLUE_4 "{53868B}"
  1796. #define TURQUOISE1 "{00F5FF}"
  1797. #define TURQUOISE_1 "{00F5FF}"
  1798. #define TURQUOISE2 "{00E5EE}"
  1799. #define TURQUOISE_2 "{00E5EE}"
  1800. #define TURQUOISE3 "{00C5CD}"
  1801. #define TURQUOISE_3 "{00C5CD}"
  1802. #define TURQUOISE4 "{00868B}"
  1803. #define TURQUOISE_4 "{00868B}"
  1804. #define CYAN1 "{00FFFF}"
  1805. #define CYAN_1 "{00FFFF}"
  1806. #define CYAN2 "{00EEEE}"
  1807. #define CYAN_2 "{00EEEE}"
  1808. #define CYAN3 "{00CDCD}"
  1809. #define CYAN_3 "{00CDCD}"
  1810. #define CYAN4 "{008B8B}"
  1811. #define CYAN_4 "{008B8B}"
  1812. #define DARKSLATEGRAY1 "{97FFFF}"
  1813. #define DARK_SLATE_GRAY_1 "{97FFFF}"
  1814. #define DARKSLATEGRAY2 "{8DEEEE}"
  1815. #define DARK_SLATE_GRAY_2 "{8DEEEE}"
  1816. #define DARKSLATEGRAY3 "{79CDCD}"
  1817. #define DARK_SLATE_GRAY_3 "{79CDCD}"
  1818. #define DARKSLATEGRAY4 "{528B8B}"
  1819. #define DARK_SLATE_GRAY_4 "{528B8B}"
  1820. #define DARKSLATEGREY1 "{97FFFF}"
  1821. #define DARK_SLATE_GREY_1 "{97FFFF}"
  1822. #define DARKSLATEGREY2 "{8DEEEE}"
  1823. #define DARK_SLATE_GREY_2 "{8DEEEE}"
  1824. #define DARKSLATEGREY3 "{79CDCD}"
  1825. #define DARK_SLATE_GREY_3 "{79CDCD}"
  1826. #define DARKSLATEGREY4 "{528B8B}"
  1827. #define DARK_SLATE_GREY_4 "{528B8B}"
  1828. #define AQUAMARINE1 "{7FFFD4}"
  1829. #define AQUAMARINE_1 "{7FFFD4}"
  1830. #define AQUAMARINE2 "{76EEC6}"
  1831. #define AQUAMARINE_2 "{76EEC6}"
  1832. #define AQUAMARINE3 "{66CDAA}"
  1833. #define AQUAMARINE_3 "{66CDAA}"
  1834. #define AQUAMARINE4 "{458B74}"
  1835. #define AQUAMARINE_4 "{458B74}"
  1836. #define DARKSEAGREEN1 "{C1FFC1}"
  1837. #define DARK_SEA_GREEN_1 "{C1FFC1}"
  1838. #define DARKSEAGREEN2 "{B4EEB4}"
  1839. #define DARK_SEA_GREEN_2 "{B4EEB4}"
  1840. #define DARKSEAGREEN3 "{9BCD9B}"
  1841. #define DARK_SEA_GREEN_3 "{9BCD9B}"
  1842. #define DARKSEAGREEN4 "{698B69}"
  1843. #define DARK_SEA_GREEN_4 "{698B69}"
  1844. #define SEAGREEN1 "{54FF9F}"
  1845. #define SEA_GREEN_1 "{54FF9F}"
  1846. #define SEAGREEN2 "{4EEE94}"
  1847. #define SEA_GREEN_2 "{4EEE94}"
  1848. #define SEAGREEN3 "{43CD80}"
  1849. #define SEA_GREEN_3 "{43CD80}"
  1850. #define SEAGREEN4 "{2E8B57}"
  1851. #define SEA_GREEN_4 "{2E8B57}"
  1852. #define PALEGREEN1 "{9AFF9A}"
  1853. #define PALE_GREEN_1 "{9AFF9A}"
  1854. #define PALEGREEN2 "{90EE90}"
  1855. #define PALE_GREEN_2 "{90EE90}"
  1856. #define PALEGREEN3 "{7CCD7C}"
  1857. #define PALE_GREEN_3 "{7CCD7C}"
  1858. #define PALEGREEN4 "{548B54}"
  1859. #define PALE_GREEN_4 "{548B54}"
  1860. #define SPRINGGREEN1 "{00FF7F}"
  1861. #define SPRING_GREEN_1 "{00FF7F}"
  1862. #define SPRINGGREEN2 "{00EE76}"
  1863. #define SPRING_GREEN_2 "{00EE76}"
  1864. #define SPRINGGREEN3 "{00CD66}"
  1865. #define SPRING_GREEN_3 "{00CD66}"
  1866. #define SPRINGGREEN4 "{008B45}"
  1867. #define SPRING_GREEN_4 "{008B45}"
  1868. #define GREEN1 "{00FF00}"
  1869. #define GREEN_1 "{00FF00}"
  1870. #define GREEN2 "{00EE00}"
  1871. #define GREEN_2 "{00EE00}"
  1872. #define GREEN3 "{00CD00}"
  1873. #define GREEN_3 "{00CD00}"
  1874. #define GREEN4 "{008B00}"
  1875. #define GREEN_4 "{008B00}"
  1876. #define CHARTREUSE1 "{7FFF00}"
  1877. #define CHARTREUSE_1 "{7FFF00}"
  1878. #define CHARTREUSE2 "{76EE00}"
  1879. #define CHARTREUSE_2 "{76EE00}"
  1880. #define CHARTREUSE3 "{66CD00}"
  1881. #define CHARTREUSE_3 "{66CD00}"
  1882. #define CHARTREUSE4 "{458B00}"
  1883. #define CHARTREUSE_4 "{458B00}"
  1884. #define OLIVEDRAB1 "{C0FF3E}"
  1885. #define OLIVE_DRAB_1 "{C0FF3E}"
  1886. #define OLIVEDRAB2 "{B3EE3A}"
  1887. #define OLIVE_DRAB_2 "{B3EE3A}"
  1888. #define OLIVEDRAB3 "{9ACD32}"
  1889. #define OLIVE_DRAB_3 "{9ACD32}"
  1890. #define OLIVEDRAB4 "{698B22}"
  1891. #define OLIVE_DRAB_4 "{698B22}"
  1892. #define DARKOLIVEGREEN1 "{CAFF70}"
  1893. #define DARK_OLIVE_GREEN_1 "{CAFF70}"
  1894. #define DARKOLIVEGREEN2 "{BCEE68}"
  1895. #define DARK_OLIVE_GREEN_2 "{BCEE68}"
  1896. #define DARKOLIVEGREEN3 "{A2CD5A}"
  1897. #define DARK_OLIVE_GREEN_3 "{A2CD5A}"
  1898. #define DARKOLIVEGREEN4 "{6E8B3D}"
  1899. #define DARK_OLIVE_GREEN_4 "{6E8B3D}"
  1900. #define KHAKI1 "{FFF68F}"
  1901. #define KHAKI_1 "{FFF68F}"
  1902. #define KHAKI2 "{EEE685}"
  1903. #define KHAKI_2 "{EEE685}"
  1904. #define KHAKI3 "{CDC673}"
  1905. #define KHAKI_3 "{CDC673}"
  1906. #define KHAKI4 "{8B864E}"
  1907. #define KHAKI_4 "{8B864E}"
  1908. #define LIGHTGOLDENROD1 "{FFEC8B}"
  1909. #define LIGHT_GOLDENROD_1 "{FFEC8B}"
  1910. #define LIGHTGOLDENROD2 "{EEDC82}"
  1911. #define LIGHT_GOLDENROD_2 "{EEDC82}"
  1912. #define LIGHTGOLDENROD3 "{CDBE70}"
  1913. #define LIGHT_GOLDENROD_3 "{CDBE70}"
  1914. #define LIGHTGOLDENROD4 "{8B814C}"
  1915. #define LIGHT_GOLDENROD_4 "{8B814C}"
  1916. #define LIGHTYELLOW1 "{FFFFE0}"
  1917. #define LIGHT_YELLOW_1 "{FFFFE0}"
  1918. #define LIGHTYELLOW2 "{EEEED1}"
  1919. #define LIGHT_YELLOW_2 "{EEEED1}"
  1920. #define LIGHTYELLOW3 "{CDCDB4}"
  1921. #define LIGHT_YELLOW_3 "{CDCDB4}"
  1922. #define LIGHTYELLOW4 "{8B8B7A}"
  1923. #define LIGHT_YELLOW_4 "{8B8B7A}"
  1924. #define YELLOW1 "{FFFF00}"
  1925. #define YELLOW_1 "{FFFF00}"
  1926. #define YELLOW2 "{EEEE00}"
  1927. #define YELLOW_2 "{EEEE00}"
  1928. #define YELLOW3 "{CDCD00}"
  1929. #define YELLOW_3 "{CDCD00}"
  1930. #define YELLOW4 "{8B8B00}"
  1931. #define YELLOW_4 "{8B8B00}"
  1932. #define GOLD1 "{FFD700}"
  1933. #define GOLD_1 "{FFD700}"
  1934. #define GOLD2 "{EEC900}"
  1935. #define GOLD_2 "{EEC900}"
  1936. #define GOLD3 "{CDAD00}"
  1937. #define GOLD_3 "{CDAD00}"
  1938. #define GOLD4 "{8B7500}"
  1939. #define GOLD_4 "{8B7500}"
  1940. #define GOLDENROD1 "{FFC125}"
  1941. #define GOLDENROD_1 "{FFC125}"
  1942. #define GOLDENROD2 "{EEB422}"
  1943. #define GOLDENROD_2 "{EEB422}"
  1944. #define GOLDENROD3 "{CD9B1D}"
  1945. #define GOLDENROD_3 "{CD9B1D}"
  1946. #define GOLDENROD4 "{8B6914}"
  1947. #define GOLDENROD_4 "{8B6914}"
  1948. #define DARKGOLDENROD1 "{FFB90F}"
  1949. #define DARK_GOLDENROD_1 "{FFB90F}"
  1950. #define DARKGOLDENROD2 "{EEAD0E}"
  1951. #define DARK_GOLDENROD_2 "{EEAD0E}"
  1952. #define DARKGOLDENROD3 "{CD950C}"
  1953. #define DARK_GOLDENROD_3 "{CD950C}"
  1954. #define DARKGOLDENROD4 "{8B6508}"
  1955. #define DARK_GOLDENROD_4 "{8B6508}"
  1956. #define ROSYBROWN1 "{FFC1C1}"
  1957. #define ROSY_BROWN_1 "{FFC1C1}"
  1958. #define ROSYBROWN2 "{EEB4B4}"
  1959. #define ROSY_BROWN_2 "{EEB4B4}"
  1960. #define ROSYBROWN3 "{CD9B9B}"
  1961. #define ROSY_BROWN_3 "{CD9B9B}"
  1962. #define ROSYBROWN4 "{8B6969}"
  1963. #define ROSY_BROWN_4 "{8B6969}"
  1964. #define INDIANRED1 "{FF6A6A}"
  1965. #define INDIAN_RED_1 "{FF6A6A}"
  1966. #define INDIANRED2 "{EE6363}"
  1967. #define INDIAN_RED_2 "{EE6363}"
  1968. #define INDIANRED3 "{CD5555}"
  1969. #define INDIAN_RED_3 "{CD5555}"
  1970. #define INDIANRED4 "{8B3A3A}"
  1971. #define INDIAN_RED_4 "{8B3A3A}"
  1972. #define SIENNA1 "{FF8247}"
  1973. #define SIENNA_1 "{FF8247}"
  1974. #define SIENNA2 "{EE7942}"
  1975. #define SIENNA_2 "{EE7942}"
  1976. #define SIENNA3 "{CD6839}"
  1977. #define SIENNA_3 "{CD6839}"
  1978. #define SIENNA4 "{8B4726}"
  1979. #define SIENNA_4 "{8B4726}"
  1980. #define BURLYWOOD1 "{FFD39B}"
  1981. #define BURLYWOOD_1 "{FFD39B}"
  1982. #define BURLYWOOD2 "{EEC591}"
  1983. #define BURLYWOOD_2 "{EEC591}"
  1984. #define BURLYWOOD3 "{CDAA7D}"
  1985. #define BURLYWOOD_3 "{CDAA7D}"
  1986. #define BURLYWOOD4 "{8B7355}"
  1987. #define BURLYWOOD_4 "{8B7355}"
  1988. #define WHEAT1 "{FFE7BA}"
  1989. #define WHEAT_1 "{FFE7BA}"
  1990. #define WHEAT2 "{EED8AE}"
  1991. #define WHEAT_2 "{EED8AE}"
  1992. #define WHEAT3 "{CDBA96}"
  1993. #define WHEAT_3 "{CDBA96}"
  1994. #define WHEAT4 "{8B7E66}"
  1995. #define WHEAT_4 "{8B7E66}"
  1996. #define TAN1 "{FFA54F}"
  1997. #define TAN_1 "{FFA54F}"
  1998. #define TAN2 "{EE9A49}"
  1999. #define TAN_2 "{EE9A49}"
  2000. #define TAN3 "{CD853F}"
  2001. #define TAN_3 "{CD853F}"
  2002. #define TAN4 "{8B5A2B}"
  2003. #define TAN_4 "{8B5A2B}"
  2004. #define CHOCOLATE1 "{FF7F24}"
  2005. #define CHOCOLATE_1 "{FF7F24}"
  2006. #define CHOCOLATE2 "{EE7621}"
  2007. #define CHOCOLATE_2 "{EE7621}"
  2008. #define CHOCOLATE3 "{CD661D}"
  2009. #define CHOCOLATE_3 "{CD661D}"
  2010. #define CHOCOLATE4 "{8B4513}"
  2011. #define CHOCOLATE_4 "{8B4513}"
  2012. #define FIREBRICK1 "{FF3030}"
  2013. #define FIREBRICK_1 "{FF3030}"
  2014. #define FIREBRICK2 "{EE2C2C}"
  2015. #define FIREBRICK_2 "{EE2C2C}"
  2016. #define FIREBRICK3 "{CD2626}"
  2017. #define FIREBRICK_3 "{CD2626}"
  2018. #define FIREBRICK4 "{8B1A1A}"
  2019. #define FIREBRICK_4 "{8B1A1A}"
  2020. #define BROWN1 "{FF4040}"
  2021. #define BROWN_1 "{FF4040}"
  2022. #define BROWN2 "{EE3B3B}"
  2023. #define BROWN_2 "{EE3B3B}"
  2024. #define BROWN3 "{CD3333}"
  2025. #define BROWN_3 "{CD3333}"
  2026. #define BROWN4 "{8B2323}"
  2027. #define BROWN_4 "{8B2323}"
  2028. #define SALMON1 "{FF8C69}"
  2029. #define SALMON_1 "{FF8C69}"
  2030. #define SALMON2 "{EE8262}"
  2031. #define SALMON_2 "{EE8262}"
  2032. #define SALMON3 "{CD7054}"
  2033. #define SALMON_3 "{CD7054}"
  2034. #define SALMON4 "{8B4C39}"
  2035. #define SALMON_4 "{8B4C39}"
  2036. #define LIGHTSALMON1 "{FFA07A}"
  2037. #define LIGHT_SALMON_1 "{FFA07A}"
  2038. #define LIGHTSALMON2 "{EE9572}"
  2039. #define LIGHT_SALMON_2 "{EE9572}"
  2040. #define LIGHTSALMON3 "{CD8162}"
  2041. #define LIGHT_SALMON_3 "{CD8162}"
  2042. #define LIGHTSALMON4 "{8B5742}"
  2043. #define LIGHT_SALMON_4 "{8B5742}"
  2044. #define ORANGE1 "{FFA500}"
  2045. #define ORANGE_1 "{FFA500}"
  2046. #define ORANGE2 "{EE9A00}"
  2047. #define ORANGE_2 "{EE9A00}"
  2048. #define ORANGE3 "{CD8500}"
  2049. #define ORANGE_3 "{CD8500}"
  2050. #define ORANGE4 "{8B5A00}"
  2051. #define ORANGE_4 "{8B5A00}"
  2052. #define DARKORANGE1 "{FF7F00}"
  2053. #define DARK_ORANGE_1 "{FF7F00}"
  2054. #define DARKORANGE2 "{EE7600}"
  2055. #define DARK_ORANGE_2 "{EE7600}"
  2056. #define DARKORANGE3 "{CD6600}"
  2057. #define DARK_ORANGE_3 "{CD6600}"
  2058. #define DARKORANGE4 "{8B4500}"
  2059. #define DARK_ORANGE_4 "{8B4500}"
  2060. #define CORAL1 "{FF7256}"
  2061. #define CORAL_1 "{FF7256}"
  2062. #define CORAL2 "{EE6A50}"
  2063. #define CORAL_2 "{EE6A50}"
  2064. #define CORAL3 "{CD5B45}"
  2065. #define CORAL_3 "{CD5B45}"
  2066. #define CORAL4 "{8B3E2F}"
  2067. #define CORAL_4 "{8B3E2F}"
  2068. #define TOMATO1 "{FF6347}"
  2069. #define TOMATO_1 "{FF6347}"
  2070. #define TOMATO2 "{EE5C42}"
  2071. #define TOMATO_2 "{EE5C42}"
  2072. #define TOMATO3 "{CD4F39}"
  2073. #define TOMATO_3 "{CD4F39}"
  2074. #define TOMATO4 "{8B3626}"
  2075. #define TOMATO_4 "{8B3626}"
  2076. #define ORANGERED1 "{FF4500}"
  2077. #define ORANGE_RED_1 "{FF4500}"
  2078. #define ORANGERED2 "{EE4000}"
  2079. #define ORANGE_RED_2 "{EE4000}"
  2080. #define ORANGERED3 "{CD3700}"
  2081. #define ORANGE_RED_3 "{CD3700}"
  2082. #define ORANGERED4 "{8B2500}"
  2083. #define ORANGE_RED_4 "{8B2500}"
  2084. #define RED1 "{FF0000}"
  2085. #define RED_1 "{FF0000}"
  2086. #define RED2 "{EE0000}"
  2087. #define RED_2 "{EE0000}"
  2088. #define RED3 "{CD0000}"
  2089. #define RED_3 "{CD0000}"
  2090. #define RED4 "{8B0000}"
  2091. #define RED_4 "{8B0000}"
  2092. #define DEEPPINK1 "{FF1493}"
  2093. #define DEEP_PINK_1 "{FF1493}"
  2094. #define DEEPPINK2 "{EE1289}"
  2095. #define DEEP_PINK_2 "{EE1289}"
  2096. #define DEEPPINK3 "{CD1076}"
  2097. #define DEEP_PINK_3 "{CD1076}"
  2098. #define DEEPPINK4 "{8B0A50}"
  2099. #define DEEP_PINK_4 "{8B0A50}"
  2100. #define HOTPINK1 "{FF6EB4}"
  2101. #define HOT_PINK_1 "{FF6EB4}"
  2102. #define HOTPINK2 "{EE6AA7}"
  2103. #define HOT_PINK_2 "{EE6AA7}"
  2104. #define HOTPINK3 "{CD6090}"
  2105. #define HOT_PINK_3 "{CD6090}"
  2106. #define HOTPINK4 "{8B3A62}"
  2107. #define HOT_PINK_4 "{8B3A62}"
  2108. #define PINK1 "{FFB5C5}"
  2109. #define PINK_1 "{FFB5C5}"
  2110. #define PINK2 "{EEA9B8}"
  2111. #define PINK_2 "{EEA9B8}"
  2112. #define PINK3 "{CD919E}"
  2113. #define PINK_3 "{CD919E}"
  2114. #define PINK4 "{8B636C}"
  2115. #define PINK_4 "{8B636C}"
  2116. #define LIGHTPINK1 "{FFAEB9}"
  2117. #define LIGHT_PINK_1 "{FFAEB9}"
  2118. #define LIGHTPINK2 "{EEA2AD}"
  2119. #define LIGHT_PINK_2 "{EEA2AD}"
  2120. #define LIGHTPINK3 "{CD8C95}"
  2121. #define LIGHT_PINK_3 "{CD8C95}"
  2122. #define LIGHTPINK4 "{8B5F65}"
  2123. #define LIGHT_PINK_4 "{8B5F65}"
  2124. #define PALEVIOLETRED1 "{FF82AB}"
  2125. #define PALE_VIOLET_RED_1 "{FF82AB}"
  2126. #define PALEVIOLETRED2 "{EE799F}"
  2127. #define PALE_VIOLET_RED_2 "{EE799F}"
  2128. #define PALEVIOLETRED3 "{CD6889}"
  2129. #define PALE_VIOLET_RED_3 "{CD6889}"
  2130. #define PALEVIOLETRED4 "{8B475D}"
  2131. #define PALE_VIOLET_RED_4 "{8B475D}"
  2132. #define MAROON1 "{FF34B3}"
  2133. #define MAROON_1 "{FF34B3}"
  2134. #define MAROON2 "{EE30A7}"
  2135. #define MAROON_2 "{EE30A7}"
  2136. #define MAROON3 "{CD2990}"
  2137. #define MAROON_3 "{CD2990}"
  2138. #define MAROON4 "{8B1C62}"
  2139. #define MAROON_4 "{8B1C62}"
  2140. #define VIOLETRED1 "{FF3E96}"
  2141. #define VIOLET_RED_1 "{FF3E96}"
  2142. #define VIOLETRED2 "{EE3A8C}"
  2143. #define VIOLET_RED_2 "{EE3A8C}"
  2144. #define VIOLETRED3 "{CD3278}"
  2145. #define VIOLET_RED_3 "{CD3278}"
  2146. #define VIOLETRED4 "{8B2252}"
  2147. #define VIOLET_RED_4 "{8B2252}"
  2148. #define MAGENTA1 "{FF00FF}"
  2149. #define MAGENTA_1 "{FF00FF}"
  2150. #define MAGENTA2 "{EE00EE}"
  2151. #define MAGENTA_2 "{EE00EE}"
  2152. #define MAGENTA3 "{CD00CD}"
  2153. #define MAGENTA_3 "{CD00CD}"
  2154. #define MAGENTA4 "{8B008B}"
  2155. #define MAGENTA_4 "{8B008B}"
  2156. #define ORCHID1 "{FF83FA}"
  2157. #define ORCHID_1 "{FF83FA}"
  2158. #define ORCHID2 "{EE7AE9}"
  2159. #define ORCHID_2 "{EE7AE9}"
  2160. #define ORCHID3 "{CD69C9}"
  2161. #define ORCHID_3 "{CD69C9}"
  2162. #define ORCHID4 "{8B4789}"
  2163. #define ORCHID_4 "{8B4789}"
  2164. #define PLUM1 "{FFBBFF}"
  2165. #define PLUM_1 "{FFBBFF}"
  2166. #define PLUM2 "{EEAEEE}"
  2167. #define PLUM_2 "{EEAEEE}"
  2168. #define PLUM3 "{CD96CD}"
  2169. #define PLUM_3 "{CD96CD}"
  2170. #define PLUM4 "{8B668B}"
  2171. #define PLUM_4 "{8B668B}"
  2172. #define MEDIUMORCHID1 "{E066FF}"
  2173. #define MEDIUM_ORCHID_1 "{E066FF}"
  2174. #define MEDIUMORCHID2 "{D15FEE}"
  2175. #define MEDIUM_ORCHID_2 "{D15FEE}"
  2176. #define MEDIUMORCHID3 "{B452CD}"
  2177. #define MEDIUM_ORCHID_3 "{B452CD}"
  2178. #define MEDIUMORCHID4 "{7A378B}"
  2179. #define MEDIUM_ORCHID_4 "{7A378B}"
  2180. #define DARKORCHID1 "{BF3EFF}"
  2181. #define DARK_ORCHID_1 "{BF3EFF}"
  2182. #define DARKORCHID2 "{B23AEE}"
  2183. #define DARK_ORCHID_2 "{B23AEE}"
  2184. #define DARKORCHID3 "{9A32CD}"
  2185. #define DARK_ORCHID_3 "{9A32CD}"
  2186. #define DARKORCHID4 "{68228B}"
  2187. #define DARK_ORCHID_4 "{68228B}"
  2188. #define PURPLE1 "{9B30FF}"
  2189. #define PURPLE_1 "{9B30FF}"
  2190. #define PURPLE2 "{912CEE}"
  2191. #define PURPLE_2 "{912CEE}"
  2192. #define PURPLE3 "{7D26CD}"
  2193. #define PURPLE_3 "{7D26CD}"
  2194. #define PURPLE4 "{551A8B}"
  2195. #define PURPLE_4 "{551A8B}"
  2196. #define MEDIUMPURPLE1 "{AB82FF}"
  2197. #define MEDIUM_PURPLE_1 "{AB82FF}"
  2198. #define MEDIUMPURPLE2 "{9F79EE}"
  2199. #define MEDIUM_PURPLE_2 "{9F79EE}"
  2200. #define MEDIUMPURPLE3 "{8968CD}"
  2201. #define MEDIUM_PURPLE_3 "{8968CD}"
  2202. #define MEDIUMPURPLE4 "{5D478B}"
  2203. #define MEDIUM_PURPLE_4 "{5D478B}"
  2204. #define THISTLE1 "{FFE1FF}"
  2205. #define THISTLE_1 "{FFE1FF}"
  2206. #define THISTLE2 "{EED2EE}"
  2207. #define THISTLE_2 "{EED2EE}"
  2208. #define THISTLE3 "{CDB5CD}"
  2209. #define THISTLE_3 "{CDB5CD}"
  2210. #define THISTLE4 "{8B7B8B}"
  2211. #define THISTLE_4 "{8B7B8B}"
  2212. #define GRAY0 "{000000}"
  2213. #define GRAY_0 "{000000}"
  2214. #define GREY0 "{000000}"
  2215. #define GREY_0 "{000000}"
  2216. #define GRAY1 "{030303}"
  2217. #define GRAY_1 "{030303}"
  2218. #define GREY1 "{030303}"
  2219. #define GREY_1 "{030303}"
  2220. #define GRAY2 "{050505}"
  2221. #define GRAY_2 "{050505}"
  2222. #define GREY2 "{050505}"
  2223. #define GREY_2 "{050505}"
  2224. #define GRAY3 "{080808}"
  2225. #define GRAY_3 "{080808}"
  2226. #define GREY3 "{080808}"
  2227. #define GREY_3 "{080808}"
  2228. #define GRAY4 "{0A0A0A}"
  2229. #define GRAY_4 "{0A0A0A}"
  2230. #define GREY4 "{0A0A0A}"
  2231. #define GREY_4 "{0A0A0A}"
  2232. #define GRAY5 "{0D0D0D}"
  2233. #define GRAY_5 "{0D0D0D}"
  2234. #define GREY5 "{0D0D0D}"
  2235. #define GREY_5 "{0D0D0D}"
  2236. #define GRAY6 "{0F0F0F}"
  2237. #define GRAY_6 "{0F0F0F}"
  2238. #define GREY6 "{0F0F0F}"
  2239. #define GREY_6 "{0F0F0F}"
  2240. #define GRAY7 "{121212}"
  2241. #define GRAY_7 "{121212}"
  2242. #define GREY7 "{121212}"
  2243. #define GREY_7 "{121212}"
  2244. #define GRAY8 "{141414}"
  2245. #define GRAY_8 "{141414}"
  2246. #define GREY8 "{141414}"
  2247. #define GREY_8 "{141414}"
  2248. #define GRAY9 "{171717}"
  2249. #define GRAY_9 "{171717}"
  2250. #define GREY9 "{171717}"
  2251. #define GREY_9 "{171717}"
  2252. #define GRAY10 "{1A1A1A}"
  2253. #define GRAY_10 "{1A1A1A}"
  2254. #define GREY10 "{1A1A1A}"
  2255. #define GREY_10 "{1A1A1A}"
  2256. #define GRAY11 "{1C1C1C}"
  2257. #define GRAY_11 "{1C1C1C}"
  2258. #define GREY11 "{1C1C1C}"
  2259. #define GREY_11 "{1C1C1C}"
  2260. #define GRAY12 "{1F1F1F}"
  2261. #define GRAY_12 "{1F1F1F}"
  2262. #define GREY12 "{1F1F1F}"
  2263. #define GREY_12 "{1F1F1F}"
  2264. #define GRAY13 "{212121}"
  2265. #define GRAY_13 "{212121}"
  2266. #define GREY13 "{212121}"
  2267. #define GREY_13 "{212121}"
  2268. #define GRAY14 "{242424}"
  2269. #define GRAY_14 "{242424}"
  2270. #define GREY14 "{242424}"
  2271. #define GREY_14 "{242424}"
  2272. #define GRAY15 "{262626}"
  2273. #define GRAY_15 "{262626}"
  2274. #define GREY15 "{262626}"
  2275. #define GREY_15 "{262626}"
  2276. #define GRAY16 "{292929}"
  2277. #define GRAY_16 "{292929}"
  2278. #define GREY16 "{292929}"
  2279. #define GREY_16 "{292929}"
  2280. #define GRAY17 "{2B2B2B}"
  2281. #define GRAY_17 "{2B2B2B}"
  2282. #define GREY17 "{2B2B2B}"
  2283. #define GREY_17 "{2B2B2B}"
  2284. #define GRAY18 "{2E2E2E}"
  2285. #define GRAY_18 "{2E2E2E}"
  2286. #define GREY18 "{2E2E2E}"
  2287. #define GREY_18 "{2E2E2E}"
  2288. #define GRAY19 "{303030}"
  2289. #define GRAY_19 "{303030}"
  2290. #define GREY19 "{303030}"
  2291. #define GREY_19 "{303030}"
  2292. #define GRAY20 "{333333}"
  2293. #define GRAY_20 "{333333}"
  2294. #define GREY20 "{333333}"
  2295. #define GREY_20 "{333333}"
  2296. #define GRAY21 "{363636}"
  2297. #define GRAY_21 "{363636}"
  2298. #define GREY21 "{363636}"
  2299. #define GREY_21 "{363636}"
  2300. #define GRAY22 "{383838}"
  2301. #define GRAY_22 "{383838}"
  2302. #define GREY22 "{383838}"
  2303. #define GREY_22 "{383838}"
  2304. #define GRAY23 "{3B3B3B}"
  2305. #define GRAY_23 "{3B3B3B}"
  2306. #define GREY23 "{3B3B3B}"
  2307. #define GREY_23 "{3B3B3B}"
  2308. #define GRAY24 "{3D3D3D}"
  2309. #define GRAY_24 "{3D3D3D}"
  2310. #define GREY24 "{3D3D3D}"
  2311. #define GREY_24 "{3D3D3D}"
  2312. #define GRAY25 "{404040}"
  2313. #define GRAY_25 "{404040}"
  2314. #define GREY25 "{404040}"
  2315. #define GREY_25 "{404040}"
  2316. #define GRAY26 "{424242}"
  2317. #define GRAY_26 "{424242}"
  2318. #define GREY26 "{424242}"
  2319. #define GREY_26 "{424242}"
  2320. #define GRAY27 "{454545}"
  2321. #define GRAY_27 "{454545}"
  2322. #define GREY27 "{454545}"
  2323. #define GREY_27 "{454545}"
  2324. #define GRAY28 "{474747}"
  2325. #define GRAY_28 "{474747}"
  2326. #define GREY28 "{474747}"
  2327. #define GREY_28 "{474747}"
  2328. #define GRAY29 "{4A4A4A}"
  2329. #define GRAY_29 "{4A4A4A}"
  2330. #define GREY29 "{4A4A4A}"
  2331. #define GREY_29 "{4A4A4A}"
  2332. #define GRAY30 "{4D4D4D}"
  2333. #define GRAY_30 "{4D4D4D}"
  2334. #define GREY30 "{4D4D4D}"
  2335. #define GREY_30 "{4D4D4D}"
  2336. #define GRAY31 "{4F4F4F}"
  2337. #define GRAY_31 "{4F4F4F}"
  2338. #define GREY31 "{4F4F4F}"
  2339. #define GREY_31 "{4F4F4F}"
  2340. #define GRAY32 "{525252}"
  2341. #define GRAY_32 "{525252}"
  2342. #define GREY32 "{525252}"
  2343. #define GREY_32 "{525252}"
  2344. #define GRAY33 "{545454}"
  2345. #define GRAY_33 "{545454}"
  2346. #define GREY33 "{545454}"
  2347. #define GREY_33 "{545454}"
  2348. #define GRAY34 "{575757}"
  2349. #define GRAY_34 "{575757}"
  2350. #define GREY34 "{575757}"
  2351. #define GREY_34 "{575757}"
  2352. #define GRAY35 "{595959}"
  2353. #define GRAY_35 "{595959}"
  2354. #define GREY35 "{595959}"
  2355. #define GREY_35 "{595959}"
  2356. #define GRAY36 "{5C5C5C}"
  2357. #define GRAY_36 "{5C5C5C}"
  2358. #define GREY36 "{5C5C5C}"
  2359. #define GREY_36 "{5C5C5C}"
  2360. #define GRAY37 "{5E5E5E}"
  2361. #define GRAY_37 "{5E5E5E}"
  2362. #define GREY37 "{5E5E5E}"
  2363. #define GREY_37 "{5E5E5E}"
  2364. #define GRAY38 "{616161}"
  2365. #define GRAY_38 "{616161}"
  2366. #define GREY38 "{616161}"
  2367. #define GREY_38 "{616161}"
  2368. #define GRAY39 "{636363}"
  2369. #define GRAY_39 "{636363}"
  2370. #define GREY39 "{636363}"
  2371. #define GREY_39 "{636363}"
  2372. #define GRAY40 "{666666}"
  2373. #define GRAY_40 "{666666}"
  2374. #define GREY40 "{666666}"
  2375. #define GREY_40 "{666666}"
  2376. #define GRAY41 "{696969}"
  2377. #define GRAY_41 "{696969}"
  2378. #define GREY41 "{696969}"
  2379. #define GREY_41 "{696969}"
  2380. #define GRAY42 "{6B6B6B}"
  2381. #define GRAY_42 "{6B6B6B}"
  2382. #define GREY42 "{6B6B6B}"
  2383. #define GREY_42 "{6B6B6B}"
  2384. #define GRAY43 "{6E6E6E}"
  2385. #define GRAY_43 "{6E6E6E}"
  2386. #define GREY43 "{6E6E6E}"
  2387. #define GREY_43 "{6E6E6E}"
  2388. #define GRAY44 "{707070}"
  2389. #define GRAY_44 "{707070}"
  2390. #define GREY44 "{707070}"
  2391. #define GREY_44 "{707070}"
  2392. #define GRAY45 "{737373}"
  2393. #define GRAY_45 "{737373}"
  2394. #define GREY45 "{737373}"
  2395. #define GREY_45 "{737373}"
  2396. #define GRAY46 "{757575}"
  2397. #define GRAY_46 "{757575}"
  2398. #define GREY46 "{757575}"
  2399. #define GREY_46 "{757575}"
  2400. #define GRAY47 "{787878}"
  2401. #define GRAY_47 "{787878}"
  2402. #define GREY47 "{787878}"
  2403. #define GREY_47 "{787878}"
  2404. #define GRAY48 "{7A7A7A}"
  2405. #define GRAY_48 "{7A7A7A}"
  2406. #define GREY48 "{7A7A7A}"
  2407. #define GREY_48 "{7A7A7A}"
  2408. #define GRAY49 "{7D7D7D}"
  2409. #define GRAY_49 "{7D7D7D}"
  2410. #define GREY49 "{7D7D7D}"
  2411. #define GREY_49 "{7D7D7D}"
  2412. #define GRAY50 "{7F7F7F}"
  2413. #define GRAY_50 "{7F7F7F}"
  2414. #define GREY50 "{7F7F7F}"
  2415. #define GREY_50 "{7F7F7F}"
  2416. #define GRAY51 "{828282}"
  2417. #define GRAY_51 "{828282}"
  2418. #define GREY51 "{828282}"
  2419. #define GREY_51 "{828282}"
  2420. #define GRAY52 "{858585}"
  2421. #define GRAY_52 "{858585}"
  2422. #define GREY52 "{858585}"
  2423. #define GREY_52 "{858585}"
  2424. #define GRAY53 "{878787}"
  2425. #define GRAY_53 "{878787}"
  2426. #define GREY53 "{878787}"
  2427. #define GREY_53 "{878787}"
  2428. #define GRAY54 "{8A8A8A}"
  2429. #define GRAY_54 "{8A8A8A}"
  2430. #define GREY54 "{8A8A8A}"
  2431. #define GREY_54 "{8A8A8A}"
  2432. #define GRAY55 "{8C8C8C}"
  2433. #define GRAY_55 "{8C8C8C}"
  2434. #define GREY55 "{8C8C8C}"
  2435. #define GREY_55 "{8C8C8C}"
  2436. #define GRAY56 "{8F8F8F}"
  2437. #define GRAY_56 "{8F8F8F}"
  2438. #define GREY56 "{8F8F8F}"
  2439. #define GREY_56 "{8F8F8F}"
  2440. #define GRAY57 "{919191}"
  2441. #define GRAY_57 "{919191}"
  2442. #define GREY57 "{919191}"
  2443. #define GREY_57 "{919191}"
  2444. #define GRAY58 "{949494}"
  2445. #define GRAY_58 "{949494}"
  2446. #define GREY58 "{949494}"
  2447. #define GREY_58 "{949494}"
  2448. #define GRAY59 "{969696}"
  2449. #define GRAY_59 "{969696}"
  2450. #define GREY59 "{969696}"
  2451. #define GREY_59 "{969696}"
  2452. #define GRAY60 "{999999}"
  2453. #define GRAY_60 "{999999}"
  2454. #define GREY60 "{999999}"
  2455. #define GREY_60 "{999999}"
  2456. #define GRAY61 "{9C9C9C}"
  2457. #define GRAY_61 "{9C9C9C}"
  2458. #define GREY61 "{9C9C9C}"
  2459. #define GREY_61 "{9C9C9C}"
  2460. #define GRAY62 "{9E9E9E}"
  2461. #define GRAY_62 "{9E9E9E}"
  2462. #define GREY62 "{9E9E9E}"
  2463. #define GREY_62 "{9E9E9E}"
  2464. #define GRAY63 "{A1A1A1}"
  2465. #define GRAY_63 "{A1A1A1}"
  2466. #define GREY63 "{A1A1A1}"
  2467. #define GREY_63 "{A1A1A1}"
  2468. #define GRAY64 "{A3A3A3}"
  2469. #define GRAY_64 "{A3A3A3}"
  2470. #define GREY64 "{A3A3A3}"
  2471. #define GREY_64 "{A3A3A3}"
  2472. #define GRAY65 "{A6A6A6}"
  2473. #define GRAY_65 "{A6A6A6}"
  2474. #define GREY65 "{A6A6A6}"
  2475. #define GREY_65 "{A6A6A6}"
  2476. #define GRAY66 "{A8A8A8}"
  2477. #define GRAY_66 "{A8A8A8}"
  2478. #define GREY66 "{A8A8A8}"
  2479. #define GREY_66 "{A8A8A8}"
  2480. #define GRAY67 "{ABABAB}"
  2481. #define GRAY_67 "{ABABAB}"
  2482. #define GREY67 "{ABABAB}"
  2483. #define GREY_67 "{ABABAB}"
  2484. #define GRAY68 "{ADADAD}"
  2485. #define GRAY_68 "{ADADAD}"
  2486. #define GREY68 "{ADADAD}"
  2487. #define GREY_68 "{ADADAD}"
  2488. #define GRAY69 "{B0B0B0}"
  2489. #define GRAY_69 "{B0B0B0}"
  2490. #define GREY69 "{B0B0B0}"
  2491. #define GREY_69 "{B0B0B0}"
  2492. #define GRAY70 "{B3B3B3}"
  2493. #define GRAY_70 "{B3B3B3}"
  2494. #define GREY70 "{B3B3B3}"
  2495. #define GREY_70 "{B3B3B3}"
  2496. #define GRAY71 "{B5B5B5}"
  2497. #define GRAY_71 "{B5B5B5}"
  2498. #define GREY71 "{B5B5B5}"
  2499. #define GREY_71 "{B5B5B5}"
  2500. #define GRAY72 "{B8B8B8}"
  2501. #define GRAY_72 "{B8B8B8}"
  2502. #define GREY72 "{B8B8B8}"
  2503. #define GREY_72 "{B8B8B8}"
  2504. #define GRAY73 "{BABABA}"
  2505. #define GRAY_73 "{BABABA}"
  2506. #define GREY73 "{BABABA}"
  2507. #define GREY_73 "{BABABA}"
  2508. #define GRAY74 "{BDBDBD}"
  2509. #define GRAY_74 "{BDBDBD}"
  2510. #define GREY74 "{BDBDBD}"
  2511. #define GREY_74 "{BDBDBD}"
  2512. #define GRAY75 "{BFBFBF}"
  2513. #define GRAY_75 "{BFBFBF}"
  2514. #define GREY75 "{BFBFBF}"
  2515. #define GREY_75 "{BFBFBF}"
  2516. #define GRAY76 "{C2C2C2}"
  2517. #define GRAY_76 "{C2C2C2}"
  2518. #define GREY76 "{C2C2C2}"
  2519. #define GREY_76 "{C2C2C2}"
  2520. #define GRAY77 "{C4C4C4}"
  2521. #define GRAY_77 "{C4C4C4}"
  2522. #define GREY77 "{C4C4C4}"
  2523. #define GREY_77 "{C4C4C4}"
  2524. #define GRAY78 "{C7C7C7}"
  2525. #define GRAY_78 "{C7C7C7}"
  2526. #define GREY78 "{C7C7C7}"
  2527. #define GREY_78 "{C7C7C7}"
  2528. #define GRAY79 "{C9C9C9}"
  2529. #define GRAY_79 "{C9C9C9}"
  2530. #define GREY79 "{C9C9C9}"
  2531. #define GREY_79 "{C9C9C9}"
  2532. #define GRAY80 "{CCCCCC}"
  2533. #define GRAY_80 "{CCCCCC}"
  2534. #define GREY80 "{CCCCCC}"
  2535. #define GREY_80 "{CCCCCC}"
  2536. #define GRAY81 "{CFCFCF}"
  2537. #define GRAY_81 "{CFCFCF}"
  2538. #define GREY81 "{CFCFCF}"
  2539. #define GREY_81 "{CFCFCF}"
  2540. #define GRAY82 "{D1D1D1}"
  2541. #define GRAY_82 "{D1D1D1}"
  2542. #define GREY82 "{D1D1D1}"
  2543. #define GREY_82 "{D1D1D1}"
  2544. #define GRAY83 "{D4D4D4}"
  2545. #define GRAY_83 "{D4D4D4}"
  2546. #define GREY83 "{D4D4D4}"
  2547. #define GREY_83 "{D4D4D4}"
  2548. #define GRAY84 "{D6D6D6}"
  2549. #define GRAY_84 "{D6D6D6}"
  2550. #define GREY84 "{D6D6D6}"
  2551. #define GREY_84 "{D6D6D6}"
  2552. #define GRAY85 "{D9D9D9}"
  2553. #define GRAY_85 "{D9D9D9}"
  2554. #define GREY85 "{D9D9D9}"
  2555. #define GREY_85 "{D9D9D9}"
  2556. #define GRAY86 "{DBDBDB}"
  2557. #define GRAY_86 "{DBDBDB}"
  2558. #define GREY86 "{DBDBDB}"
  2559. #define GREY_86 "{DBDBDB}"
  2560. #define GRAY87 "{DEDEDE}"
  2561. #define GRAY_87 "{DEDEDE}"
  2562. #define GREY87 "{DEDEDE}"
  2563. #define GREY_87 "{DEDEDE}"
  2564. #define GRAY88 "{E0E0E0}"
  2565. #define GRAY_88 "{E0E0E0}"
  2566. #define GREY88 "{E0E0E0}"
  2567. #define GREY_88 "{E0E0E0}"
  2568. #define GRAY89 "{E3E3E3}"
  2569. #define GRAY_89 "{E3E3E3}"
  2570. #define GREY89 "{E3E3E3}"
  2571. #define GREY_89 "{E3E3E3}"
  2572. #define GRAY90 "{E5E5E5}"
  2573. #define GRAY_90 "{E5E5E5}"
  2574. #define GREY90 "{E5E5E5}"
  2575. #define GREY_90 "{E5E5E5}"
  2576. #define GRAY91 "{E8E8E8}"
  2577. #define GRAY_91 "{E8E8E8}"
  2578. #define GREY91 "{E8E8E8}"
  2579. #define GREY_91 "{E8E8E8}"
  2580. #define GRAY92 "{EBEBEB}"
  2581. #define GRAY_92 "{EBEBEB}"
  2582. #define GREY92 "{EBEBEB}"
  2583. #define GREY_92 "{EBEBEB}"
  2584. #define GRAY93 "{EDEDED}"
  2585. #define GRAY_93 "{EDEDED}"
  2586. #define GREY93 "{EDEDED}"
  2587. #define GREY_93 "{EDEDED}"
  2588. #define GRAY94 "{F0F0F0}"
  2589. #define GRAY_94 "{F0F0F0}"
  2590. #define GREY94 "{F0F0F0}"
  2591. #define GREY_94 "{F0F0F0}"
  2592. #define GRAY95 "{F2F2F2}"
  2593. #define GRAY_95 "{F2F2F2}"
  2594. #define GREY95 "{F2F2F2}"
  2595. #define GREY_95 "{F2F2F2}"
  2596. #define GRAY96 "{F5F5F5}"
  2597. #define GRAY_96 "{F5F5F5}"
  2598. #define GREY96 "{F5F5F5}"
  2599. #define GREY_96 "{F5F5F5}"
  2600. #define GRAY97 "{F7F7F7}"
  2601. #define GRAY_97 "{F7F7F7}"
  2602. #define GREY97 "{F7F7F7}"
  2603. #define GREY_97 "{F7F7F7}"
  2604. #define GRAY98 "{FAFAFA}"
  2605. #define GRAY_98 "{FAFAFA}"
  2606. #define GREY98 "{FAFAFA}"
  2607. #define GREY_98 "{FAFAFA}"
  2608. #define GRAY99 "{FCFCFC}"
  2609. #define GRAY_99 "{FCFCFC}"
  2610. #define GREY99 "{FCFCFC}"
  2611. #define GREY_99 "{FCFCFC}"
  2612. #define GRAY100 "{FFFFFF}"
  2613. #define GRAY_100 "{FFFFFF}"
  2614. #define GREY100 "{FFFFFF}"
  2615. #define GREY_100 "{FFFFFF}"
  2616. #define DARKGREY "{A9A9A9}"
  2617. #define DARK_GREY "{A9A9A9}"
  2618. #define DARKGRAY "{A9A9A9}"
  2619. #define DARK_GRAY "{A9A9A9}"
  2620. #define DARKBLUE "{00008B}"
  2621. #define DARK_BLUE "{00008B}"
  2622. #define DARKCYAN "{008B8B}"
  2623. #define DARK_CYAN "{008B8B}"
  2624. #define DARKMAGENTA "{8B008B}"
  2625. #define DARK_MAGENTA "{8B008B}"
  2626. #define DARKRED "{8B0000}"
  2627. #define DARK_RED "{8B0000}"
  2628. #define LIGHTGREEN "{90EE90}"
  2629. #define LIGHT_GREEN "{90EE90}"
  2630. // Colours without alpha.
  2631. #define Y_SNOW 0xFFFAFA00
  2632. #define Y_GHOSTWHITE 0xF8F8FF00
  2633. #define Y_GHOST_WHITE 0xF8F8FF00
  2634. #define Y_WHITESMOKE 0xF5F5F500
  2635. #define Y_WHITE_SMOKE 0xF5F5F500
  2636. #define Y_GAINSBORO 0xDCDCDC00
  2637. #define Y_FLORALWHITE 0xFFFAF000
  2638. #define Y_FLORAL_WHITE 0xFFFAF000
  2639. #define Y_OLDLACE 0xFDF5E600
  2640. #define Y_OLD_LACE 0xFDF5E600
  2641. #define Y_LINEN 0xFAF0E600
  2642. #define Y_ANTIQUEWHITE 0xFAEBD700
  2643. #define Y_ANTIQUE_WHITE 0xFAEBD700
  2644. #define Y_PAPAYAWHIP 0xFFEFD500
  2645. #define Y_PAPAYA_WHIP 0xFFEFD500
  2646. #define Y_BLANCHEDALMOND 0xFFEBCD00
  2647. #define Y_BLANCHED_ALMOND 0xFFEBCD00
  2648. #define Y_BISQUE 0xFFE4C400
  2649. #define Y_PEACHPUFF 0xFFDAB900
  2650. #define Y_PEACH_PUFF 0xFFDAB900
  2651. #define Y_NAVAJOWHITE 0xFFDEAD00
  2652. #define Y_NAVAJO_WHITE 0xFFDEAD00
  2653. #define Y_MOCCASIN 0xFFE4B500
  2654. #define Y_CORNSILK 0xFFF8DC00
  2655. #define Y_IVORY 0xFFFFF000
  2656. #define Y_LEMONCHIFFON 0xFFFACD00
  2657. #define Y_LEMON_CHIFFON 0xFFFACD00
  2658. #define Y_SEASHELL 0xFFF5EE00
  2659. #define Y_HONEYDEW 0xF0FFF000
  2660. #define Y_MINTCREAM 0xF5FFFA00
  2661. #define Y_MINT_CREAM 0xF5FFFA00
  2662. #define Y_AZURE 0xF0FFFF00
  2663. #define Y_ALICEBLUE 0xF0F8FF00
  2664. #define Y_ALICE_BLUE 0xF0F8FF00
  2665. #define Y_LAVENDER 0xE6E6FA00
  2666. #define Y_LAVENDERBLUSH 0xFFF0F500
  2667. #define Y_LAVENDER_BLUSH 0xFFF0F500
  2668. #define Y_MISTYROSE 0xFFE4E100
  2669. #define Y_MISTY_ROSE 0xFFE4E100
  2670. #define Y_WHITE 0xFFFFFF00
  2671. #define Y_BLACK 0x00000000
  2672. #define Y_DARKSLATEGRAY 0x2F4F4F00
  2673. #define Y_DARK_SLATE_GRAY 0x2F4F4F00
  2674. #define Y_DARKSLATEGREY 0x2F4F4F00
  2675. #define Y_DARK_SLATE_GREY 0x2F4F4F00
  2676. #define Y_DIMGRAY 0x69696900
  2677. #define Y_DIM_GRAY 0x69696900
  2678. #define Y_DIMGREY 0x69696900
  2679. #define Y_DIM_GREY 0x69696900
  2680. #define Y_SLATEGRAY 0x70809000
  2681. #define Y_SLATE_GRAY 0x70809000
  2682. #define Y_SLATEGREY 0x70809000
  2683. #define Y_SLATE_GREY 0x70809000
  2684. #define Y_LIGHTSLATEGRAY 0x77889900
  2685. #define Y_LIGHT_SLATE_GRAY 0x77889900
  2686. #define Y_LIGHTSLATEGREY 0x77889900
  2687. #define Y_LIGHT_SLATE_GREY 0x77889900
  2688. #define Y_GRAY 0xBEBEBE00
  2689. #define Y_GREY 0xBEBEBE00
  2690. #define Y_LIGHTGREY 0xD3D3D300
  2691. #define Y_LIGHT_GREY 0xD3D3D300
  2692. #define Y_LIGHTGRAY 0xD3D3D300
  2693. #define Y_LIGHT_GRAY 0xD3D3D300
  2694. #define Y_MIDNIGHTBLUE 0x19197000
  2695. #define Y_MIDNIGHT_BLUE 0x19197000
  2696. #define Y_NAVY 0x00008000
  2697. #define Y_NAVYBLUE 0x00008000
  2698. #define Y_NAVY_BLUE 0x00008000
  2699. #define Y_CORNFLOWERBLUE 0x6495ED00
  2700. #define Y_CORNFLOWER_BLUE 0x6495ED00
  2701. #define Y_DARKSLATEBLUE 0x483D8B00
  2702. #define Y_DARK_SLATE_BLUE 0x483D8B00
  2703. #define Y_SLATEBLUE 0x6A5ACD00
  2704. #define Y_SLATE_BLUE 0x6A5ACD00
  2705. #define Y_MEDIUMSLATEBLUE 0x7B68EE00
  2706. #define Y_MEDIUM_SLATE_BLUE 0x7B68EE00
  2707. #define Y_LIGHTSLATEBLUE 0x8470FF00
  2708. #define Y_LIGHT_SLATE_BLUE 0x8470FF00
  2709. #define Y_MEDIUMBLUE 0x0000CD00
  2710. #define Y_MEDIUM_BLUE 0x0000CD00
  2711. #define Y_ROYALBLUE 0x4169E100
  2712. #define Y_ROYAL_BLUE 0x4169E100
  2713. #define Y_BLUE 0x0000FF00
  2714. #define Y_DODGERBLUE 0x1E90FF00
  2715. #define Y_DODGER_BLUE 0x1E90FF00
  2716. #define Y_DEEPSKYBLUE 0x00BFFF00
  2717. #define Y_DEEP_SKY_BLUE 0x00BFFF00
  2718. #define Y_SKYBLUE 0x87CEEB00
  2719. #define Y_SKY_BLUE 0x87CEEB00
  2720. #define Y_LIGHTSKYBLUE 0x87CEFA00
  2721. #define Y_LIGHT_SKY_BLUE 0x87CEFA00
  2722. #define Y_STEELBLUE 0x4682B400
  2723. #define Y_STEEL_BLUE 0x4682B400
  2724. #define Y_LIGHTSTEELBLUE 0xB0C4DE00
  2725. #define Y_LIGHT_STEEL_BLUE 0xB0C4DE00
  2726. #define Y_LIGHTBLUE 0xADD8E600
  2727. #define Y_LIGHT_BLUE 0xADD8E600
  2728. #define Y_POWDERBLUE 0xB0E0E600
  2729. #define Y_POWDER_BLUE 0xB0E0E600
  2730. #define Y_PALETURQUOISE 0xAFEEEE00
  2731. #define Y_PALE_TURQUOISE 0xAFEEEE00
  2732. #define Y_DARKTURQUOISE 0x00CED100
  2733. #define Y_DARK_TURQUOISE 0x00CED100
  2734. #define Y_MEDIUMTURQUOISE 0x48D1CC00
  2735. #define Y_MEDIUM_TURQUOISE 0x48D1CC00
  2736. #define Y_TURQUOISE 0x40E0D000
  2737. #define Y_CYAN 0x00FFFF00
  2738. #define Y_LIGHTCYAN 0xE0FFFF00
  2739. #define Y_LIGHT_CYAN 0xE0FFFF00
  2740. #define Y_CADETBLUE 0x5F9EA000
  2741. #define Y_CADET_BLUE 0x5F9EA000
  2742. #define Y_MEDIUMAQUAMARINE 0x66CDAA00
  2743. #define Y_MEDIUM_AQUAMARINE 0x66CDAA00
  2744. #define Y_AQUAMARINE 0x7FFFD400
  2745. #define Y_DARKGREEN 0x00640000
  2746. #define Y_DARK_GREEN 0x00640000
  2747. #define Y_DARKOLIVEGREEN 0x556B2F00
  2748. #define Y_DARK_OLIVE_GREEN 0x556B2F00
  2749. #define Y_DARKSEAGREEN 0x8FBC8F00
  2750. #define Y_DARK_SEA_GREEN 0x8FBC8F00
  2751. #define Y_SEAGREEN 0x2E8B5700
  2752. #define Y_SEA_GREEN 0x2E8B5700
  2753. #define Y_MEDIUMSEAGREEN 0x3CB37100
  2754. #define Y_MEDIUM_SEA_GREEN 0x3CB37100
  2755. #define Y_LIGHTSEAGREEN 0x20B2AA00
  2756. #define Y_LIGHT_SEA_GREEN 0x20B2AA00
  2757. #define Y_PALEGREEN 0x98FB9800
  2758. #define Y_PALE_GREEN 0x98FB9800
  2759. #define Y_SPRINGGREEN 0x00FF7F00
  2760. #define Y_SPRING_GREEN 0x00FF7F00
  2761. #define Y_LAWNGREEN 0x7CFC0000
  2762. #define Y_LAWN_GREEN 0x7CFC0000
  2763. #define Y_GREEN 0x00FF0000
  2764. #define Y_CHARTREUSE 0x7FFF0000
  2765. #define Y_MEDIUMSPRINGGREEN 0x00FA9A00
  2766. #define Y_MEDIUM_SPRING_GREEN 0x00FA9A00
  2767. #define Y_GREENYELLOW 0xADFF2F00
  2768. #define Y_GREEN_YELLOW 0xADFF2F00
  2769. #define Y_LIMEGREEN 0x32CD3200
  2770. #define Y_LIME_GREEN 0x32CD3200
  2771. #define Y_YELLOWGREEN 0x9ACD3200
  2772. #define Y_YELLOW_GREEN 0x9ACD3200
  2773. #define Y_FORESTGREEN 0x228B2200
  2774. #define Y_FOREST_GREEN 0x228B2200
  2775. #define Y_OLIVEDRAB 0x6B8E2300
  2776. #define Y_OLIVE_DRAB 0x6B8E2300
  2777. #define Y_DARKKHAKI 0xBDB76B00
  2778. #define Y_DARK_KHAKI 0xBDB76B00
  2779. #define Y_KHAKI 0xF0E68C00
  2780. #define Y_PALEGOLDENROD 0xEEE8AA00
  2781. #define Y_PALE_GOLDENROD 0xEEE8AA00
  2782. #define Y_LIGHTGOLDENRODYELLOW 0xFAFAD200
  2783. #define Y_LIGHT_GOLDENROD_YELLOW 0xFAFAD200
  2784. #define Y_LIGHTYELLOW 0xFFFFE000
  2785. #define Y_LIGHT_YELLOW 0xFFFFE000
  2786. #define Y_YELLOW 0xFFFF0000
  2787. #define Y_GOLD 0xFFD70000
  2788. #define Y_LIGHTGOLDENROD 0xEEDD8200
  2789. #define Y_LIGHT_GOLDENROD 0xEEDD8200
  2790. #define Y_GOLDENROD 0xDAA52000
  2791. #define Y_DARKGOLDENROD 0xB8860B00
  2792. #define Y_DARK_GOLDENROD 0xB8860B00
  2793. #define Y_ROSYBROWN 0xBC8F8F00
  2794. #define Y_ROSY_BROWN 0xBC8F8F00
  2795. #define Y_INDIANRED 0xCD5C5C00
  2796. #define Y_INDIAN_RED 0xCD5C5C00
  2797. #define Y_SADDLEBROWN 0x8B451300
  2798. #define Y_SADDLE_BROWN 0x8B451300
  2799. #define Y_SIENNA 0xA0522D00
  2800. #define Y_PERU 0xCD853F00
  2801. #define Y_BURLYWOOD 0xDEB88700
  2802. #define Y_BEIGE 0xF5F5DC00
  2803. #define Y_WHEAT 0xF5DEB300
  2804. #define Y_SANDYBROWN 0xF4A46000
  2805. #define Y_SANDY_BROWN 0xF4A46000
  2806. #define Y_TAN 0xD2B48C00
  2807. #define Y_CHOCOLATE 0xD2691E00
  2808. #define Y_FIREBRICK 0xB2222200
  2809. #define Y_BROWN 0xA52A2A00
  2810. #define Y_DARKSALMON 0xE9967A00
  2811. #define Y_DARK_SALMON 0xE9967A00
  2812. #define Y_SALMON 0xFA807200
  2813. #define Y_LIGHTSALMON 0xFFA07A00
  2814. #define Y_LIGHT_SALMON 0xFFA07A00
  2815. #define Y_ORANGE 0xFFA50000
  2816. #define Y_DARKORANGE 0xFF8C0000
  2817. #define Y_DARK_ORANGE 0xFF8C0000
  2818. #define Y_CORAL 0xFF7F5000
  2819. #define Y_LIGHTCORAL 0xF0808000
  2820. #define Y_LIGHT_CORAL 0xF0808000
  2821. #define Y_TOMATO 0xFF634700
  2822. #define Y_ORANGERED 0xFF450000
  2823. #define Y_ORANGE_RED 0xFF450000
  2824. #define Y_RED 0xFF000000
  2825. #define Y_HOTPINK 0xFF69B400
  2826. #define Y_HOT_PINK 0xFF69B400
  2827. #define Y_DEEPPINK 0xFF149300
  2828. #define Y_DEEP_PINK 0xFF149300
  2829. #define Y_PINK 0xFFC0CB00
  2830. #define Y_LIGHTPINK 0xFFB6C100
  2831. #define Y_LIGHT_PINK 0xFFB6C100
  2832. #define Y_PALEVIOLETRED 0xDB709300
  2833. #define Y_PALE_VIOLET_RED 0xDB709300
  2834. #define Y_MAROON 0xB0306000
  2835. #define Y_MEDIUMVIOLETRED 0xC7158500
  2836. #define Y_MEDIUM_VIOLET_RED 0xC7158500
  2837. #define Y_VIOLETRED 0xD0209000
  2838. #define Y_VIOLET_RED 0xD0209000
  2839. #define Y_MAGENTA 0xFF00FF00
  2840. #define Y_VIOLET 0xEE82EE00
  2841. #define Y_PLUM 0xDDA0DD00
  2842. #define Y_ORCHID 0xDA70D600
  2843. #define Y_MEDIUMORCHID 0xBA55D300
  2844. #define Y_MEDIUM_ORCHID 0xBA55D300
  2845. #define Y_DARKORCHID 0x9932CC00
  2846. #define Y_DARK_ORCHID 0x9932CC00
  2847. #define Y_DARKVIOLET 0x9400D300
  2848. #define Y_DARK_VIOLET 0x9400D300
  2849. #define Y_BLUEVIOLET 0x8A2BE200
  2850. #define Y_BLUE_VIOLET 0x8A2BE200
  2851. #define Y_PURPLE 0xA020F000
  2852. #define Y_MEDIUMPURPLE 0x9370DB00
  2853. #define Y_MEDIUM_PURPLE 0x9370DB00
  2854. #define Y_THISTLE 0xD8BFD800
  2855. #define Y_SNOW1 0xFFFAFA00
  2856. #define Y_SNOW_1 0xFFFAFA00
  2857. #define Y_SNOW2 0xEEE9E900
  2858. #define Y_SNOW_2 0xEEE9E900
  2859. #define Y_SNOW3 0xCDC9C900
  2860. #define Y_SNOW_3 0xCDC9C900
  2861. #define Y_SNOW4 0x8B898900
  2862. #define Y_SNOW_4 0x8B898900
  2863. #define Y_SEASHELL1 0xFFF5EE00
  2864. #define Y_SEASHELL_1 0xFFF5EE00
  2865. #define Y_SEASHELL2 0xEEE5DE00
  2866. #define Y_SEASHELL_2 0xEEE5DE00
  2867. #define Y_SEASHELL3 0xCDC5BF00
  2868. #define Y_SEASHELL_3 0xCDC5BF00
  2869. #define Y_SEASHELL4 0x8B868200
  2870. #define Y_SEASHELL_4 0x8B868200
  2871. #define Y_ANTIQUEWHITE1 0xFFEFDB00
  2872. #define Y_ANTIQUE_WHITE_1 0xFFEFDB00
  2873. #define Y_ANTIQUEWHITE2 0xEEDFCC00
  2874. #define Y_ANTIQUE_WHITE_2 0xEEDFCC00
  2875. #define Y_ANTIQUEWHITE3 0xCDC0B000
  2876. #define Y_ANTIQUE_WHITE_3 0xCDC0B000
  2877. #define Y_ANTIQUEWHITE4 0x8B837800
  2878. #define Y_ANTIQUE_WHITE_4 0x8B837800
  2879. #define Y_BISQUE1 0xFFE4C400
  2880. #define Y_BISQUE_1 0xFFE4C400
  2881. #define Y_BISQUE2 0xEED5B700
  2882. #define Y_BISQUE_2 0xEED5B700
  2883. #define Y_BISQUE3 0xCDB79E00
  2884. #define Y_BISQUE_3 0xCDB79E00
  2885. #define Y_BISQUE4 0x8B7D6B00
  2886. #define Y_BISQUE_4 0x8B7D6B00
  2887. #define Y_PEACHPUFF1 0xFFDAB900
  2888. #define Y_PEACH_PUFF_1 0xFFDAB900
  2889. #define Y_PEACHPUFF2 0xEECBAD00
  2890. #define Y_PEACH_PUFF_2 0xEECBAD00
  2891. #define Y_PEACHPUFF3 0xCDAF9500
  2892. #define Y_PEACH_PUFF_3 0xCDAF9500
  2893. #define Y_PEACHPUFF4 0x8B776500
  2894. #define Y_PEACH_PUFF_4 0x8B776500
  2895. #define Y_NAVAJOWHITE1 0xFFDEAD00
  2896. #define Y_NAVAJO_WHITE_1 0xFFDEAD00
  2897. #define Y_NAVAJOWHITE2 0xEECFA100
  2898. #define Y_NAVAJO_WHITE_2 0xEECFA100
  2899. #define Y_NAVAJOWHITE3 0xCDB38B00
  2900. #define Y_NAVAJO_WHITE_3 0xCDB38B00
  2901. #define Y_NAVAJOWHITE4 0x8B795E00
  2902. #define Y_NAVAJO_WHITE_4 0x8B795E00
  2903. #define Y_LEMONCHIFFON1 0xFFFACD00
  2904. #define Y_LEMON_CHIFFON_1 0xFFFACD00
  2905. #define Y_LEMONCHIFFON2 0xEEE9BF00
  2906. #define Y_LEMON_CHIFFON_2 0xEEE9BF00
  2907. #define Y_LEMONCHIFFON3 0xCDC9A500
  2908. #define Y_LEMON_CHIFFON_3 0xCDC9A500
  2909. #define Y_LEMONCHIFFON4 0x8B897000
  2910. #define Y_LEMON_CHIFFON_4 0x8B897000
  2911. #define Y_CORNSILK1 0xFFF8DC00
  2912. #define Y_CORNSILK_1 0xFFF8DC00
  2913. #define Y_CORNSILK2 0xEEE8CD00
  2914. #define Y_CORNSILK_2 0xEEE8CD00
  2915. #define Y_CORNSILK3 0xCDC8B100
  2916. #define Y_CORNSILK_3 0xCDC8B100
  2917. #define Y_CORNSILK4 0x8B887800
  2918. #define Y_CORNSILK_4 0x8B887800
  2919. #define Y_IVORY1 0xFFFFF000
  2920. #define Y_IVORY_1 0xFFFFF000
  2921. #define Y_IVORY2 0xEEEEE000
  2922. #define Y_IVORY_2 0xEEEEE000
  2923. #define Y_IVORY3 0xCDCDC100
  2924. #define Y_IVORY_3 0xCDCDC100
  2925. #define Y_IVORY4 0x8B8B8300
  2926. #define Y_IVORY_4 0x8B8B8300
  2927. #define Y_HONEYDEW1 0xF0FFF000
  2928. #define Y_HONEYDEW_1 0xF0FFF000
  2929. #define Y_HONEYDEW2 0xE0EEE000
  2930. #define Y_HONEYDEW_2 0xE0EEE000
  2931. #define Y_HONEYDEW3 0xC1CDC100
  2932. #define Y_HONEYDEW_3 0xC1CDC100
  2933. #define Y_HONEYDEW4 0x838B8300
  2934. #define Y_HONEYDEW_4 0x838B8300
  2935. #define Y_LAVENDERBLUSH1 0xFFF0F500
  2936. #define Y_LAVENDER_BLUSH_1 0xFFF0F500
  2937. #define Y_LAVENDERBLUSH2 0xEEE0E500
  2938. #define Y_LAVENDER_BLUSH_2 0xEEE0E500
  2939. #define Y_LAVENDERBLUSH3 0xCDC1C500
  2940. #define Y_LAVENDER_BLUSH_3 0xCDC1C500
  2941. #define Y_LAVENDERBLUSH4 0x8B838600
  2942. #define Y_LAVENDER_BLUSH_4 0x8B838600
  2943. #define Y_MISTYROSE1 0xFFE4E100
  2944. #define Y_MISTY_ROSE_1 0xFFE4E100
  2945. #define Y_MISTYROSE2 0xEED5D200
  2946. #define Y_MISTY_ROSE_2 0xEED5D200
  2947. #define Y_MISTYROSE3 0xCDB7B500
  2948. #define Y_MISTY_ROSE_3 0xCDB7B500
  2949. #define Y_MISTYROSE4 0x8B7D7B00
  2950. #define Y_MISTY_ROSE_4 0x8B7D7B00
  2951. #define Y_AZURE1 0xF0FFFF00
  2952. #define Y_AZURE_1 0xF0FFFF00
  2953. #define Y_AZURE2 0xE0EEEE00
  2954. #define Y_AZURE_2 0xE0EEEE00
  2955. #define Y_AZURE3 0xC1CDCD00
  2956. #define Y_AZURE_3 0xC1CDCD00
  2957. #define Y_AZURE4 0x838B8B00
  2958. #define Y_AZURE_4 0x838B8B00
  2959. #define Y_SLATEBLUE1 0x836FFF00
  2960. #define Y_SLATE_BLUE_1 0x836FFF00
  2961. #define Y_SLATEBLUE2 0x7A67EE00
  2962. #define Y_SLATE_BLUE_2 0x7A67EE00
  2963. #define Y_SLATEBLUE3 0x6959CD00
  2964. #define Y_SLATE_BLUE_3 0x6959CD00
  2965. #define Y_SLATEBLUE4 0x473C8B00
  2966. #define Y_SLATE_BLUE_4 0x473C8B00
  2967. #define Y_ROYALBLUE1 0x4876FF00
  2968. #define Y_ROYAL_BLUE_1 0x4876FF00
  2969. #define Y_ROYALBLUE2 0x436EEE00
  2970. #define Y_ROYAL_BLUE_2 0x436EEE00
  2971. #define Y_ROYALBLUE3 0x3A5FCD00
  2972. #define Y_ROYAL_BLUE_3 0x3A5FCD00
  2973. #define Y_ROYALBLUE4 0x27408B00
  2974. #define Y_ROYAL_BLUE_4 0x27408B00
  2975. #define Y_BLUE1 0x0000FF00
  2976. #define Y_BLUE_1 0x0000FF00
  2977. #define Y_BLUE2 0x0000EE00
  2978. #define Y_BLUE_2 0x0000EE00
  2979. #define Y_BLUE3 0x0000CD00
  2980. #define Y_BLUE_3 0x0000CD00
  2981. #define Y_BLUE4 0x00008B00
  2982. #define Y_BLUE_4 0x00008B00
  2983. #define Y_DODGERBLUE1 0x1E90FF00
  2984. #define Y_DODGER_BLUE_1 0x1E90FF00
  2985. #define Y_DODGERBLUE2 0x1C86EE00
  2986. #define Y_DODGER_BLUE_2 0x1C86EE00
  2987. #define Y_DODGERBLUE3 0x1874CD00
  2988. #define Y_DODGER_BLUE_3 0x1874CD00
  2989. #define Y_DODGERBLUE4 0x104E8B00
  2990. #define Y_DODGER_BLUE_4 0x104E8B00
  2991. #define Y_STEELBLUE1 0x63B8FF00
  2992. #define Y_STEEL_BLUE_1 0x63B8FF00
  2993. #define Y_STEELBLUE2 0x5CACEE00
  2994. #define Y_STEEL_BLUE_2 0x5CACEE00
  2995. #define Y_STEELBLUE3 0x4F94CD00
  2996. #define Y_STEEL_BLUE_3 0x4F94CD00
  2997. #define Y_STEELBLUE4 0x36648B00
  2998. #define Y_STEEL_BLUE_4 0x36648B00
  2999. #define Y_DEEPSKYBLUE1 0x00BFFF00
  3000. #define Y_DEEP_SKY_BLUE_1 0x00BFFF00
  3001. #define Y_DEEPSKYBLUE2 0x00B2EE00
  3002. #define Y_DEEP_SKY_BLUE_2 0x00B2EE00
  3003. #define Y_DEEPSKYBLUE3 0x009ACD00
  3004. #define Y_DEEP_SKY_BLUE_3 0x009ACD00
  3005. #define Y_DEEPSKYBLUE4 0x00688B00
  3006. #define Y_DEEP_SKY_BLUE_4 0x00688B00
  3007. #define Y_SKYBLUE1 0x87CEFF00
  3008. #define Y_SKY_BLUE_1 0x87CEFF00
  3009. #define Y_SKYBLUE2 0x7EC0EE00
  3010. #define Y_SKY_BLUE_2 0x7EC0EE00
  3011. #define Y_SKYBLUE3 0x6CA6CD00
  3012. #define Y_SKY_BLUE_3 0x6CA6CD00
  3013. #define Y_SKYBLUE4 0x4A708B00
  3014. #define Y_SKY_BLUE_4 0x4A708B00
  3015. #define Y_LIGHTSKYBLUE1 0xB0E2FF00
  3016. #define Y_LIGHT_SKY_BLUE_1 0xB0E2FF00
  3017. #define Y_LIGHTSKYBLUE2 0xA4D3EE00
  3018. #define Y_LIGHT_SKY_BLUE_2 0xA4D3EE00
  3019. #define Y_LIGHTSKYBLUE3 0x8DB6CD00
  3020. #define Y_LIGHT_SKY_BLUE_3 0x8DB6CD00
  3021. #define Y_LIGHTSKYBLUE4 0x607B8B00
  3022. #define Y_LIGHT_SKY_BLUE_4 0x607B8B00
  3023. #define Y_SLATEGRAY1 0xC6E2FF00
  3024. #define Y_SLATE_GRAY_1 0xC6E2FF00
  3025. #define Y_SLATEGRAY2 0xB9D3EE00
  3026. #define Y_SLATE_GRAY_2 0xB9D3EE00
  3027. #define Y_SLATEGRAY3 0x9FB6CD00
  3028. #define Y_SLATE_GRAY_3 0x9FB6CD00
  3029. #define Y_SLATEGRAY4 0x6C7B8B00
  3030. #define Y_SLATE_GRAY_4 0x6C7B8B00
  3031. #define Y_SLATEGREY1 0xC6E2FF00
  3032. #define Y_SLATE_GREY_1 0xC6E2FF00
  3033. #define Y_SLATEGREY2 0xB9D3EE00
  3034. #define Y_SLATE_GREY_2 0xB9D3EE00
  3035. #define Y_SLATEGREY3 0x9FB6CD00
  3036. #define Y_SLATE_GREY_3 0x9FB6CD00
  3037. #define Y_SLATEGREY4 0x6C7B8B00
  3038. #define Y_SLATE_GREY_4 0x6C7B8B00
  3039. #define Y_LIGHTSTEELBLUE1 0xCAE1FF00
  3040. #define Y_LIGHT_STEEL_BLUE_1 0xCAE1FF00
  3041. #define Y_LIGHTSTEELBLUE2 0xBCD2EE00
  3042. #define Y_LIGHT_STEEL_BLUE_2 0xBCD2EE00
  3043. #define Y_LIGHTSTEELBLUE3 0xA2B5CD00
  3044. #define Y_LIGHT_STEEL_BLUE_3 0xA2B5CD00
  3045. #define Y_LIGHTSTEELBLUE4 0x6E7B8B00
  3046. #define Y_LIGHT_STEEL_BLUE_4 0x6E7B8B00
  3047. #define Y_LIGHTBLUE1 0xBFEFFF00
  3048. #define Y_LIGHT_BLUE_1 0xBFEFFF00
  3049. #define Y_LIGHTBLUE2 0xB2DFEE00
  3050. #define Y_LIGHT_BLUE_2 0xB2DFEE00
  3051. #define Y_LIGHTBLUE3 0x9AC0CD00
  3052. #define Y_LIGHT_BLUE_3 0x9AC0CD00
  3053. #define Y_LIGHTBLUE4 0x68838B00
  3054. #define Y_LIGHT_BLUE_4 0x68838B00
  3055. #define Y_LIGHTCYAN1 0xE0FFFF00
  3056. #define Y_LIGHT_CYAN_1 0xE0FFFF00
  3057. #define Y_LIGHTCYAN2 0xD1EEEE00
  3058. #define Y_LIGHT_CYAN_2 0xD1EEEE00
  3059. #define Y_LIGHTCYAN3 0xB4CDCD00
  3060. #define Y_LIGHT_CYAN_3 0xB4CDCD00
  3061. #define Y_LIGHTCYAN4 0x7A8B8B00
  3062. #define Y_LIGHT_CYAN_4 0x7A8B8B00
  3063. #define Y_PALETURQUOISE1 0xBBFFFF00
  3064. #define Y_PALE_TURQUOISE_1 0xBBFFFF00
  3065. #define Y_PALETURQUOISE2 0xAEEEEE00
  3066. #define Y_PALE_TURQUOISE_2 0xAEEEEE00
  3067. #define Y_PALETURQUOISE3 0x96CDCD00
  3068. #define Y_PALE_TURQUOISE_3 0x96CDCD00
  3069. #define Y_PALETURQUOISE4 0x668B8B00
  3070. #define Y_PALE_TURQUOISE_4 0x668B8B00
  3071. #define Y_CADETBLUE1 0x98F5FF00
  3072. #define Y_CADET_BLUE_1 0x98F5FF00
  3073. #define Y_CADETBLUE2 0x8EE5EE00
  3074. #define Y_CADET_BLUE_2 0x8EE5EE00
  3075. #define Y_CADETBLUE3 0x7AC5CD00
  3076. #define Y_CADET_BLUE_3 0x7AC5CD00
  3077. #define Y_CADETBLUE4 0x53868B00
  3078. #define Y_CADET_BLUE_4 0x53868B00
  3079. #define Y_TURQUOISE1 0x00F5FF00
  3080. #define Y_TURQUOISE_1 0x00F5FF00
  3081. #define Y_TURQUOISE2 0x00E5EE00
  3082. #define Y_TURQUOISE_2 0x00E5EE00
  3083. #define Y_TURQUOISE3 0x00C5CD00
  3084. #define Y_TURQUOISE_3 0x00C5CD00
  3085. #define Y_TURQUOISE4 0x00868B00
  3086. #define Y_TURQUOISE_4 0x00868B00
  3087. #define Y_CYAN1 0x00FFFF00
  3088. #define Y_CYAN_1 0x00FFFF00
  3089. #define Y_CYAN2 0x00EEEE00
  3090. #define Y_CYAN_2 0x00EEEE00
  3091. #define Y_CYAN3 0x00CDCD00
  3092. #define Y_CYAN_3 0x00CDCD00
  3093. #define Y_CYAN4 0x008B8B00
  3094. #define Y_CYAN_4 0x008B8B00
  3095. #define Y_DARKSLATEGRAY1 0x97FFFF00
  3096. #define Y_DARK_SLATE_GRAY_1 0x97FFFF00
  3097. #define Y_DARKSLATEGRAY2 0x8DEEEE00
  3098. #define Y_DARK_SLATE_GRAY_2 0x8DEEEE00
  3099. #define Y_DARKSLATEGRAY3 0x79CDCD00
  3100. #define Y_DARK_SLATE_GRAY_3 0x79CDCD00
  3101. #define Y_DARKSLATEGRAY4 0x528B8B00
  3102. #define Y_DARK_SLATE_GRAY_4 0x528B8B00
  3103. #define Y_DARKSLATEGREY1 0x97FFFF00
  3104. #define Y_DARK_SLATE_GREY_1 0x97FFFF00
  3105. #define Y_DARKSLATEGREY2 0x8DEEEE00
  3106. #define Y_DARK_SLATE_GREY_2 0x8DEEEE00
  3107. #define Y_DARKSLATEGREY3 0x79CDCD00
  3108. #define Y_DARK_SLATE_GREY_3 0x79CDCD00
  3109. #define Y_DARKSLATEGREY4 0x528B8B00
  3110. #define Y_DARK_SLATE_GREY_4 0x528B8B00
  3111. #define Y_AQUAMARINE1 0x7FFFD400
  3112. #define Y_AQUAMARINE_1 0x7FFFD400
  3113. #define Y_AQUAMARINE2 0x76EEC600
  3114. #define Y_AQUAMARINE_2 0x76EEC600
  3115. #define Y_AQUAMARINE3 0x66CDAA00
  3116. #define Y_AQUAMARINE_3 0x66CDAA00
  3117. #define Y_AQUAMARINE4 0x458B7400
  3118. #define Y_AQUAMARINE_4 0x458B7400
  3119. #define Y_DARKSEAGREEN1 0xC1FFC100
  3120. #define Y_DARK_SEA_GREEN_1 0xC1FFC100
  3121. #define Y_DARKSEAGREEN2 0xB4EEB400
  3122. #define Y_DARK_SEA_GREEN_2 0xB4EEB400
  3123. #define Y_DARKSEAGREEN3 0x9BCD9B00
  3124. #define Y_DARK_SEA_GREEN_3 0x9BCD9B00
  3125. #define Y_DARKSEAGREEN4 0x698B6900
  3126. #define Y_DARK_SEA_GREEN_4 0x698B6900
  3127. #define Y_SEAGREEN1 0x54FF9F00
  3128. #define Y_SEA_GREEN_1 0x54FF9F00
  3129. #define Y_SEAGREEN2 0x4EEE9400
  3130. #define Y_SEA_GREEN_2 0x4EEE9400
  3131. #define Y_SEAGREEN3 0x43CD8000
  3132. #define Y_SEA_GREEN_3 0x43CD8000
  3133. #define Y_SEAGREEN4 0x2E8B5700
  3134. #define Y_SEA_GREEN_4 0x2E8B5700
  3135. #define Y_PALEGREEN1 0x9AFF9A00
  3136. #define Y_PALE_GREEN_1 0x9AFF9A00
  3137. #define Y_PALEGREEN2 0x90EE9000
  3138. #define Y_PALE_GREEN_2 0x90EE9000
  3139. #define Y_PALEGREEN3 0x7CCD7C00
  3140. #define Y_PALE_GREEN_3 0x7CCD7C00
  3141. #define Y_PALEGREEN4 0x548B5400
  3142. #define Y_PALE_GREEN_4 0x548B5400
  3143. #define Y_SPRINGGREEN1 0x00FF7F00
  3144. #define Y_SPRING_GREEN_1 0x00FF7F00
  3145. #define Y_SPRINGGREEN2 0x00EE7600
  3146. #define Y_SPRING_GREEN_2 0x00EE7600
  3147. #define Y_SPRINGGREEN3 0x00CD6600
  3148. #define Y_SPRING_GREEN_3 0x00CD6600
  3149. #define Y_SPRINGGREEN4 0x008B4500
  3150. #define Y_SPRING_GREEN_4 0x008B4500
  3151. #define Y_GREEN1 0x00FF0000
  3152. #define Y_GREEN_1 0x00FF0000
  3153. #define Y_GREEN2 0x00EE0000
  3154. #define Y_GREEN_2 0x00EE0000
  3155. #define Y_GREEN3 0x00CD0000
  3156. #define Y_GREEN_3 0x00CD0000
  3157. #define Y_GREEN4 0x008B0000
  3158. #define Y_GREEN_4 0x008B0000
  3159. #define Y_CHARTREUSE1 0x7FFF0000
  3160. #define Y_CHARTREUSE_1 0x7FFF0000
  3161. #define Y_CHARTREUSE2 0x76EE0000
  3162. #define Y_CHARTREUSE_2 0x76EE0000
  3163. #define Y_CHARTREUSE3 0x66CD0000
  3164. #define Y_CHARTREUSE_3 0x66CD0000
  3165. #define Y_CHARTREUSE4 0x458B0000
  3166. #define Y_CHARTREUSE_4 0x458B0000
  3167. #define Y_OLIVEDRAB1 0xC0FF3E00
  3168. #define Y_OLIVE_DRAB_1 0xC0FF3E00
  3169. #define Y_OLIVEDRAB2 0xB3EE3A00
  3170. #define Y_OLIVE_DRAB_2 0xB3EE3A00
  3171. #define Y_OLIVEDRAB3 0x9ACD3200
  3172. #define Y_OLIVE_DRAB_3 0x9ACD3200
  3173. #define Y_OLIVEDRAB4 0x698B2200
  3174. #define Y_OLIVE_DRAB_4 0x698B2200
  3175. #define Y_DARKOLIVEGREEN1 0xCAFF7000
  3176. #define Y_DARK_OLIVE_GREEN_1 0xCAFF7000
  3177. #define Y_DARKOLIVEGREEN2 0xBCEE6800
  3178. #define Y_DARK_OLIVE_GREEN_2 0xBCEE6800
  3179. #define Y_DARKOLIVEGREEN3 0xA2CD5A00
  3180. #define Y_DARK_OLIVE_GREEN_3 0xA2CD5A00
  3181. #define Y_DARKOLIVEGREEN4 0x6E8B3D00
  3182. #define Y_DARK_OLIVE_GREEN_4 0x6E8B3D00
  3183. #define Y_KHAKI1 0xFFF68F00
  3184. #define Y_KHAKI_1 0xFFF68F00
  3185. #define Y_KHAKI2 0xEEE68500
  3186. #define Y_KHAKI_2 0xEEE68500
  3187. #define Y_KHAKI3 0xCDC67300
  3188. #define Y_KHAKI_3 0xCDC67300
  3189. #define Y_KHAKI4 0x8B864E00
  3190. #define Y_KHAKI_4 0x8B864E00
  3191. #define Y_LIGHTGOLDENROD1 0xFFEC8B00
  3192. #define Y_LIGHT_GOLDENROD_1 0xFFEC8B00
  3193. #define Y_LIGHTGOLDENROD2 0xEEDC8200
  3194. #define Y_LIGHT_GOLDENROD_2 0xEEDC8200
  3195. #define Y_LIGHTGOLDENROD3 0xCDBE7000
  3196. #define Y_LIGHT_GOLDENROD_3 0xCDBE7000
  3197. #define Y_LIGHTGOLDENROD4 0x8B814C00
  3198. #define Y_LIGHT_GOLDENROD_4 0x8B814C00
  3199. #define Y_LIGHTYELLOW1 0xFFFFE000
  3200. #define Y_LIGHT_YELLOW_1 0xFFFFE000
  3201. #define Y_LIGHTYELLOW2 0xEEEED100
  3202. #define Y_LIGHT_YELLOW_2 0xEEEED100
  3203. #define Y_LIGHTYELLOW3 0xCDCDB400
  3204. #define Y_LIGHT_YELLOW_3 0xCDCDB400
  3205. #define Y_LIGHTYELLOW4 0x8B8B7A00
  3206. #define Y_LIGHT_YELLOW_4 0x8B8B7A00
  3207. #define Y_YELLOW1 0xFFFF0000
  3208. #define Y_YELLOW_1 0xFFFF0000
  3209. #define Y_YELLOW2 0xEEEE0000
  3210. #define Y_YELLOW_2 0xEEEE0000
  3211. #define Y_YELLOW3 0xCDCD0000
  3212. #define Y_YELLOW_3 0xCDCD0000
  3213. #define Y_YELLOW4 0x8B8B0000
  3214. #define Y_YELLOW_4 0x8B8B0000
  3215. #define Y_GOLD1 0xFFD70000
  3216. #define Y_GOLD_1 0xFFD70000
  3217. #define Y_GOLD2 0xEEC90000
  3218. #define Y_GOLD_2 0xEEC90000
  3219. #define Y_GOLD3 0xCDAD0000
  3220. #define Y_GOLD_3 0xCDAD0000
  3221. #define Y_GOLD4 0x8B750000
  3222. #define Y_GOLD_4 0x8B750000
  3223. #define Y_GOLDENROD1 0xFFC12500
  3224. #define Y_GOLDENROD_1 0xFFC12500
  3225. #define Y_GOLDENROD2 0xEEB42200
  3226. #define Y_GOLDENROD_2 0xEEB42200
  3227. #define Y_GOLDENROD3 0xCD9B1D00
  3228. #define Y_GOLDENROD_3 0xCD9B1D00
  3229. #define Y_GOLDENROD4 0x8B691400
  3230. #define Y_GOLDENROD_4 0x8B691400
  3231. #define Y_DARKGOLDENROD1 0xFFB90F00
  3232. #define Y_DARK_GOLDENROD_1 0xFFB90F00
  3233. #define Y_DARKGOLDENROD2 0xEEAD0E00
  3234. #define Y_DARK_GOLDENROD_2 0xEEAD0E00
  3235. #define Y_DARKGOLDENROD3 0xCD950C00
  3236. #define Y_DARK_GOLDENROD_3 0xCD950C00
  3237. #define Y_DARKGOLDENROD4 0x8B650800
  3238. #define Y_DARK_GOLDENROD_4 0x8B650800
  3239. #define Y_ROSYBROWN1 0xFFC1C100
  3240. #define Y_ROSY_BROWN_1 0xFFC1C100
  3241. #define Y_ROSYBROWN2 0xEEB4B400
  3242. #define Y_ROSY_BROWN_2 0xEEB4B400
  3243. #define Y_ROSYBROWN3 0xCD9B9B00
  3244. #define Y_ROSY_BROWN_3 0xCD9B9B00
  3245. #define Y_ROSYBROWN4 0x8B696900
  3246. #define Y_ROSY_BROWN_4 0x8B696900
  3247. #define Y_INDIANRED1 0xFF6A6A00
  3248. #define Y_INDIAN_RED_1 0xFF6A6A00
  3249. #define Y_INDIANRED2 0xEE636300
  3250. #define Y_INDIAN_RED_2 0xEE636300
  3251. #define Y_INDIANRED3 0xCD555500
  3252. #define Y_INDIAN_RED_3 0xCD555500
  3253. #define Y_INDIANRED4 0x8B3A3A00
  3254. #define Y_INDIAN_RED_4 0x8B3A3A00
  3255. #define Y_SIENNA1 0xFF824700
  3256. #define Y_SIENNA_1 0xFF824700
  3257. #define Y_SIENNA2 0xEE794200
  3258. #define Y_SIENNA_2 0xEE794200
  3259. #define Y_SIENNA3 0xCD683900
  3260. #define Y_SIENNA_3 0xCD683900
  3261. #define Y_SIENNA4 0x8B472600
  3262. #define Y_SIENNA_4 0x8B472600
  3263. #define Y_BURLYWOOD1 0xFFD39B00
  3264. #define Y_BURLYWOOD_1 0xFFD39B00
  3265. #define Y_BURLYWOOD2 0xEEC59100
  3266. #define Y_BURLYWOOD_2 0xEEC59100
  3267. #define Y_BURLYWOOD3 0xCDAA7D00
  3268. #define Y_BURLYWOOD_3 0xCDAA7D00
  3269. #define Y_BURLYWOOD4 0x8B735500
  3270. #define Y_BURLYWOOD_4 0x8B735500
  3271. #define Y_WHEAT1 0xFFE7BA00
  3272. #define Y_WHEAT_1 0xFFE7BA00
  3273. #define Y_WHEAT2 0xEED8AE00
  3274. #define Y_WHEAT_2 0xEED8AE00
  3275. #define Y_WHEAT3 0xCDBA9600
  3276. #define Y_WHEAT_3 0xCDBA9600
  3277. #define Y_WHEAT4 0x8B7E6600
  3278. #define Y_WHEAT_4 0x8B7E6600
  3279. #define Y_TAN1 0xFFA54F00
  3280. #define Y_TAN_1 0xFFA54F00
  3281. #define Y_TAN2 0xEE9A4900
  3282. #define Y_TAN_2 0xEE9A4900
  3283. #define Y_TAN3 0xCD853F00
  3284. #define Y_TAN_3 0xCD853F00
  3285. #define Y_TAN4 0x8B5A2B00
  3286. #define Y_TAN_4 0x8B5A2B00
  3287. #define Y_CHOCOLATE1 0xFF7F2400
  3288. #define Y_CHOCOLATE_1 0xFF7F2400
  3289. #define Y_CHOCOLATE2 0xEE762100
  3290. #define Y_CHOCOLATE_2 0xEE762100
  3291. #define Y_CHOCOLATE3 0xCD661D00
  3292. #define Y_CHOCOLATE_3 0xCD661D00
  3293. #define Y_CHOCOLATE4 0x8B451300
  3294. #define Y_CHOCOLATE_4 0x8B451300
  3295. #define Y_FIREBRICK1 0xFF303000
  3296. #define Y_FIREBRICK_1 0xFF303000
  3297. #define Y_FIREBRICK2 0xEE2C2C00
  3298. #define Y_FIREBRICK_2 0xEE2C2C00
  3299. #define Y_FIREBRICK3 0xCD262600
  3300. #define Y_FIREBRICK_3 0xCD262600
  3301. #define Y_FIREBRICK4 0x8B1A1A00
  3302. #define Y_FIREBRICK_4 0x8B1A1A00
  3303. #define Y_BROWN1 0xFF404000
  3304. #define Y_BROWN_1 0xFF404000
  3305. #define Y_BROWN2 0xEE3B3B00
  3306. #define Y_BROWN_2 0xEE3B3B00
  3307. #define Y_BROWN3 0xCD333300
  3308. #define Y_BROWN_3 0xCD333300
  3309. #define Y_BROWN4 0x8B232300
  3310. #define Y_BROWN_4 0x8B232300
  3311. #define Y_SALMON1 0xFF8C6900
  3312. #define Y_SALMON_1 0xFF8C6900
  3313. #define Y_SALMON2 0xEE826200
  3314. #define Y_SALMON_2 0xEE826200
  3315. #define Y_SALMON3 0xCD705400
  3316. #define Y_SALMON_3 0xCD705400
  3317. #define Y_SALMON4 0x8B4C3900
  3318. #define Y_SALMON_4 0x8B4C3900
  3319. #define Y_LIGHTSALMON1 0xFFA07A00
  3320. #define Y_LIGHT_SALMON_1 0xFFA07A00
  3321. #define Y_LIGHTSALMON2 0xEE957200
  3322. #define Y_LIGHT_SALMON_2 0xEE957200
  3323. #define Y_LIGHTSALMON3 0xCD816200
  3324. #define Y_LIGHT_SALMON_3 0xCD816200
  3325. #define Y_LIGHTSALMON4 0x8B574200
  3326. #define Y_LIGHT_SALMON_4 0x8B574200
  3327. #define Y_ORANGE1 0xFFA50000
  3328. #define Y_ORANGE_1 0xFFA50000
  3329. #define Y_ORANGE2 0xEE9A0000
  3330. #define Y_ORANGE_2 0xEE9A0000
  3331. #define Y_ORANGE3 0xCD850000
  3332. #define Y_ORANGE_3 0xCD850000
  3333. #define Y_ORANGE4 0x8B5A0000
  3334. #define Y_ORANGE_4 0x8B5A0000
  3335. #define Y_DARKORANGE1 0xFF7F0000
  3336. #define Y_DARK_ORANGE_1 0xFF7F0000
  3337. #define Y_DARKORANGE2 0xEE760000
  3338. #define Y_DARK_ORANGE_2 0xEE760000
  3339. #define Y_DARKORANGE3 0xCD660000
  3340. #define Y_DARK_ORANGE_3 0xCD660000
  3341. #define Y_DARKORANGE4 0x8B450000
  3342. #define Y_DARK_ORANGE_4 0x8B450000
  3343. #define Y_CORAL1 0xFF725600
  3344. #define Y_CORAL_1 0xFF725600
  3345. #define Y_CORAL2 0xEE6A5000
  3346. #define Y_CORAL_2 0xEE6A5000
  3347. #define Y_CORAL3 0xCD5B4500
  3348. #define Y_CORAL_3 0xCD5B4500
  3349. #define Y_CORAL4 0x8B3E2F00
  3350. #define Y_CORAL_4 0x8B3E2F00
  3351. #define Y_TOMATO1 0xFF634700
  3352. #define Y_TOMATO_1 0xFF634700
  3353. #define Y_TOMATO2 0xEE5C4200
  3354. #define Y_TOMATO_2 0xEE5C4200
  3355. #define Y_TOMATO3 0xCD4F3900
  3356. #define Y_TOMATO_3 0xCD4F3900
  3357. #define Y_TOMATO4 0x8B362600
  3358. #define Y_TOMATO_4 0x8B362600
  3359. #define Y_ORANGERED1 0xFF450000
  3360. #define Y_ORANGE_RED_1 0xFF450000
  3361. #define Y_ORANGERED2 0xEE400000
  3362. #define Y_ORANGE_RED_2 0xEE400000
  3363. #define Y_ORANGERED3 0xCD370000
  3364. #define Y_ORANGE_RED_3 0xCD370000
  3365. #define Y_ORANGERED4 0x8B250000
  3366. #define Y_ORANGE_RED_4 0x8B250000
  3367. #define Y_RED1 0xFF000000
  3368. #define Y_RED_1 0xFF000000
  3369. #define Y_RED2 0xEE000000
  3370. #define Y_RED_2 0xEE000000
  3371. #define Y_RED3 0xCD000000
  3372. #define Y_RED_3 0xCD000000
  3373. #define Y_RED4 0x8B000000
  3374. #define Y_RED_4 0x8B000000
  3375. #define Y_DEEPPINK1 0xFF149300
  3376. #define Y_DEEP_PINK_1 0xFF149300
  3377. #define Y_DEEPPINK2 0xEE128900
  3378. #define Y_DEEP_PINK_2 0xEE128900
  3379. #define Y_DEEPPINK3 0xCD107600
  3380. #define Y_DEEP_PINK_3 0xCD107600
  3381. #define Y_DEEPPINK4 0x8B0A5000
  3382. #define Y_DEEP_PINK_4 0x8B0A5000
  3383. #define Y_HOTPINK1 0xFF6EB400
  3384. #define Y_HOT_PINK_1 0xFF6EB400
  3385. #define Y_HOTPINK2 0xEE6AA700
  3386. #define Y_HOT_PINK_2 0xEE6AA700
  3387. #define Y_HOTPINK3 0xCD609000
  3388. #define Y_HOT_PINK_3 0xCD609000
  3389. #define Y_HOTPINK4 0x8B3A6200
  3390. #define Y_HOT_PINK_4 0x8B3A6200
  3391. #define Y_PINK1 0xFFB5C500
  3392. #define Y_PINK_1 0xFFB5C500
  3393. #define Y_PINK2 0xEEA9B800
  3394. #define Y_PINK_2 0xEEA9B800
  3395. #define Y_PINK3 0xCD919E00
  3396. #define Y_PINK_3 0xCD919E00
  3397. #define Y_PINK4 0x8B636C00
  3398. #define Y_PINK_4 0x8B636C00
  3399. #define Y_LIGHTPINK1 0xFFAEB900
  3400. #define Y_LIGHT_PINK_1 0xFFAEB900
  3401. #define Y_LIGHTPINK2 0xEEA2AD00
  3402. #define Y_LIGHT_PINK_2 0xEEA2AD00
  3403. #define Y_LIGHTPINK3 0xCD8C9500
  3404. #define Y_LIGHT_PINK_3 0xCD8C9500
  3405. #define Y_LIGHTPINK4 0x8B5F6500
  3406. #define Y_LIGHT_PINK_4 0x8B5F6500
  3407. #define Y_PALEVIOLETRED1 0xFF82AB00
  3408. #define Y_PALE_VIOLET_RED_1 0xFF82AB00
  3409. #define Y_PALEVIOLETRED2 0xEE799F00
  3410. #define Y_PALE_VIOLET_RED_2 0xEE799F00
  3411. #define Y_PALEVIOLETRED3 0xCD688900
  3412. #define Y_PALE_VIOLET_RED_3 0xCD688900
  3413. #define Y_PALEVIOLETRED4 0x8B475D00
  3414. #define Y_PALE_VIOLET_RED_4 0x8B475D00
  3415. #define Y_MAROON1 0xFF34B300
  3416. #define Y_MAROON_1 0xFF34B300
  3417. #define Y_MAROON2 0xEE30A700
  3418. #define Y_MAROON_2 0xEE30A700
  3419. #define Y_MAROON3 0xCD299000
  3420. #define Y_MAROON_3 0xCD299000
  3421. #define Y_MAROON4 0x8B1C6200
  3422. #define Y_MAROON_4 0x8B1C6200
  3423. #define Y_VIOLETRED1 0xFF3E9600
  3424. #define Y_VIOLET_RED_1 0xFF3E9600
  3425. #define Y_VIOLETRED2 0xEE3A8C00
  3426. #define Y_VIOLET_RED_2 0xEE3A8C00
  3427. #define Y_VIOLETRED3 0xCD327800
  3428. #define Y_VIOLET_RED_3 0xCD327800
  3429. #define Y_VIOLETRED4 0x8B225200
  3430. #define Y_VIOLET_RED_4 0x8B225200
  3431. #define Y_MAGENTA1 0xFF00FF00
  3432. #define Y_MAGENTA_1 0xFF00FF00
  3433. #define Y_MAGENTA2 0xEE00EE00
  3434. #define Y_MAGENTA_2 0xEE00EE00
  3435. #define Y_MAGENTA3 0xCD00CD00
  3436. #define Y_MAGENTA_3 0xCD00CD00
  3437. #define Y_MAGENTA4 0x8B008B00
  3438. #define Y_MAGENTA_4 0x8B008B00
  3439. #define Y_ORCHID1 0xFF83FA00
  3440. #define Y_ORCHID_1 0xFF83FA00
  3441. #define Y_ORCHID2 0xEE7AE900
  3442. #define Y_ORCHID_2 0xEE7AE900
  3443. #define Y_ORCHID3 0xCD69C900
  3444. #define Y_ORCHID_3 0xCD69C900
  3445. #define Y_ORCHID4 0x8B478900
  3446. #define Y_ORCHID_4 0x8B478900
  3447. #define Y_PLUM1 0xFFBBFF00
  3448. #define Y_PLUM_1 0xFFBBFF00
  3449. #define Y_PLUM2 0xEEAEEE00
  3450. #define Y_PLUM_2 0xEEAEEE00
  3451. #define Y_PLUM3 0xCD96CD00
  3452. #define Y_PLUM_3 0xCD96CD00
  3453. #define Y_PLUM4 0x8B668B00
  3454. #define Y_PLUM_4 0x8B668B00
  3455. #define Y_MEDIUMORCHID1 0xE066FF00
  3456. #define Y_MEDIUM_ORCHID_1 0xE066FF00
  3457. #define Y_MEDIUMORCHID2 0xD15FEE00
  3458. #define Y_MEDIUM_ORCHID_2 0xD15FEE00
  3459. #define Y_MEDIUMORCHID3 0xB452CD00
  3460. #define Y_MEDIUM_ORCHID_3 0xB452CD00
  3461. #define Y_MEDIUMORCHID4 0x7A378B00
  3462. #define Y_MEDIUM_ORCHID_4 0x7A378B00
  3463. #define Y_DARKORCHID1 0xBF3EFF00
  3464. #define Y_DARK_ORCHID_1 0xBF3EFF00
  3465. #define Y_DARKORCHID2 0xB23AEE00
  3466. #define Y_DARK_ORCHID_2 0xB23AEE00
  3467. #define Y_DARKORCHID3 0x9A32CD00
  3468. #define Y_DARK_ORCHID_3 0x9A32CD00
  3469. #define Y_DARKORCHID4 0x68228B00
  3470. #define Y_DARK_ORCHID_4 0x68228B00
  3471. #define Y_PURPLE1 0x9B30FF00
  3472. #define Y_PURPLE_1 0x9B30FF00
  3473. #define Y_PURPLE2 0x912CEE00
  3474. #define Y_PURPLE_2 0x912CEE00
  3475. #define Y_PURPLE3 0x7D26CD00
  3476. #define Y_PURPLE_3 0x7D26CD00
  3477. #define Y_PURPLE4 0x551A8B00
  3478. #define Y_PURPLE_4 0x551A8B00
  3479. #define Y_MEDIUMPURPLE1 0xAB82FF00
  3480. #define Y_MEDIUM_PURPLE_1 0xAB82FF00
  3481. #define Y_MEDIUMPURPLE2 0x9F79EE00
  3482. #define Y_MEDIUM_PURPLE_2 0x9F79EE00
  3483. #define Y_MEDIUMPURPLE3 0x8968CD00
  3484. #define Y_MEDIUM_PURPLE_3 0x8968CD00
  3485. #define Y_MEDIUMPURPLE4 0x5D478B00
  3486. #define Y_MEDIUM_PURPLE_4 0x5D478B00
  3487. #define Y_THISTLE1 0xFFE1FF00
  3488. #define Y_THISTLE_1 0xFFE1FF00
  3489. #define Y_THISTLE2 0xEED2EE00
  3490. #define Y_THISTLE_2 0xEED2EE00
  3491. #define Y_THISTLE3 0xCDB5CD00
  3492. #define Y_THISTLE_3 0xCDB5CD00
  3493. #define Y_THISTLE4 0x8B7B8B00
  3494. #define Y_THISTLE_4 0x8B7B8B00
  3495. #define Y_GRAY0 0x00000000
  3496. #define Y_GRAY_0 0x00000000
  3497. #define Y_GREY0 0x00000000
  3498. #define Y_GREY_0 0x00000000
  3499. #define Y_GRAY1 0x03030300
  3500. #define Y_GRAY_1 0x03030300
  3501. #define Y_GREY1 0x03030300
  3502. #define Y_GREY_1 0x03030300
  3503. #define Y_GRAY2 0x05050500
  3504. #define Y_GRAY_2 0x05050500
  3505. #define Y_GREY2 0x05050500
  3506. #define Y_GREY_2 0x05050500
  3507. #define Y_GRAY3 0x08080800
  3508. #define Y_GRAY_3 0x08080800
  3509. #define Y_GREY3 0x08080800
  3510. #define Y_GREY_3 0x08080800
  3511. #define Y_GRAY4 0x0A0A0A00
  3512. #define Y_GRAY_4 0x0A0A0A00
  3513. #define Y_GREY4 0x0A0A0A00
  3514. #define Y_GREY_4 0x0A0A0A00
  3515. #define Y_GRAY5 0x0D0D0D00
  3516. #define Y_GRAY_5 0x0D0D0D00
  3517. #define Y_GREY5 0x0D0D0D00
  3518. #define Y_GREY_5 0x0D0D0D00
  3519. #define Y_GRAY6 0x0F0F0F00
  3520. #define Y_GRAY_6 0x0F0F0F00
  3521. #define Y_GREY6 0x0F0F0F00
  3522. #define Y_GREY_6 0x0F0F0F00
  3523. #define Y_GRAY7 0x12121200
  3524. #define Y_GRAY_7 0x12121200
  3525. #define Y_GREY7 0x12121200
  3526. #define Y_GREY_7 0x12121200
  3527. #define Y_GRAY8 0x14141400
  3528. #define Y_GRAY_8 0x14141400
  3529. #define Y_GREY8 0x14141400
  3530. #define Y_GREY_8 0x14141400
  3531. #define Y_GRAY9 0x17171700
  3532. #define Y_GRAY_9 0x17171700
  3533. #define Y_GREY9 0x17171700
  3534. #define Y_GREY_9 0x17171700
  3535. #define Y_GRAY10 0x1A1A1A00
  3536. #define Y_GRAY_10 0x1A1A1A00
  3537. #define Y_GREY10 0x1A1A1A00
  3538. #define Y_GREY_10 0x1A1A1A00
  3539. #define Y_GRAY11 0x1C1C1C00
  3540. #define Y_GRAY_11 0x1C1C1C00
  3541. #define Y_GREY11 0x1C1C1C00
  3542. #define Y_GREY_11 0x1C1C1C00
  3543. #define Y_GRAY12 0x1F1F1F00
  3544. #define Y_GRAY_12 0x1F1F1F00
  3545. #define Y_GREY12 0x1F1F1F00
  3546. #define Y_GREY_12 0x1F1F1F00
  3547. #define Y_GRAY13 0x21212100
  3548. #define Y_GRAY_13 0x21212100
  3549. #define Y_GREY13 0x21212100
  3550. #define Y_GREY_13 0x21212100
  3551. #define Y_GRAY14 0x24242400
  3552. #define Y_GRAY_14 0x24242400
  3553. #define Y_GREY14 0x24242400
  3554. #define Y_GREY_14 0x24242400
  3555. #define Y_GRAY15 0x26262600
  3556. #define Y_GRAY_15 0x26262600
  3557. #define Y_GREY15 0x26262600
  3558. #define Y_GREY_15 0x26262600
  3559. #define Y_GRAY16 0x29292900
  3560. #define Y_GRAY_16 0x29292900
  3561. #define Y_GREY16 0x29292900
  3562. #define Y_GREY_16 0x29292900
  3563. #define Y_GRAY17 0x2B2B2B00
  3564. #define Y_GRAY_17 0x2B2B2B00
  3565. #define Y_GREY17 0x2B2B2B00
  3566. #define Y_GREY_17 0x2B2B2B00
  3567. #define Y_GRAY18 0x2E2E2E00
  3568. #define Y_GRAY_18 0x2E2E2E00
  3569. #define Y_GREY18 0x2E2E2E00
  3570. #define Y_GREY_18 0x2E2E2E00
  3571. #define Y_GRAY19 0x30303000
  3572. #define Y_GRAY_19 0x30303000
  3573. #define Y_GREY19 0x30303000
  3574. #define Y_GREY_19 0x30303000
  3575. #define Y_GRAY20 0x33333300
  3576. #define Y_GRAY_20 0x33333300
  3577. #define Y_GREY20 0x33333300
  3578. #define Y_GREY_20 0x33333300
  3579. #define Y_GRAY21 0x36363600
  3580. #define Y_GRAY_21 0x36363600
  3581. #define Y_GREY21 0x36363600
  3582. #define Y_GREY_21 0x36363600
  3583. #define Y_GRAY22 0x38383800
  3584. #define Y_GRAY_22 0x38383800
  3585. #define Y_GREY22 0x38383800
  3586. #define Y_GREY_22 0x38383800
  3587. #define Y_GRAY23 0x3B3B3B00
  3588. #define Y_GRAY_23 0x3B3B3B00
  3589. #define Y_GREY23 0x3B3B3B00
  3590. #define Y_GREY_23 0x3B3B3B00
  3591. #define Y_GRAY24 0x3D3D3D00
  3592. #define Y_GRAY_24 0x3D3D3D00
  3593. #define Y_GREY24 0x3D3D3D00
  3594. #define Y_GREY_24 0x3D3D3D00
  3595. #define Y_GRAY25 0x40404000
  3596. #define Y_GRAY_25 0x40404000
  3597. #define Y_GREY25 0x40404000
  3598. #define Y_GREY_25 0x40404000
  3599. #define Y_GRAY26 0x42424200
  3600. #define Y_GRAY_26 0x42424200
  3601. #define Y_GREY26 0x42424200
  3602. #define Y_GREY_26 0x42424200
  3603. #define Y_GRAY27 0x45454500
  3604. #define Y_GRAY_27 0x45454500
  3605. #define Y_GREY27 0x45454500
  3606. #define Y_GREY_27 0x45454500
  3607. #define Y_GRAY28 0x47474700
  3608. #define Y_GRAY_28 0x47474700
  3609. #define Y_GREY28 0x47474700
  3610. #define Y_GREY_28 0x47474700
  3611. #define Y_GRAY29 0x4A4A4A00
  3612. #define Y_GRAY_29 0x4A4A4A00
  3613. #define Y_GREY29 0x4A4A4A00
  3614. #define Y_GREY_29 0x4A4A4A00
  3615. #define Y_GRAY30 0x4D4D4D00
  3616. #define Y_GRAY_30 0x4D4D4D00
  3617. #define Y_GREY30 0x4D4D4D00
  3618. #define Y_GREY_30 0x4D4D4D00
  3619. #define Y_GRAY31 0x4F4F4F00
  3620. #define Y_GRAY_31 0x4F4F4F00
  3621. #define Y_GREY31 0x4F4F4F00
  3622. #define Y_GREY_31 0x4F4F4F00
  3623. #define Y_GRAY32 0x52525200
  3624. #define Y_GRAY_32 0x52525200
  3625. #define Y_GREY32 0x52525200
  3626. #define Y_GREY_32 0x52525200
  3627. #define Y_GRAY33 0x54545400
  3628. #define Y_GRAY_33 0x54545400
  3629. #define Y_GREY33 0x54545400
  3630. #define Y_GREY_33 0x54545400
  3631. #define Y_GRAY34 0x57575700
  3632. #define Y_GRAY_34 0x57575700
  3633. #define Y_GREY34 0x57575700
  3634. #define Y_GREY_34 0x57575700
  3635. #define Y_GRAY35 0x59595900
  3636. #define Y_GRAY_35 0x59595900
  3637. #define Y_GREY35 0x59595900
  3638. #define Y_GREY_35 0x59595900
  3639. #define Y_GRAY36 0x5C5C5C00
  3640. #define Y_GRAY_36 0x5C5C5C00
  3641. #define Y_GREY36 0x5C5C5C00
  3642. #define Y_GREY_36 0x5C5C5C00
  3643. #define Y_GRAY37 0x5E5E5E00
  3644. #define Y_GRAY_37 0x5E5E5E00
  3645. #define Y_GREY37 0x5E5E5E00
  3646. #define Y_GREY_37 0x5E5E5E00
  3647. #define Y_GRAY38 0x61616100
  3648. #define Y_GRAY_38 0x61616100
  3649. #define Y_GREY38 0x61616100
  3650. #define Y_GREY_38 0x61616100
  3651. #define Y_GRAY39 0x63636300
  3652. #define Y_GRAY_39 0x63636300
  3653. #define Y_GREY39 0x63636300
  3654. #define Y_GREY_39 0x63636300
  3655. #define Y_GRAY40 0x66666600
  3656. #define Y_GRAY_40 0x66666600
  3657. #define Y_GREY40 0x66666600
  3658. #define Y_GREY_40 0x66666600
  3659. #define Y_GRAY41 0x69696900
  3660. #define Y_GRAY_41 0x69696900
  3661. #define Y_GREY41 0x69696900
  3662. #define Y_GREY_41 0x69696900
  3663. #define Y_GRAY42 0x6B6B6B00
  3664. #define Y_GRAY_42 0x6B6B6B00
  3665. #define Y_GREY42 0x6B6B6B00
  3666. #define Y_GREY_42 0x6B6B6B00
  3667. #define Y_GRAY43 0x6E6E6E00
  3668. #define Y_GRAY_43 0x6E6E6E00
  3669. #define Y_GREY43 0x6E6E6E00
  3670. #define Y_GREY_43 0x6E6E6E00
  3671. #define Y_GRAY44 0x70707000
  3672. #define Y_GRAY_44 0x70707000
  3673. #define Y_GREY44 0x70707000
  3674. #define Y_GREY_44 0x70707000
  3675. #define Y_GRAY45 0x73737300
  3676. #define Y_GRAY_45 0x73737300
  3677. #define Y_GREY45 0x73737300
  3678. #define Y_GREY_45 0x73737300
  3679. #define Y_GRAY46 0x75757500
  3680. #define Y_GRAY_46 0x75757500
  3681. #define Y_GREY46 0x75757500
  3682. #define Y_GREY_46 0x75757500
  3683. #define Y_GRAY47 0x78787800
  3684. #define Y_GRAY_47 0x78787800
  3685. #define Y_GREY47 0x78787800
  3686. #define Y_GREY_47 0x78787800
  3687. #define Y_GRAY48 0x7A7A7A00
  3688. #define Y_GRAY_48 0x7A7A7A00
  3689. #define Y_GREY48 0x7A7A7A00
  3690. #define Y_GREY_48 0x7A7A7A00
  3691. #define Y_GRAY49 0x7D7D7D00
  3692. #define Y_GRAY_49 0x7D7D7D00
  3693. #define Y_GREY49 0x7D7D7D00
  3694. #define Y_GREY_49 0x7D7D7D00
  3695. #define Y_GRAY50 0x7F7F7F00
  3696. #define Y_GRAY_50 0x7F7F7F00
  3697. #define Y_GREY50 0x7F7F7F00
  3698. #define Y_GREY_50 0x7F7F7F00
  3699. #define Y_GRAY51 0x82828200
  3700. #define Y_GRAY_51 0x82828200
  3701. #define Y_GREY51 0x82828200
  3702. #define Y_GREY_51 0x82828200
  3703. #define Y_GRAY52 0x85858500
  3704. #define Y_GRAY_52 0x85858500
  3705. #define Y_GREY52 0x85858500
  3706. #define Y_GREY_52 0x85858500
  3707. #define Y_GRAY53 0x87878700
  3708. #define Y_GRAY_53 0x87878700
  3709. #define Y_GREY53 0x87878700
  3710. #define Y_GREY_53 0x87878700
  3711. #define Y_GRAY54 0x8A8A8A00
  3712. #define Y_GRAY_54 0x8A8A8A00
  3713. #define Y_GREY54 0x8A8A8A00
  3714. #define Y_GREY_54 0x8A8A8A00
  3715. #define Y_GRAY55 0x8C8C8C00
  3716. #define Y_GRAY_55 0x8C8C8C00
  3717. #define Y_GREY55 0x8C8C8C00
  3718. #define Y_GREY_55 0x8C8C8C00
  3719. #define Y_GRAY56 0x8F8F8F00
  3720. #define Y_GRAY_56 0x8F8F8F00
  3721. #define Y_GREY56 0x8F8F8F00
  3722. #define Y_GREY_56 0x8F8F8F00
  3723. #define Y_GRAY57 0x91919100
  3724. #define Y_GRAY_57 0x91919100
  3725. #define Y_GREY57 0x91919100
  3726. #define Y_GREY_57 0x91919100
  3727. #define Y_GRAY58 0x94949400
  3728. #define Y_GRAY_58 0x94949400
  3729. #define Y_GREY58 0x94949400
  3730. #define Y_GREY_58 0x94949400
  3731. #define Y_GRAY59 0x96969600
  3732. #define Y_GRAY_59 0x96969600
  3733. #define Y_GREY59 0x96969600
  3734. #define Y_GREY_59 0x96969600
  3735. #define Y_GRAY60 0x99999900
  3736. #define Y_GRAY_60 0x99999900
  3737. #define Y_GREY60 0x99999900
  3738. #define Y_GREY_60 0x99999900
  3739. #define Y_GRAY61 0x9C9C9C00
  3740. #define Y_GRAY_61 0x9C9C9C00
  3741. #define Y_GREY61 0x9C9C9C00
  3742. #define Y_GREY_61 0x9C9C9C00
  3743. #define Y_GRAY62 0x9E9E9E00
  3744. #define Y_GRAY_62 0x9E9E9E00
  3745. #define Y_GREY62 0x9E9E9E00
  3746. #define Y_GREY_62 0x9E9E9E00
  3747. #define Y_GRAY63 0xA1A1A100
  3748. #define Y_GRAY_63 0xA1A1A100
  3749. #define Y_GREY63 0xA1A1A100
  3750. #define Y_GREY_63 0xA1A1A100
  3751. #define Y_GRAY64 0xA3A3A300
  3752. #define Y_GRAY_64 0xA3A3A300
  3753. #define Y_GREY64 0xA3A3A300
  3754. #define Y_GREY_64 0xA3A3A300
  3755. #define Y_GRAY65 0xA6A6A600
  3756. #define Y_GRAY_65 0xA6A6A600
  3757. #define Y_GREY65 0xA6A6A600
  3758. #define Y_GREY_65 0xA6A6A600
  3759. #define Y_GRAY66 0xA8A8A800
  3760. #define Y_GRAY_66 0xA8A8A800
  3761. #define Y_GREY66 0xA8A8A800
  3762. #define Y_GREY_66 0xA8A8A800
  3763. #define Y_GRAY67 0xABABAB00
  3764. #define Y_GRAY_67 0xABABAB00
  3765. #define Y_GREY67 0xABABAB00
  3766. #define Y_GREY_67 0xABABAB00
  3767. #define Y_GRAY68 0xADADAD00
  3768. #define Y_GRAY_68 0xADADAD00
  3769. #define Y_GREY68 0xADADAD00
  3770. #define Y_GREY_68 0xADADAD00
  3771. #define Y_GRAY69 0xB0B0B000
  3772. #define Y_GRAY_69 0xB0B0B000
  3773. #define Y_GREY69 0xB0B0B000
  3774. #define Y_GREY_69 0xB0B0B000
  3775. #define Y_GRAY70 0xB3B3B300
  3776. #define Y_GRAY_70 0xB3B3B300
  3777. #define Y_GREY70 0xB3B3B300
  3778. #define Y_GREY_70 0xB3B3B300
  3779. #define Y_GRAY71 0xB5B5B500
  3780. #define Y_GRAY_71 0xB5B5B500
  3781. #define Y_GREY71 0xB5B5B500
  3782. #define Y_GREY_71 0xB5B5B500
  3783. #define Y_GRAY72 0xB8B8B800
  3784. #define Y_GRAY_72 0xB8B8B800
  3785. #define Y_GREY72 0xB8B8B800
  3786. #define Y_GREY_72 0xB8B8B800
  3787. #define Y_GRAY73 0xBABABA00
  3788. #define Y_GRAY_73 0xBABABA00
  3789. #define Y_GREY73 0xBABABA00
  3790. #define Y_GREY_73 0xBABABA00
  3791. #define Y_GRAY74 0xBDBDBD00
  3792. #define Y_GRAY_74 0xBDBDBD00
  3793. #define Y_GREY74 0xBDBDBD00
  3794. #define Y_GREY_74 0xBDBDBD00
  3795. #define Y_GRAY75 0xBFBFBF00
  3796. #define Y_GRAY_75 0xBFBFBF00
  3797. #define Y_GREY75 0xBFBFBF00
  3798. #define Y_GREY_75 0xBFBFBF00
  3799. #define Y_GRAY76 0xC2C2C200
  3800. #define Y_GRAY_76 0xC2C2C200
  3801. #define Y_GREY76 0xC2C2C200
  3802. #define Y_GREY_76 0xC2C2C200
  3803. #define Y_GRAY77 0xC4C4C400
  3804. #define Y_GRAY_77 0xC4C4C400
  3805. #define Y_GREY77 0xC4C4C400
  3806. #define Y_GREY_77 0xC4C4C400
  3807. #define Y_GRAY78 0xC7C7C700
  3808. #define Y_GRAY_78 0xC7C7C700
  3809. #define Y_GREY78 0xC7C7C700
  3810. #define Y_GREY_78 0xC7C7C700
  3811. #define Y_GRAY79 0xC9C9C900
  3812. #define Y_GRAY_79 0xC9C9C900
  3813. #define Y_GREY79 0xC9C9C900
  3814. #define Y_GREY_79 0xC9C9C900
  3815. #define Y_GRAY80 0xCCCCCC00
  3816. #define Y_GRAY_80 0xCCCCCC00
  3817. #define Y_GREY80 0xCCCCCC00
  3818. #define Y_GREY_80 0xCCCCCC00
  3819. #define Y_GRAY81 0xCFCFCF00
  3820. #define Y_GRAY_81 0xCFCFCF00
  3821. #define Y_GREY81 0xCFCFCF00
  3822. #define Y_GREY_81 0xCFCFCF00
  3823. #define Y_GRAY82 0xD1D1D100
  3824. #define Y_GRAY_82 0xD1D1D100
  3825. #define Y_GREY82 0xD1D1D100
  3826. #define Y_GREY_82 0xD1D1D100
  3827. #define Y_GRAY83 0xD4D4D400
  3828. #define Y_GRAY_83 0xD4D4D400
  3829. #define Y_GREY83 0xD4D4D400
  3830. #define Y_GREY_83 0xD4D4D400
  3831. #define Y_GRAY84 0xD6D6D600
  3832. #define Y_GRAY_84 0xD6D6D600
  3833. #define Y_GREY84 0xD6D6D600
  3834. #define Y_GREY_84 0xD6D6D600
  3835. #define Y_GRAY85 0xD9D9D900
  3836. #define Y_GRAY_85 0xD9D9D900
  3837. #define Y_GREY85 0xD9D9D900
  3838. #define Y_GREY_85 0xD9D9D900
  3839. #define Y_GRAY86 0xDBDBDB00
  3840. #define Y_GRAY_86 0xDBDBDB00
  3841. #define Y_GREY86 0xDBDBDB00
  3842. #define Y_GREY_86 0xDBDBDB00
  3843. #define Y_GRAY87 0xDEDEDE00
  3844. #define Y_GRAY_87 0xDEDEDE00
  3845. #define Y_GREY87 0xDEDEDE00
  3846. #define Y_GREY_87 0xDEDEDE00
  3847. #define Y_GRAY88 0xE0E0E000
  3848. #define Y_GRAY_88 0xE0E0E000
  3849. #define Y_GREY88 0xE0E0E000
  3850. #define Y_GREY_88 0xE0E0E000
  3851. #define Y_GRAY89 0xE3E3E300
  3852. #define Y_GRAY_89 0xE3E3E300
  3853. #define Y_GREY89 0xE3E3E300
  3854. #define Y_GREY_89 0xE3E3E300
  3855. #define Y_GRAY90 0xE5E5E500
  3856. #define Y_GRAY_90 0xE5E5E500
  3857. #define Y_GREY90 0xE5E5E500
  3858. #define Y_GREY_90 0xE5E5E500
  3859. #define Y_GRAY91 0xE8E8E800
  3860. #define Y_GRAY_91 0xE8E8E800
  3861. #define Y_GREY91 0xE8E8E800
  3862. #define Y_GREY_91 0xE8E8E800
  3863. #define Y_GRAY92 0xEBEBEB00
  3864. #define Y_GRAY_92 0xEBEBEB00
  3865. #define Y_GREY92 0xEBEBEB00
  3866. #define Y_GREY_92 0xEBEBEB00
  3867. #define Y_GRAY93 0xEDEDED00
  3868. #define Y_GRAY_93 0xEDEDED00
  3869. #define Y_GREY93 0xEDEDED00
  3870. #define Y_GREY_93 0xEDEDED00
  3871. #define Y_GRAY94 0xF0F0F000
  3872. #define Y_GRAY_94 0xF0F0F000
  3873. #define Y_GREY94 0xF0F0F000
  3874. #define Y_GREY_94 0xF0F0F000
  3875. #define Y_GRAY95 0xF2F2F200
  3876. #define Y_GRAY_95 0xF2F2F200
  3877. #define Y_GREY95 0xF2F2F200
  3878. #define Y_GREY_95 0xF2F2F200
  3879. #define Y_GRAY96 0xF5F5F500
  3880. #define Y_GRAY_96 0xF5F5F500
  3881. #define Y_GREY96 0xF5F5F500
  3882. #define Y_GREY_96 0xF5F5F500
  3883. #define Y_GRAY97 0xF7F7F700
  3884. #define Y_GRAY_97 0xF7F7F700
  3885. #define Y_GREY97 0xF7F7F700
  3886. #define Y_GREY_97 0xF7F7F700
  3887. #define Y_GRAY98 0xFAFAFA00
  3888. #define Y_GRAY_98 0xFAFAFA00
  3889. #define Y_GREY98 0xFAFAFA00
  3890. #define Y_GREY_98 0xFAFAFA00
  3891. #define Y_GRAY99 0xFCFCFC00
  3892. #define Y_GRAY_99 0xFCFCFC00
  3893. #define Y_GREY99 0xFCFCFC00
  3894. #define Y_GREY_99 0xFCFCFC00
  3895. #define Y_GRAY100 0xFFFFFF00
  3896. #define Y_GRAY_100 0xFFFFFF00
  3897. #define Y_GREY100 0xFFFFFF00
  3898. #define Y_GREY_100 0xFFFFFF00
  3899. #define Y_DARKGREY 0xA9A9A900
  3900. #define Y_DARK_GREY 0xA9A9A900
  3901. #define Y_DARKGRAY 0xA9A9A900
  3902. #define Y_DARK_GRAY 0xA9A9A900
  3903. #define Y_DARKBLUE 0x00008B00
  3904. #define Y_DARK_BLUE 0x00008B00
  3905. #define Y_DARKCYAN 0x008B8B00
  3906. #define Y_DARK_CYAN 0x008B8B00
  3907. #define Y_DARKMAGENTA 0x8B008B00
  3908. #define Y_DARK_MAGENTA 0x8B008B00
  3909. #define Y_DARKRED 0x8B000000
  3910. #define Y_DARK_RED 0x8B000000
  3911. #define Y_LIGHTGREEN 0x90EE9000
  3912. #define Y_LIGHT_GREEN 0x90EE9000