123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702 |
- /* This file is part of the GNU plotutils package. Copyright (C) 1995,
- 1996, 1997, 1998, 1999, 2000, 2005, 2008, Free Software Foundation, Inc.
- The GNU plotutils package is free software. You may redistribute it
- and/or modify it under the terms of the GNU General Public License as
- published by the Free Software foundation; either version 2, or (at your
- option) any later version.
- The GNU plotutils package is distributed in the hope that it will be
- useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
- You should have received a copy of the GNU General Public License along
- with the GNU plotutils package; see the file COPYING. If not, write to
- the Free Software Foundation, Inc., 51 Franklin St., Fifth Floor,
- Boston, MA 02110-1301, USA. */
- /* This file contains the color names recognized by libplot, and their
- 24-bit interpretation (internally, we extend to 48 bits by doubling each
- byte). It is #included by g_colors.c.
- The table below is taken largely from the `rgb.txt' file distributed
- with X11R6 (version 10.41, dated 20 Feb 94). However, it was discovered
- that for a few color names containing the substring "gray", `rgb.txt'
- did not include the corresponding names containing the substring "grey",
- as it should. They have been added. */
- #define NUM_COLORNAMES 665
- /* could declare this array `extern', so that applications linked with
- libplot/libplotter can secretly access it, if they want to :-) */
- static const plColorNameInfo _pl_g_colornames[NUM_COLORNAMES + 1] =
- {
- {"aliceblue", 0xf0, 0xf8, 0xff},
- {"antiquewhite", 0xfa, 0xeb, 0xd7},
- {"antiquewhite1", 0xff, 0xef, 0xdb},
- {"antiquewhite2", 0xee, 0xdf, 0xcc},
- {"antiquewhite3", 0xcd, 0xc0, 0xb0},
- {"antiquewhite4", 0x8b, 0x83, 0x78},
- {"aquamarine", 0x7f, 0xff, 0xd4},
- {"aquamarine1", 0x7f, 0xff, 0xd4},
- {"aquamarine2", 0x76, 0xee, 0xc6},
- {"aquamarine3", 0x66, 0xcd, 0xaa},
- {"aquamarine4", 0x45, 0x8b, 0x74},
- {"azure", 0xf0, 0xff, 0xff},
- {"azure1", 0xf0, 0xff, 0xff},
- {"azure2", 0xe0, 0xee, 0xee},
- {"azure3", 0xc1, 0xcd, 0xcd},
- {"azure4", 0x83, 0x8b, 0x8b},
- {"beige", 0xf5, 0xf5, 0xdc},
- {"bisque", 0xff, 0xe4, 0xc4},
- {"bisque1", 0xff, 0xe4, 0xc4},
- {"bisque2", 0xee, 0xd5, 0xb7},
- {"bisque3", 0xcd, 0xb7, 0x9e},
- {"bisque4", 0x8b, 0x7d, 0x6b},
- {"black", 0x00, 0x00, 0x00},
- {"blanchedalmond", 0xff, 0xeb, 0xcd},
- {"blue", 0x00, 0x00, 0xff},
- {"blue1", 0x00, 0x00, 0xff},
- {"blue2", 0x00, 0x00, 0xee},
- {"blue3", 0x00, 0x00, 0xcd},
- {"blue4", 0x00, 0x00, 0x8b},
- {"blueviolet", 0x8a, 0x2b, 0xe2},
- {"brown", 0xa5, 0x2a, 0x2a},
- {"brown1", 0xff, 0x40, 0x40},
- {"brown2", 0xee, 0x3b, 0x3b},
- {"brown3", 0xcd, 0x33, 0x33},
- {"brown4", 0x8b, 0x23, 0x23},
- {"burlywood", 0xde, 0xb8, 0x87},
- {"burlywood1", 0xff, 0xd3, 0x9b},
- {"burlywood2", 0xee, 0xc5, 0x91},
- {"burlywood3", 0xcd, 0xaa, 0x7d},
- {"burlywood4", 0x8b, 0x73, 0x55},
- {"cadetblue", 0x5f, 0x9e, 0xa0},
- {"cadetblue1", 0x98, 0xf5, 0xff},
- {"cadetblue2", 0x8e, 0xe5, 0xee},
- {"cadetblue3", 0x7a, 0xc5, 0xcd},
- {"cadetblue4", 0x53, 0x86, 0x8b},
- {"chartreuse", 0x7f, 0xff, 0x00},
- {"chartreuse1", 0x7f, 0xff, 0x00},
- {"chartreuse2", 0x76, 0xee, 0x00},
- {"chartreuse3", 0x66, 0xcd, 0x00},
- {"chartreuse4", 0x45, 0x8b, 0x00},
- {"chocolate", 0xd2, 0x69, 0x1e},
- {"chocolate1", 0xff, 0x7f, 0x24},
- {"chocolate2", 0xee, 0x76, 0x21},
- {"chocolate3", 0xcd, 0x66, 0x1d},
- {"chocolate4", 0x8b, 0x45, 0x13},
- {"coral", 0xff, 0x7f, 0x50},
- {"coral1", 0xff, 0x72, 0x56},
- {"coral2", 0xee, 0x6a, 0x50},
- {"coral3", 0xcd, 0x5b, 0x45},
- {"coral4", 0x8b, 0x3e, 0x2f},
- {"cornflowerblue", 0x64, 0x95, 0xed},
- {"cornsilk", 0xff, 0xf8, 0xdc},
- {"cornsilk1", 0xff, 0xf8, 0xdc},
- {"cornsilk2", 0xee, 0xe8, 0xcd},
- {"cornsilk3", 0xcd, 0xc8, 0xb1},
- {"cornsilk4", 0x8b, 0x88, 0x78},
- {"cyan", 0x00, 0xff, 0xff},
- {"cyan1", 0x00, 0xff, 0xff},
- {"cyan2", 0x00, 0xee, 0xee},
- {"cyan3", 0x00, 0xcd, 0xcd},
- {"cyan4", 0x00, 0x8b, 0x8b},
- {"darkblue", 0x00, 0x00, 0x8b},
- {"darkcyan", 0x00, 0x8b, 0x8b},
- {"darkgoldenrod", 0xb8, 0x86, 0x0b},
- {"darkgoldenrod1", 0xff, 0xb9, 0x0f},
- {"darkgoldenrod2", 0xee, 0xad, 0x0e},
- {"darkgoldenrod3", 0xcd, 0x95, 0x0c},
- {"darkgoldenrod4", 0x8b, 0x65, 0x08},
- {"darkgray", 0xa9, 0xa9, 0xa9},
- {"darkgreen", 0x00, 0x64, 0x00},
- {"darkgrey", 0xa9, 0xa9, 0xa9},
- {"darkkhaki", 0xbd, 0xb7, 0x6b},
- {"darkmagenta", 0x8b, 0x00, 0x8b},
- {"darkolivegreen", 0x55, 0x6b, 0x2f},
- {"darkolivegreen1", 0xca, 0xff, 0x70},
- {"darkolivegreen2", 0xbc, 0xee, 0x68},
- {"darkolivegreen3", 0xa2, 0xcd, 0x5a},
- {"darkolivegreen4", 0x6e, 0x8b, 0x3d},
- {"darkorange", 0xff, 0x8c, 0x00},
- {"darkorange1", 0xff, 0x7f, 0x00},
- {"darkorange2", 0xee, 0x76, 0x00},
- {"darkorange3", 0xcd, 0x66, 0x00},
- {"darkorange4", 0x8b, 0x45, 0x00},
- {"darkorchid", 0x99, 0x32, 0xcc},
- {"darkorchid1", 0xbf, 0x3e, 0xff},
- {"darkorchid2", 0xb2, 0x3a, 0xee},
- {"darkorchid3", 0x9a, 0x32, 0xcd},
- {"darkorchid4", 0x68, 0x22, 0x8b},
- {"darkred", 0x8b, 0x00, 0x00},
- {"darksalmon", 0xe9, 0x96, 0x7a},
- {"darkseagreen", 0x8f, 0xbc, 0x8f},
- {"darkseagreen1", 0xc1, 0xff, 0xc1},
- {"darkseagreen2", 0xb4, 0xee, 0xb4},
- {"darkseagreen3", 0x9b, 0xcd, 0x9b},
- {"darkseagreen4", 0x69, 0x8b, 0x69},
- {"darkslateblue", 0x48, 0x3d, 0x8b},
- {"darkslategray", 0x2f, 0x4f, 0x4f},
- {"darkslategray1", 0x97, 0xff, 0xff},
- {"darkslategray2", 0x8d, 0xee, 0xee},
- {"darkslategray3", 0x79, 0xcd, 0xcd},
- {"darkslategray4", 0x52, 0x8b, 0x8b},
- {"darkslategrey", 0x2f, 0x4f, 0x4f},
- {"darkslategrey1", 0x97, 0xff, 0xff},
- {"darkslategrey2", 0x8d, 0xee, 0xee},
- {"darkslategrey3", 0x79, 0xcd, 0xcd},
- {"darkslategrey4", 0x52, 0x8b, 0x8b},
- {"darkturquoise", 0x00, 0xce, 0xd1},
- {"darkviolet", 0x94, 0x00, 0xd3},
- {"deeppink", 0xff, 0x14, 0x93},
- {"deeppink1", 0xff, 0x14, 0x93},
- {"deeppink2", 0xee, 0x12, 0x89},
- {"deeppink3", 0xcd, 0x10, 0x76},
- {"deeppink4", 0x8b, 0x0a, 0x50},
- {"deepskyblue", 0x00, 0xbf, 0xff},
- {"deepskyblue1", 0x00, 0xbf, 0xff},
- {"deepskyblue2", 0x00, 0xb2, 0xee},
- {"deepskyblue3", 0x00, 0x9a, 0xcd},
- {"deepskyblue4", 0x00, 0x68, 0x8b},
- {"dimgray", 0x69, 0x69, 0x69},
- {"dimgrey", 0x69, 0x69, 0x69},
- {"dodgerblue", 0x1e, 0x90, 0xff},
- {"dodgerblue1", 0x1e, 0x90, 0xff},
- {"dodgerblue2", 0x1c, 0x86, 0xee},
- {"dodgerblue3", 0x18, 0x74, 0xcd},
- {"dodgerblue4", 0x10, 0x4e, 0x8b},
- {"firebrick", 0xb2, 0x22, 0x22},
- {"firebrick1", 0xff, 0x30, 0x30},
- {"firebrick2", 0xee, 0x2c, 0x2c},
- {"firebrick3", 0xcd, 0x26, 0x26},
- {"firebrick4", 0x8b, 0x1a, 0x1a},
- {"floralwhite", 0xff, 0xfa, 0xf0},
- {"forestgreen", 0x22, 0x8b, 0x22},
- {"gainsboro", 0xdc, 0xdc, 0xdc},
- {"ghostwhite", 0xf8, 0xf8, 0xff},
- {"gold", 0xff, 0xd7, 0x00},
- {"gold1", 0xff, 0xd7, 0x00},
- {"gold2", 0xee, 0xc9, 0x00},
- {"gold3", 0xcd, 0xad, 0x00},
- {"gold4", 0x8b, 0x75, 0x00},
- {"goldenrod", 0xda, 0xa5, 0x20},
- {"goldenrod1", 0xff, 0xc1, 0x25},
- {"goldenrod2", 0xee, 0xb4, 0x22},
- {"goldenrod3", 0xcd, 0x9b, 0x1d},
- {"goldenrod4", 0x8b, 0x69, 0x14},
- {"gray", 0xbe, 0xbe, 0xbe},
- {"gray0", 0x00, 0x00, 0x00},
- {"gray1", 0x03, 0x03, 0x03},
- {"gray2", 0x05, 0x05, 0x05},
- {"gray3", 0x08, 0x08, 0x08},
- {"gray4", 0x0a, 0x0a, 0x0a},
- {"gray5", 0x0d, 0x0d, 0x0d},
- {"gray6", 0x0f, 0x0f, 0x0f},
- {"gray7", 0x12, 0x12, 0x12},
- {"gray8", 0x14, 0x14, 0x14},
- {"gray9", 0x17, 0x17, 0x17},
- {"gray10", 0x1a, 0x1a, 0x1a},
- {"gray11", 0x1c, 0x1c, 0x1c},
- {"gray12", 0x1f, 0x1f, 0x1f},
- {"gray13", 0x21, 0x21, 0x21},
- {"gray14", 0x24, 0x24, 0x24},
- {"gray15", 0x26, 0x26, 0x26},
- {"gray16", 0x29, 0x29, 0x29},
- {"gray17", 0x2b, 0x2b, 0x2b},
- {"gray18", 0x2e, 0x2e, 0x2e},
- {"gray19", 0x30, 0x30, 0x30},
- {"gray20", 0x33, 0x33, 0x33},
- {"gray21", 0x36, 0x36, 0x36},
- {"gray22", 0x38, 0x38, 0x38},
- {"gray23", 0x3b, 0x3b, 0x3b},
- {"gray24", 0x3d, 0x3d, 0x3d},
- {"gray25", 0x40, 0x40, 0x40},
- {"gray26", 0x42, 0x42, 0x42},
- {"gray27", 0x45, 0x45, 0x45},
- {"gray28", 0x47, 0x47, 0x47},
- {"gray29", 0x4a, 0x4a, 0x4a},
- {"gray30", 0x4d, 0x4d, 0x4d},
- {"gray31", 0x4f, 0x4f, 0x4f},
- {"gray32", 0x52, 0x52, 0x52},
- {"gray33", 0x54, 0x54, 0x54},
- {"gray34", 0x57, 0x57, 0x57},
- {"gray35", 0x59, 0x59, 0x59},
- {"gray36", 0x5c, 0x5c, 0x5c},
- {"gray37", 0x5e, 0x5e, 0x5e},
- {"gray38", 0x61, 0x61, 0x61},
- {"gray39", 0x63, 0x63, 0x63},
- {"gray40", 0x66, 0x66, 0x66},
- {"gray41", 0x69, 0x69, 0x69},
- {"gray42", 0x6b, 0x6b, 0x6b},
- {"gray43", 0x6e, 0x6e, 0x6e},
- {"gray44", 0x70, 0x70, 0x70},
- {"gray45", 0x73, 0x73, 0x73},
- {"gray46", 0x75, 0x75, 0x75},
- {"gray47", 0x78, 0x78, 0x78},
- {"gray48", 0x7a, 0x7a, 0x7a},
- {"gray49", 0x7d, 0x7d, 0x7d},
- {"gray50", 0x7f, 0x7f, 0x7f},
- {"gray51", 0x82, 0x82, 0x82},
- {"gray52", 0x85, 0x85, 0x85},
- {"gray53", 0x87, 0x87, 0x87},
- {"gray54", 0x8a, 0x8a, 0x8a},
- {"gray55", 0x8c, 0x8c, 0x8c},
- {"gray56", 0x8f, 0x8f, 0x8f},
- {"gray57", 0x91, 0x91, 0x91},
- {"gray58", 0x94, 0x94, 0x94},
- {"gray59", 0x96, 0x96, 0x96},
- {"gray60", 0x99, 0x99, 0x99},
- {"gray61", 0x9c, 0x9c, 0x9c},
- {"gray62", 0x9e, 0x9e, 0x9e},
- {"gray63", 0xa1, 0xa1, 0xa1},
- {"gray64", 0xa3, 0xa3, 0xa3},
- {"gray65", 0xa6, 0xa6, 0xa6},
- {"gray66", 0xa8, 0xa8, 0xa8},
- {"gray67", 0xab, 0xab, 0xab},
- {"gray68", 0xad, 0xad, 0xad},
- {"gray69", 0xb0, 0xb0, 0xb0},
- {"gray70", 0xb3, 0xb3, 0xb3},
- {"gray71", 0xb5, 0xb5, 0xb5},
- {"gray72", 0xb8, 0xb8, 0xb8},
- {"gray73", 0xba, 0xba, 0xba},
- {"gray74", 0xbd, 0xbd, 0xbd},
- {"gray75", 0xbf, 0xbf, 0xbf},
- {"gray76", 0xc2, 0xc2, 0xc2},
- {"gray77", 0xc4, 0xc4, 0xc4},
- {"gray78", 0xc7, 0xc7, 0xc7},
- {"gray79", 0xc9, 0xc9, 0xc9},
- {"gray80", 0xcc, 0xcc, 0xcc},
- {"gray81", 0xcf, 0xcf, 0xcf},
- {"gray82", 0xd1, 0xd1, 0xd1},
- {"gray83", 0xd4, 0xd4, 0xd4},
- {"gray84", 0xd6, 0xd6, 0xd6},
- {"gray85", 0xd9, 0xd9, 0xd9},
- {"gray86", 0xdb, 0xdb, 0xdb},
- {"gray87", 0xde, 0xde, 0xde},
- {"gray88", 0xe0, 0xe0, 0xe0},
- {"gray89", 0xe3, 0xe3, 0xe3},
- {"gray90", 0xe5, 0xe5, 0xe5},
- {"gray91", 0xe8, 0xe8, 0xe8},
- {"gray92", 0xeb, 0xeb, 0xeb},
- {"gray93", 0xed, 0xed, 0xed},
- {"gray94", 0xf0, 0xf0, 0xf0},
- {"gray95", 0xf2, 0xf2, 0xf2},
- {"gray96", 0xf5, 0xf5, 0xf5},
- {"gray97", 0xf7, 0xf7, 0xf7},
- {"gray98", 0xfa, 0xfa, 0xfa},
- {"gray99", 0xfc, 0xfc, 0xfc},
- {"gray100", 0xff, 0xff, 0xff},
- {"green", 0x00, 0xff, 0x00},
- {"green1", 0x00, 0xff, 0x00},
- {"green2", 0x00, 0xee, 0x00},
- {"green3", 0x00, 0xcd, 0x00},
- {"green4", 0x00, 0x8b, 0x00},
- {"greenyellow", 0xad, 0xff, 0x2f},
- {"grey", 0xbe, 0xbe, 0xbe},
- {"grey0", 0x00, 0x00, 0x00},
- {"grey1", 0x03, 0x03, 0x03},
- {"grey2", 0x05, 0x05, 0x05},
- {"grey3", 0x08, 0x08, 0x08},
- {"grey4", 0x0a, 0x0a, 0x0a},
- {"grey5", 0x0d, 0x0d, 0x0d},
- {"grey6", 0x0f, 0x0f, 0x0f},
- {"grey7", 0x12, 0x12, 0x12},
- {"grey8", 0x14, 0x14, 0x14},
- {"grey9", 0x17, 0x17, 0x17},
- {"grey10", 0x1a, 0x1a, 0x1a},
- {"grey11", 0x1c, 0x1c, 0x1c},
- {"grey12", 0x1f, 0x1f, 0x1f},
- {"grey13", 0x21, 0x21, 0x21},
- {"grey14", 0x24, 0x24, 0x24},
- {"grey15", 0x26, 0x26, 0x26},
- {"grey16", 0x29, 0x29, 0x29},
- {"grey17", 0x2b, 0x2b, 0x2b},
- {"grey18", 0x2e, 0x2e, 0x2e},
- {"grey19", 0x30, 0x30, 0x30},
- {"grey20", 0x33, 0x33, 0x33},
- {"grey21", 0x36, 0x36, 0x36},
- {"grey22", 0x38, 0x38, 0x38},
- {"grey23", 0x3b, 0x3b, 0x3b},
- {"grey24", 0x3d, 0x3d, 0x3d},
- {"grey25", 0x40, 0x40, 0x40},
- {"grey26", 0x42, 0x42, 0x42},
- {"grey27", 0x45, 0x45, 0x45},
- {"grey28", 0x47, 0x47, 0x47},
- {"grey29", 0x4a, 0x4a, 0x4a},
- {"grey30", 0x4d, 0x4d, 0x4d},
- {"grey31", 0x4f, 0x4f, 0x4f},
- {"grey32", 0x52, 0x52, 0x52},
- {"grey33", 0x54, 0x54, 0x54},
- {"grey34", 0x57, 0x57, 0x57},
- {"grey35", 0x59, 0x59, 0x59},
- {"grey36", 0x5c, 0x5c, 0x5c},
- {"grey37", 0x5e, 0x5e, 0x5e},
- {"grey38", 0x61, 0x61, 0x61},
- {"grey39", 0x63, 0x63, 0x63},
- {"grey40", 0x66, 0x66, 0x66},
- {"grey41", 0x69, 0x69, 0x69},
- {"grey42", 0x6b, 0x6b, 0x6b},
- {"grey43", 0x6e, 0x6e, 0x6e},
- {"grey44", 0x70, 0x70, 0x70},
- {"grey45", 0x73, 0x73, 0x73},
- {"grey46", 0x75, 0x75, 0x75},
- {"grey47", 0x78, 0x78, 0x78},
- {"grey48", 0x7a, 0x7a, 0x7a},
- {"grey49", 0x7d, 0x7d, 0x7d},
- {"grey50", 0x7f, 0x7f, 0x7f},
- {"grey51", 0x82, 0x82, 0x82},
- {"grey52", 0x85, 0x85, 0x85},
- {"grey53", 0x87, 0x87, 0x87},
- {"grey54", 0x8a, 0x8a, 0x8a},
- {"grey55", 0x8c, 0x8c, 0x8c},
- {"grey56", 0x8f, 0x8f, 0x8f},
- {"grey57", 0x91, 0x91, 0x91},
- {"grey58", 0x94, 0x94, 0x94},
- {"grey59", 0x96, 0x96, 0x96},
- {"grey60", 0x99, 0x99, 0x99},
- {"grey61", 0x9c, 0x9c, 0x9c},
- {"grey62", 0x9e, 0x9e, 0x9e},
- {"grey63", 0xa1, 0xa1, 0xa1},
- {"grey64", 0xa3, 0xa3, 0xa3},
- {"grey65", 0xa6, 0xa6, 0xa6},
- {"grey66", 0xa8, 0xa8, 0xa8},
- {"grey67", 0xab, 0xab, 0xab},
- {"grey68", 0xad, 0xad, 0xad},
- {"grey69", 0xb0, 0xb0, 0xb0},
- {"grey70", 0xb3, 0xb3, 0xb3},
- {"grey71", 0xb5, 0xb5, 0xb5},
- {"grey72", 0xb8, 0xb8, 0xb8},
- {"grey73", 0xba, 0xba, 0xba},
- {"grey74", 0xbd, 0xbd, 0xbd},
- {"grey75", 0xbf, 0xbf, 0xbf},
- {"grey76", 0xc2, 0xc2, 0xc2},
- {"grey77", 0xc4, 0xc4, 0xc4},
- {"grey78", 0xc7, 0xc7, 0xc7},
- {"grey79", 0xc9, 0xc9, 0xc9},
- {"grey80", 0xcc, 0xcc, 0xcc},
- {"grey81", 0xcf, 0xcf, 0xcf},
- {"grey82", 0xd1, 0xd1, 0xd1},
- {"grey83", 0xd4, 0xd4, 0xd4},
- {"grey84", 0xd6, 0xd6, 0xd6},
- {"grey85", 0xd9, 0xd9, 0xd9},
- {"grey86", 0xdb, 0xdb, 0xdb},
- {"grey87", 0xde, 0xde, 0xde},
- {"grey88", 0xe0, 0xe0, 0xe0},
- {"grey89", 0xe3, 0xe3, 0xe3},
- {"grey90", 0xe5, 0xe5, 0xe5},
- {"grey91", 0xe8, 0xe8, 0xe8},
- {"grey92", 0xeb, 0xeb, 0xeb},
- {"grey93", 0xed, 0xed, 0xed},
- {"grey94", 0xf0, 0xf0, 0xf0},
- {"grey95", 0xf2, 0xf2, 0xf2},
- {"grey96", 0xf5, 0xf5, 0xf5},
- {"grey97", 0xf7, 0xf7, 0xf7},
- {"grey98", 0xfa, 0xfa, 0xfa},
- {"grey99", 0xfc, 0xfc, 0xfc},
- {"grey100", 0xff, 0xff, 0xff},
- {"honeydew", 0xf0, 0xff, 0xf0},
- {"honeydew1", 0xf0, 0xff, 0xf0},
- {"honeydew2", 0xe0, 0xee, 0xe0},
- {"honeydew3", 0xc1, 0xcd, 0xc1},
- {"honeydew4", 0x83, 0x8b, 0x83},
- {"hotpink", 0xff, 0x69, 0xb4},
- {"hotpink1", 0xff, 0x6e, 0xb4},
- {"hotpink2", 0xee, 0x6a, 0xa7},
- {"hotpink3", 0xcd, 0x60, 0x90},
- {"hotpink4", 0x8b, 0x3a, 0x62},
- {"indianred", 0xcd, 0x5c, 0x5c},
- {"indianred1", 0xff, 0x6a, 0x6a},
- {"indianred2", 0xee, 0x63, 0x63},
- {"indianred3", 0xcd, 0x55, 0x55},
- {"indianred4", 0x8b, 0x3a, 0x3a},
- {"ivory", 0xff, 0xff, 0xf0},
- {"ivory1", 0xff, 0xff, 0xf0},
- {"ivory2", 0xee, 0xee, 0xe0},
- {"ivory3", 0xcd, 0xcd, 0xc1},
- {"ivory4", 0x8b, 0x8b, 0x83},
- {"khaki", 0xf0, 0xe6, 0x8c},
- {"khaki1", 0xff, 0xf6, 0x8f},
- {"khaki2", 0xee, 0xe6, 0x85},
- {"khaki3", 0xcd, 0xc6, 0x73},
- {"khaki4", 0x8b, 0x86, 0x4e},
- {"lavender", 0xe6, 0xe6, 0xfa},
- {"lavenderblush", 0xff, 0xf0, 0xf5},
- {"lavenderblush1", 0xff, 0xf0, 0xf5},
- {"lavenderblush2", 0xee, 0xe0, 0xe5},
- {"lavenderblush3", 0xcd, 0xc1, 0xc5},
- {"lavenderblush4", 0x8b, 0x83, 0x86},
- {"lawngreen", 0x7c, 0xfc, 0x00},
- {"lemonchiffon", 0xff, 0xfa, 0xcd},
- {"lemonchiffon1", 0xff, 0xfa, 0xcd},
- {"lemonchiffon2", 0xee, 0xe9, 0xbf},
- {"lemonchiffon3", 0xcd, 0xc9, 0xa5},
- {"lemonchiffon4", 0x8b, 0x89, 0x70},
- {"lightblue", 0xad, 0xd8, 0xe6},
- {"lightblue1", 0xbf, 0xef, 0xff},
- {"lightblue2", 0xb2, 0xdf, 0xee},
- {"lightblue3", 0x9a, 0xc0, 0xcd},
- {"lightblue4", 0x68, 0x83, 0x8b},
- {"lightcoral", 0xf0, 0x80, 0x80},
- {"lightcyan", 0xe0, 0xff, 0xff},
- {"lightcyan1", 0xe0, 0xff, 0xff},
- {"lightcyan2", 0xd1, 0xee, 0xee},
- {"lightcyan3", 0xb4, 0xcd, 0xcd},
- {"lightcyan4", 0x7a, 0x8b, 0x8b},
- {"lightgoldenrod", 0xee, 0xdd, 0x82},
- {"lightgoldenrod1", 0xff, 0xec, 0x8b},
- {"lightgoldenrod2", 0xee, 0xdc, 0x82},
- {"lightgoldenrod3", 0xcd, 0xbe, 0x70},
- {"lightgoldenrod4", 0x8b, 0x81, 0x4c},
- {"lightgoldenrodyellow",0xfa, 0xfa, 0xd2},
- {"lightgray", 0xd3, 0xd3, 0xd3},
- {"lightgreen", 0x90, 0xee, 0x90},
- {"lightgrey", 0xd3, 0xd3, 0xd3},
- {"lightpink", 0xff, 0xb6, 0xc1},
- {"lightpink1", 0xff, 0xae, 0xb9},
- {"lightpink2", 0xee, 0xa2, 0xad},
- {"lightpink3", 0xcd, 0x8c, 0x95},
- {"lightpink4", 0x8b, 0x5f, 0x65},
- {"lightsalmon", 0xff, 0xa0, 0x7a},
- {"lightsalmon1", 0xff, 0xa0, 0x7a},
- {"lightsalmon2", 0xee, 0x95, 0x72},
- {"lightsalmon3", 0xcd, 0x81, 0x62},
- {"lightsalmon4", 0x8b, 0x57, 0x42},
- {"lightseagreen", 0x20, 0xb2, 0xaa},
- {"lightskyblue", 0x87, 0xce, 0xfa},
- {"lightskyblue1", 0xb0, 0xe2, 0xff},
- {"lightskyblue2", 0xa4, 0xd3, 0xee},
- {"lightskyblue3", 0x8d, 0xb6, 0xcd},
- {"lightskyblue4", 0x60, 0x7b, 0x8b},
- {"lightslateblue", 0x84, 0x70, 0xff},
- {"lightslategray", 0x77, 0x88, 0x99},
- {"lightslategrey", 0x77, 0x88, 0x99},
- {"lightsteelblue", 0xb0, 0xc4, 0xde},
- {"lightsteelblue1", 0xca, 0xe1, 0xff},
- {"lightsteelblue2", 0xbc, 0xd2, 0xee},
- {"lightsteelblue3", 0xa2, 0xb5, 0xcd},
- {"lightsteelblue4", 0x6e, 0x7b, 0x8b},
- {"lightyellow", 0xff, 0xff, 0xe0},
- {"lightyellow1", 0xff, 0xff, 0xe0},
- {"lightyellow2", 0xee, 0xee, 0xd1},
- {"lightyellow3", 0xcd, 0xcd, 0xb4},
- {"lightyellow4", 0x8b, 0x8b, 0x7a},
- {"limegreen", 0x32, 0xcd, 0x32},
- {"linen", 0xfa, 0xf0, 0xe6},
- {"magenta", 0xff, 0x00, 0xff},
- {"magenta1", 0xff, 0x00, 0xff},
- {"magenta2", 0xee, 0x00, 0xee},
- {"magenta3", 0xcd, 0x00, 0xcd},
- {"magenta4", 0x8b, 0x00, 0x8b},
- {"maroon", 0xb0, 0x30, 0x60},
- {"maroon1", 0xff, 0x34, 0xb3},
- {"maroon2", 0xee, 0x30, 0xa7},
- {"maroon3", 0xcd, 0x29, 0x90},
- {"maroon4", 0x8b, 0x1c, 0x62},
- {"mediumaquamarine", 0x66, 0xcd, 0xaa},
- {"mediumblue", 0x00, 0x00, 0xcd},
- {"mediumorchid", 0xba, 0x55, 0xd3},
- {"mediumorchid1", 0xe0, 0x66, 0xff},
- {"mediumorchid2", 0xd1, 0x5f, 0xee},
- {"mediumorchid3", 0xb4, 0x52, 0xcd},
- {"mediumorchid4", 0x7a, 0x37, 0x8b},
- {"mediumpurple", 0x93, 0x70, 0xdb},
- {"mediumpurple1", 0xab, 0x82, 0xff},
- {"mediumpurple2", 0x9f, 0x79, 0xee},
- {"mediumpurple3", 0x89, 0x68, 0xcd},
- {"mediumpurple4", 0x5d, 0x47, 0x8b},
- {"mediumseagreen", 0x3c, 0xb3, 0x71},
- {"mediumslateblue", 0x7b, 0x68, 0xee},
- {"mediumspringgreen", 0x00, 0xfa, 0x9a},
- {"mediumturquoise", 0x48, 0xd1, 0xcc},
- {"mediumvioletred", 0xc7, 0x15, 0x85},
- {"midnightblue", 0x19, 0x19, 0x70},
- {"mintcream", 0xf5, 0xff, 0xfa},
- {"mistyrose", 0xff, 0xe4, 0xe1},
- {"mistyrose1", 0xff, 0xe4, 0xe1},
- {"mistyrose2", 0xee, 0xd5, 0xd2},
- {"mistyrose3", 0xcd, 0xb7, 0xb5},
- {"mistyrose4", 0x8b, 0x7d, 0x7b},
- {"moccasin", 0xff, 0xe4, 0xb5},
- {"navajowhite", 0xff, 0xde, 0xad},
- {"navajowhite1", 0xff, 0xde, 0xad},
- {"navajowhite2", 0xee, 0xcf, 0xa1},
- {"navajowhite3", 0xcd, 0xb3, 0x8b},
- {"navajowhite4", 0x8b, 0x79, 0x5e},
- {"navy", 0x00, 0x00, 0x80},
- {"navyblue", 0x00, 0x00, 0x80},
- {"oldlace", 0xfd, 0xf5, 0xe6},
- {"olivedrab", 0x6b, 0x8e, 0x23},
- {"olivedrab1", 0xc0, 0xff, 0x3e},
- {"olivedrab2", 0xb3, 0xee, 0x3a},
- {"olivedrab3", 0x9a, 0xcd, 0x32},
- {"olivedrab4", 0x69, 0x8b, 0x22},
- {"orange", 0xff, 0xa5, 0x00},
- {"orange1", 0xff, 0xa5, 0x00},
- {"orange2", 0xee, 0x9a, 0x00},
- {"orange3", 0xcd, 0x85, 0x00},
- {"orange4", 0x8b, 0x5a, 0x00},
- {"orangered", 0xff, 0x45, 0x00},
- {"orangered1", 0xff, 0x45, 0x00},
- {"orangered2", 0xee, 0x40, 0x00},
- {"orangered3", 0xcd, 0x37, 0x00},
- {"orangered4", 0x8b, 0x25, 0x00},
- {"orchid", 0xda, 0x70, 0xd6},
- {"orchid1", 0xff, 0x83, 0xfa},
- {"orchid2", 0xee, 0x7a, 0xe9},
- {"orchid3", 0xcd, 0x69, 0xc9},
- {"orchid4", 0x8b, 0x47, 0x89},
- {"palegoldenrod", 0xee, 0xe8, 0xaa},
- {"palegreen", 0x98, 0xfb, 0x98},
- {"palegreen1", 0x9a, 0xff, 0x9a},
- {"palegreen2", 0x90, 0xee, 0x90},
- {"palegreen3", 0x7c, 0xcd, 0x7c},
- {"palegreen4", 0x54, 0x8b, 0x54},
- {"paleturquoise", 0xaf, 0xee, 0xee},
- {"paleturquoise1", 0xbb, 0xff, 0xff},
- {"paleturquoise2", 0xae, 0xee, 0xee},
- {"paleturquoise3", 0x96, 0xcd, 0xcd},
- {"paleturquoise4", 0x66, 0x8b, 0x8b},
- {"palevioletred", 0xdb, 0x70, 0x93},
- {"palevioletred1", 0xff, 0x82, 0xab},
- {"palevioletred2", 0xee, 0x79, 0x9f},
- {"palevioletred3", 0xcd, 0x68, 0x89},
- {"palevioletred4", 0x8b, 0x47, 0x5d},
- {"papayawhip", 0xff, 0xef, 0xd5},
- {"peachpuff", 0xff, 0xda, 0xb9},
- {"peachpuff1", 0xff, 0xda, 0xb9},
- {"peachpuff2", 0xee, 0xcb, 0xad},
- {"peachpuff3", 0xcd, 0xaf, 0x95},
- {"peachpuff4", 0x8b, 0x77, 0x65},
- {"peru", 0xcd, 0x85, 0x3f},
- {"pink", 0xff, 0xc0, 0xcb},
- {"pink1", 0xff, 0xb5, 0xc5},
- {"pink2", 0xee, 0xa9, 0xb8},
- {"pink3", 0xcd, 0x91, 0x9e},
- {"pink4", 0x8b, 0x63, 0x6c},
- {"plum", 0xdd, 0xa0, 0xdd},
- {"plum1", 0xff, 0xbb, 0xff},
- {"plum2", 0xee, 0xae, 0xee},
- {"plum3", 0xcd, 0x96, 0xcd},
- {"plum4", 0x8b, 0x66, 0x8b},
- {"powderblue", 0xb0, 0xe0, 0xe6},
- {"purple", 0xa0, 0x20, 0xf0},
- {"purple1", 0x9b, 0x30, 0xff},
- {"purple2", 0x91, 0x2c, 0xee},
- {"purple3", 0x7d, 0x26, 0xcd},
- {"purple4", 0x55, 0x1a, 0x8b},
- {"red", 0xff, 0x00, 0x00},
- {"red1", 0xff, 0x00, 0x00},
- {"red2", 0xee, 0x00, 0x00},
- {"red3", 0xcd, 0x00, 0x00},
- {"red4", 0x8b, 0x00, 0x00},
- {"rosybrown", 0xbc, 0x8f, 0x8f},
- {"rosybrown1", 0xff, 0xc1, 0xc1},
- {"rosybrown2", 0xee, 0xb4, 0xb4},
- {"rosybrown3", 0xcd, 0x9b, 0x9b},
- {"rosybrown4", 0x8b, 0x69, 0x69},
- {"royalblue", 0x41, 0x69, 0xe1},
- {"royalblue1", 0x48, 0x76, 0xff},
- {"royalblue2", 0x43, 0x6e, 0xee},
- {"royalblue3", 0x3a, 0x5f, 0xcd},
- {"royalblue4", 0x27, 0x40, 0x8b},
- {"saddlebrown", 0x8b, 0x45, 0x13},
- {"salmon", 0xfa, 0x80, 0x72},
- {"salmon1", 0xff, 0x8c, 0x69},
- {"salmon2", 0xee, 0x82, 0x62},
- {"salmon3", 0xcd, 0x70, 0x54},
- {"salmon4", 0x8b, 0x4c, 0x39},
- {"sandybrown", 0xf4, 0xa4, 0x60},
- {"seagreen", 0x2e, 0x8b, 0x57},
- {"seagreen1", 0x54, 0xff, 0x9f},
- {"seagreen2", 0x4e, 0xee, 0x94},
- {"seagreen3", 0x43, 0xcd, 0x80},
- {"seagreen4", 0x2e, 0x8b, 0x57},
- {"seashell", 0xff, 0xf5, 0xee},
- {"seashell1", 0xff, 0xf5, 0xee},
- {"seashell2", 0xee, 0xe5, 0xde},
- {"seashell3", 0xcd, 0xc5, 0xbf},
- {"seashell4", 0x8b, 0x86, 0x82},
- {"sienna", 0xa0, 0x52, 0x2d},
- {"sienna1", 0xff, 0x82, 0x47},
- {"sienna2", 0xee, 0x79, 0x42},
- {"sienna3", 0xcd, 0x68, 0x39},
- {"sienna4", 0x8b, 0x47, 0x26},
- {"skyblue", 0x87, 0xce, 0xeb},
- {"skyblue1", 0x87, 0xce, 0xff},
- {"skyblue2", 0x7e, 0xc0, 0xee},
- {"skyblue3", 0x6c, 0xa6, 0xcd},
- {"skyblue4", 0x4a, 0x70, 0x8b},
- {"slateblue", 0x6a, 0x5a, 0xcd},
- {"slateblue1", 0x83, 0x6f, 0xff},
- {"slateblue2", 0x7a, 0x67, 0xee},
- {"slateblue3", 0x69, 0x59, 0xcd},
- {"slateblue4", 0x47, 0x3c, 0x8b},
- {"slategray", 0x70, 0x80, 0x90},
- {"slategray1", 0xc6, 0xe2, 0xff},
- {"slategray2", 0xb9, 0xd3, 0xee},
- {"slategray3", 0x9f, 0xb6, 0xcd},
- {"slategray4", 0x6c, 0x7b, 0x8b},
- {"slategrey", 0x70, 0x80, 0x90},
- {"slategrey1", 0xc6, 0xe2, 0xff},
- {"slategrey2", 0xb9, 0xd3, 0xee},
- {"slategrey3", 0x9f, 0xb6, 0xcd},
- {"slategrey4", 0x6c, 0x7b, 0x8b},
- {"snow", 0xff, 0xfa, 0xfa},
- {"snow1", 0xff, 0xfa, 0xfa},
- {"snow2", 0xee, 0xe9, 0xe9},
- {"snow3", 0xcd, 0xc9, 0xc9},
- {"snow4", 0x8b, 0x89, 0x89},
- {"springgreen", 0x00, 0xff, 0x7f},
- {"springgreen1", 0x00, 0xff, 0x7f},
- {"springgreen2", 0x00, 0xee, 0x76},
- {"springgreen3", 0x00, 0xcd, 0x66},
- {"springgreen4", 0x00, 0x8b, 0x45},
- {"steelblue", 0x46, 0x82, 0xb4},
- {"steelblue1", 0x63, 0xb8, 0xff},
- {"steelblue2", 0x5c, 0xac, 0xee},
- {"steelblue3", 0x4f, 0x94, 0xcd},
- {"steelblue4", 0x36, 0x64, 0x8b},
- {"tan", 0xd2, 0xb4, 0x8c},
- {"tan1", 0xff, 0xa5, 0x4f},
- {"tan2", 0xee, 0x9a, 0x49},
- {"tan3", 0xcd, 0x85, 0x3f},
- {"tan4", 0x8b, 0x5a, 0x2b},
- {"thistle", 0xd8, 0xbf, 0xd8},
- {"thistle1", 0xff, 0xe1, 0xff},
- {"thistle2", 0xee, 0xd2, 0xee},
- {"thistle3", 0xcd, 0xb5, 0xcd},
- {"thistle4", 0x8b, 0x7b, 0x8b},
- {"tomato", 0xff, 0x63, 0x47},
- {"tomato1", 0xff, 0x63, 0x47},
- {"tomato2", 0xee, 0x5c, 0x42},
- {"tomato3", 0xcd, 0x4f, 0x39},
- {"tomato4", 0x8b, 0x36, 0x26},
- {"turquoise", 0x40, 0xe0, 0xd0},
- {"turquoise1", 0x00, 0xf5, 0xff},
- {"turquoise2", 0x00, 0xe5, 0xee},
- {"turquoise3", 0x00, 0xc5, 0xcd},
- {"turquoise4", 0x00, 0x86, 0x8b},
- {"violet", 0xee, 0x82, 0xee},
- {"violetred", 0xd0, 0x20, 0x90},
- {"violetred1", 0xff, 0x3e, 0x96},
- {"violetred2", 0xee, 0x3a, 0x8c},
- {"violetred3", 0xcd, 0x32, 0x78},
- {"violetred4", 0x8b, 0x22, 0x52},
- {"wheat", 0xf5, 0xde, 0xb3},
- {"wheat1", 0xff, 0xe7, 0xba},
- {"wheat2", 0xee, 0xd8, 0xae},
- {"wheat3", 0xcd, 0xba, 0x96},
- {"wheat4", 0x8b, 0x7e, 0x66},
- {"white", 0xff, 0xff, 0xff},
- {"whitesmoke", 0xf5, 0xf5, 0xf5},
- {"yellow", 0xff, 0xff, 0x00},
- {"yellow1", 0xff, 0xff, 0x00},
- {"yellow2", 0xee, 0xee, 0x00},
- {"yellow3", 0xcd, 0xcd, 0x00},
- {"yellow4", 0x8b, 0x8b, 0x00},
- {"yellowgreen", 0x9a, 0xcd, 0x32},
- {NULL, 0, 0, 0}
- };
|