source: trunk/environments/g4py/source/python/colortable.py @ 1337

Last change on this file since 1337 was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 30.6 KB
Line 
1"""
2# ==================================================================
3#   Python module
4#
5#   color table
6#
7#                                              Q, 2005
8# ==================================================================
9"""
10#$Id: colortable.py,v 1.3 2008/12/03 07:00:29 kmura Exp $
11
12
13def int_rgb(name):
14  return _colortable[name]
15
16
17def float_rgb(name):
18  rgb = _colortable[name]
19  return (rgb[0]/255., rgb[1]/255., rgb[2]/255.)
20
21
22# ==================================================================
23# RGB color table (/usr/lib/X11/rgb.txt)
24# ==================================================================
25_colortable = { }
26_colortable["snow"] = (255, 250, 250)
27_colortable["ghost"] = (248, 248, 255)
28_colortable["GhostWhite"] = (248, 248, 255)
29_colortable["white"] = (245, 245, 245)
30_colortable["WhiteSmoke"] = (245, 245, 245)
31_colortable["gainsboro"] = (220, 220, 220)
32_colortable["floral"] = (255, 250, 240)
33_colortable["FloralWhite"] = (255, 250, 240)
34_colortable["old"] = (253, 245, 230)
35_colortable["OldLace"] = (253, 245, 230)
36_colortable["linen"] = (250, 240, 230)
37_colortable["antique"] = (250, 235, 215)
38_colortable["AntiqueWhite"] = (250, 235, 215)
39_colortable["papaya"] = (255, 239, 213)
40_colortable["PapayaWhip"] = (255, 239, 213)
41_colortable["blanched"] = (255, 235, 205)
42_colortable["BlanchedAlmond"] = (255, 235, 205)
43_colortable["bisque"] = (255, 228, 196)
44_colortable["peach"] = (255, 218, 185)
45_colortable["PeachPuff"] = (255, 218, 185)
46_colortable["navajo"] = (255, 222, 173)
47_colortable["NavajoWhite"] = (255, 222, 173)
48_colortable["moccasin"] = (255, 228, 181)
49_colortable["cornsilk"] = (255, 248, 220)
50_colortable["ivory"] = (255, 255, 240)
51_colortable["lemon"] = (255, 250, 205)
52_colortable["LemonChiffon"] = (255, 250, 205)
53_colortable["seashell"] = (255, 245, 238)
54_colortable["honeydew"] = (240, 255, 240)
55_colortable["mint"] = (245, 255, 250)
56_colortable["MintCream"] = (245, 255, 250)
57_colortable["azure"] = (240, 255, 255)
58_colortable["alice"] = (240, 248, 255)
59_colortable["AliceBlue"] = (240, 248, 255)
60_colortable["lavender"] = (230, 230, 250)
61_colortable["lavender"] = (255, 240, 245)
62_colortable["LavenderBlush"] = (255, 240, 245)
63_colortable["misty"] = (255, 228, 225)
64_colortable["MistyRose"] = (255, 228, 225)
65_colortable["white"] = (255, 255, 255)
66_colortable["black"] = (0, 0, 0)
67_colortable["dark"] = (47, 79, 79)
68_colortable["DarkSlateGray"] = (47, 79, 79)
69_colortable["dark"] = (47, 79, 79)
70_colortable["DarkSlateGrey"] = (47, 79, 79)
71_colortable["dim"] = (105, 105, 105)
72_colortable["DimGray"] = (105, 105, 105)
73_colortable["dim"] = (105, 105, 105)
74_colortable["DimGrey"] = (105, 105, 105)
75_colortable["slate"] = (112, 128, 144)
76_colortable["SlateGray"] = (112, 128, 144)
77_colortable["slate"] = (112, 128, 144)
78_colortable["SlateGrey"] = (112, 128, 144)
79_colortable["light"] = (119, 136, 153)
80_colortable["LightSlateGray"] = (119, 136, 153)
81_colortable["light"] = (119, 136, 153)
82_colortable["LightSlateGrey"] = (119, 136, 153)
83_colortable["gray"] = (190, 190, 190)
84_colortable["grey"] = (190, 190, 190)
85_colortable["light"] = (211, 211, 211)
86_colortable["LightGrey"] = (211, 211, 211)
87_colortable["light"] = (211, 211, 211)
88_colortable["LightGray"] = (211, 211, 211)
89_colortable["midnight"] = (25, 25, 112)
90_colortable["MidnightBlue"] = (25, 25, 112)
91_colortable["navy"] = (0, 0, 128)
92_colortable["navy"] = (0, 0, 128)
93_colortable["NavyBlue"] = (0, 0, 128)
94_colortable["cornflower"] = (100, 149, 237)
95_colortable["CornflowerBlue"] = (100, 149, 237)
96_colortable["dark"] = (72, 61, 139)
97_colortable["DarkSlateBlue"] = (72, 61, 139)
98_colortable["slate"] = (106, 90, 205)
99_colortable["SlateBlue"] = (106, 90, 205)
100_colortable["medium"] = (123, 104, 238)
101_colortable["MediumSlateBlue"] = (123, 104, 238)
102_colortable["light"] = (132, 112, 255)
103_colortable["LightSlateBlue"] = (132, 112, 255)
104_colortable["medium"] = (0, 0, 205)
105_colortable["MediumBlue"] = (0, 0, 205)
106_colortable["royal"] = (65, 105, 225)
107_colortable["RoyalBlue"] = (65, 105, 225)
108_colortable["blue"] = (0, 0, 255)
109_colortable["dodger"] = (30, 144, 255)
110_colortable["DodgerBlue"] = (30, 144, 255)
111_colortable["deep"] = (0, 191, 255)
112_colortable["DeepSkyBlue"] = (0, 191, 255)
113_colortable["sky"] = (135, 206, 235)
114_colortable["SkyBlue"] = (135, 206, 235)
115_colortable["light"] = (135, 206, 250)
116_colortable["LightSkyBlue"] = (135, 206, 250)
117_colortable["steel"] = (70, 130, 180)
118_colortable["SteelBlue"] = (70, 130, 180)
119_colortable["light"] = (176, 196, 222)
120_colortable["LightSteelBlue"] = (176, 196, 222)
121_colortable["light"] = (173, 216, 230)
122_colortable["LightBlue"] = (173, 216, 230)
123_colortable["powder"] = (176, 224, 230)
124_colortable["PowderBlue"] = (176, 224, 230)
125_colortable["pale"] = (175, 238, 238)
126_colortable["PaleTurquoise"] = (175, 238, 238)
127_colortable["dark"] = (0, 206, 209)
128_colortable["DarkTurquoise"] = (0, 206, 209)
129_colortable["medium"] = (72, 209, 204)
130_colortable["MediumTurquoise"] = (72, 209, 204)
131_colortable["turquoise"] = (64, 224, 208)
132_colortable["cyan"] = (0, 255, 255)
133_colortable["light"] = (224, 255, 255)
134_colortable["LightCyan"] = (224, 255, 255)
135_colortable["cadet"] = (95, 158, 160)
136_colortable["CadetBlue"] = (95, 158, 160)
137_colortable["medium"] = (102, 205, 170)
138_colortable["MediumAquamarine"] = (102, 205, 170)
139_colortable["aquamarine"] = (127, 255, 212)
140_colortable["dark"] = (0, 100, 0)
141_colortable["DarkGreen"] = (0, 100, 0)
142_colortable["dark"] = (85, 107, 47)
143_colortable["DarkOliveGreen"] = (85, 107, 47)
144_colortable["dark"] = (143, 188, 143)
145_colortable["DarkSeaGreen"] = (143, 188, 143)
146_colortable["sea"] = (46, 139, 87)
147_colortable["SeaGreen"] = (46, 139, 87)
148_colortable["medium"] = (60, 179, 113)
149_colortable["MediumSeaGreen"] = (60, 179, 113)
150_colortable["light"] = (32, 178, 170)
151_colortable["LightSeaGreen"] = (32, 178, 170)
152_colortable["pale"] = (152, 251, 152)
153_colortable["PaleGreen"] = (152, 251, 152)
154_colortable["spring"] = (0, 255, 127)
155_colortable["SpringGreen"] = (0, 255, 127)
156_colortable["lawn"] = (124, 252, 0)
157_colortable["LawnGreen"] = (124, 252, 0)
158_colortable["green"] = (0, 255, 0)
159_colortable["chartreuse"] = (127, 255, 0)
160_colortable["medium"] = (0, 250, 154)
161_colortable["MediumSpringGreen"] = (0, 250, 154)
162_colortable["green"] = (173, 255, 47)
163_colortable["GreenYellow"] = (173, 255, 47)
164_colortable["lime"] = (50, 205, 50)
165_colortable["LimeGreen"] = (50, 205, 50)
166_colortable["yellow"] = (154, 205, 50)
167_colortable["YellowGreen"] = (154, 205, 50)
168_colortable["forest"] = (34, 139, 34)
169_colortable["ForestGreen"] = (34, 139, 34)
170_colortable["olive"] = (107, 142, 35)
171_colortable["OliveDrab"] = (107, 142, 35)
172_colortable["dark"] = (189, 183, 107)
173_colortable["DarkKhaki"] = (189, 183, 107)
174_colortable["khaki"] = (240, 230, 140)
175_colortable["pale"] = (238, 232, 170)
176_colortable["PaleGoldenrod"] = (238, 232, 170)
177_colortable["light"] = (250, 250, 210)
178_colortable["LightGoldenrodYellow"] = (250, 250, 210)
179_colortable["light"] = (255, 255, 224)
180_colortable["LightYellow"] = (255, 255, 224)
181_colortable["yellow"] = (255, 255, 0)
182_colortable["gold"] = (255, 215, 0)
183_colortable["light"] = (238, 221, 130)
184_colortable["LightGoldenrod"] = (238, 221, 130)
185_colortable["goldenrod"] = (218, 165, 32)
186_colortable["dark"] = (184, 134, 11)
187_colortable["DarkGoldenrod"] = (184, 134, 11)
188_colortable["rosy"] = (188, 143, 143)
189_colortable["RosyBrown"] = (188, 143, 143)
190_colortable["indian"] = (205, 92, 92)
191_colortable["IndianRed"] = (205, 92, 92)
192_colortable["saddle"] = (139, 69, 19)
193_colortable["SaddleBrown"] = (139, 69, 19)
194_colortable["sienna"] = (160, 82, 45)
195_colortable["peru"] = (205, 133, 63)
196_colortable["burlywood"] = (222, 184, 135)
197_colortable["beige"] = (245, 245, 220)
198_colortable["wheat"] = (245, 222, 179)
199_colortable["sandy"] = (244, 164, 96)
200_colortable["SandyBrown"] = (244, 164, 96)
201_colortable["tan"] = (210, 180, 140)
202_colortable["chocolate"] = (210, 105, 30)
203_colortable["firebrick"] = (178, 34, 34)
204_colortable["brown"] = (165, 42, 42)
205_colortable["dark"] = (233, 150, 122)
206_colortable["DarkSalmon"] = (233, 150, 122)
207_colortable["salmon"] = (250, 128, 114)
208_colortable["light"] = (255, 160, 122)
209_colortable["LightSalmon"] = (255, 160, 122)
210_colortable["orange"] = (255, 165, 0)
211_colortable["dark"] = (255, 140, 0)
212_colortable["DarkOrange"] = (255, 140, 0)
213_colortable["coral"] = (255, 127, 80)
214_colortable["light"] = (240, 128, 128)
215_colortable["LightCoral"] = (240, 128, 128)
216_colortable["tomato"] = (255, 99, 71)
217_colortable["orange"] = (255, 69, 0)
218_colortable["OrangeRed"] = (255, 69, 0)
219_colortable["red"] = (255, 0, 0)
220_colortable["hot"] = (255, 105, 180)
221_colortable["HotPink"] = (255, 105, 180)
222_colortable["deep"] = (255, 20, 147)
223_colortable["DeepPink"] = (255, 20, 147)
224_colortable["pink"] = (255, 192, 203)
225_colortable["light"] = (255, 182, 193)
226_colortable["LightPink"] = (255, 182, 193)
227_colortable["pale"] = (219, 112, 147)
228_colortable["PaleVioletRed"] = (219, 112, 147)
229_colortable["maroon"] = (176, 48, 96)
230_colortable["medium"] = (199, 21, 133)
231_colortable["MediumVioletRed"] = (199, 21, 133)
232_colortable["violet"] = (208, 32, 144)
233_colortable["VioletRed"] = (208, 32, 144)
234_colortable["magenta"] = (255, 0, 255)
235_colortable["violet"] = (238, 130, 238)
236_colortable["plum"] = (221, 160, 221)
237_colortable["orchid"] = (218, 112, 214)
238_colortable["medium"] = (186, 85, 211)
239_colortable["MediumOrchid"] = (186, 85, 211)
240_colortable["dark"] = (153, 50, 204)
241_colortable["DarkOrchid"] = (153, 50, 204)
242_colortable["dark"] = (148, 0, 211)
243_colortable["DarkViolet"] = (148, 0, 211)
244_colortable["blue"] = (138, 43, 226)
245_colortable["BlueViolet"] = (138, 43, 226)
246_colortable["purple"] = (160, 32, 240)
247_colortable["medium"] = (147, 112, 219)
248_colortable["MediumPurple"] = (147, 112, 219)
249_colortable["thistle"] = (216, 191, 216)
250_colortable["snow1"] = (255, 250, 250)
251_colortable["snow2"] = (238, 233, 233)
252_colortable["snow3"] = (205, 201, 201)
253_colortable["snow4"] = (139, 137, 137)
254_colortable["seashell1"] = (255, 245, 238)
255_colortable["seashell2"] = (238, 229, 222)
256_colortable["seashell3"] = (205, 197, 191)
257_colortable["seashell4"] = (139, 134, 130)
258_colortable["AntiqueWhite1"] = (255, 239, 219)
259_colortable["AntiqueWhite2"] = (238, 223, 204)
260_colortable["AntiqueWhite3"] = (205, 192, 176)
261_colortable["AntiqueWhite4"] = (139, 131, 120)
262_colortable["bisque1"] = (255, 228, 196)
263_colortable["bisque2"] = (238, 213, 183)
264_colortable["bisque3"] = (205, 183, 158)
265_colortable["bisque4"] = (139, 125, 107)
266_colortable["PeachPuff1"] = (255, 218, 185)
267_colortable["PeachPuff2"] = (238, 203, 173)
268_colortable["PeachPuff3"] = (205, 175, 149)
269_colortable["PeachPuff4"] = (139, 119, 101)
270_colortable["NavajoWhite1"] = (255, 222, 173)
271_colortable["NavajoWhite2"] = (238, 207, 161)
272_colortable["NavajoWhite3"] = (205, 179, 139)
273_colortable["NavajoWhite4"] = (139, 121, 94)
274_colortable["LemonChiffon1"] = (255, 250, 205)
275_colortable["LemonChiffon2"] = (238, 233, 191)
276_colortable["LemonChiffon3"] = (205, 201, 165)
277_colortable["LemonChiffon4"] = (139, 137, 112)
278_colortable["cornsilk1"] = (255, 248, 220)
279_colortable["cornsilk2"] = (238, 232, 205)
280_colortable["cornsilk3"] = (205, 200, 177)
281_colortable["cornsilk4"] = (139, 136, 120)
282_colortable["ivory1"] = (255, 255, 240)
283_colortable["ivory2"] = (238, 238, 224)
284_colortable["ivory3"] = (205, 205, 193)
285_colortable["ivory4"] = (139, 139, 131)
286_colortable["honeydew1"] = (240, 255, 240)
287_colortable["honeydew2"] = (224, 238, 224)
288_colortable["honeydew3"] = (193, 205, 193)
289_colortable["honeydew4"] = (131, 139, 131)
290_colortable["LavenderBlush1"] = (255, 240, 245)
291_colortable["LavenderBlush2"] = (238, 224, 229)
292_colortable["LavenderBlush3"] = (205, 193, 197)
293_colortable["LavenderBlush4"] = (139, 131, 134)
294_colortable["MistyRose1"] = (255, 228, 225)
295_colortable["MistyRose2"] = (238, 213, 210)
296_colortable["MistyRose3"] = (205, 183, 181)
297_colortable["MistyRose4"] = (139, 125, 123)
298_colortable["azure1"] = (240, 255, 255)
299_colortable["azure2"] = (224, 238, 238)
300_colortable["azure3"] = (193, 205, 205)
301_colortable["azure4"] = (131, 139, 139)
302_colortable["SlateBlue1"] = (131, 111, 255)
303_colortable["SlateBlue2"] = (122, 103, 238)
304_colortable["SlateBlue3"] = (105, 89, 205)
305_colortable["SlateBlue4"] = (71, 60, 139)
306_colortable["RoyalBlue1"] = (72, 118, 255)
307_colortable["RoyalBlue2"] = (67, 110, 238)
308_colortable["RoyalBlue3"] = (58, 95, 205)
309_colortable["RoyalBlue4"] = (39, 64, 139)
310_colortable["blue1"] = (0, 0, 255)
311_colortable["blue2"] = (0, 0, 238)
312_colortable["blue3"] = (0, 0, 205)
313_colortable["blue4"] = (0, 0, 139)
314_colortable["DodgerBlue1"] = (30, 144, 255)
315_colortable["DodgerBlue2"] = (28, 134, 238)
316_colortable["DodgerBlue3"] = (24, 116, 205)
317_colortable["DodgerBlue4"] = (16, 78, 139)
318_colortable["SteelBlue1"] = (99, 184, 255)
319_colortable["SteelBlue2"] = (92, 172, 238)
320_colortable["SteelBlue3"] = (79, 148, 205)
321_colortable["SteelBlue4"] = (54, 100, 139)
322_colortable["DeepSkyBlue1"] = (0, 191, 255)
323_colortable["DeepSkyBlue2"] = (0, 178, 238)
324_colortable["DeepSkyBlue3"] = (0, 154, 205)
325_colortable["DeepSkyBlue4"] = (0, 104, 139)
326_colortable["SkyBlue1"] = (135, 206, 255)
327_colortable["SkyBlue2"] = (126, 192, 238)
328_colortable["SkyBlue3"] = (108, 166, 205)
329_colortable["SkyBlue4"] = (74, 112, 139)
330_colortable["LightSkyBlue1"] = (176, 226, 255)
331_colortable["LightSkyBlue2"] = (164, 211, 238)
332_colortable["LightSkyBlue3"] = (141, 182, 205)
333_colortable["LightSkyBlue4"] = (96, 123, 139)
334_colortable["SlateGray1"] = (198, 226, 255)
335_colortable["SlateGray2"] = (185, 211, 238)
336_colortable["SlateGray3"] = (159, 182, 205)
337_colortable["SlateGray4"] = (108, 123, 139)
338_colortable["LightSteelBlue1"] = (202, 225, 255)
339_colortable["LightSteelBlue2"] = (188, 210, 238)
340_colortable["LightSteelBlue3"] = (162, 181, 205)
341_colortable["LightSteelBlue4"] = (110, 123, 139)
342_colortable["LightBlue1"] = (191, 239, 255)
343_colortable["LightBlue2"] = (178, 223, 238)
344_colortable["LightBlue3"] = (154, 192, 205)
345_colortable["LightBlue4"] = (104, 131, 139)
346_colortable["LightCyan1"] = (224, 255, 255)
347_colortable["LightCyan2"] = (209, 238, 238)
348_colortable["LightCyan3"] = (180, 205, 205)
349_colortable["LightCyan4"] = (122, 139, 139)
350_colortable["PaleTurquoise1"] = (187, 255, 255)
351_colortable["PaleTurquoise2"] = (174, 238, 238)
352_colortable["PaleTurquoise3"] = (150, 205, 205)
353_colortable["PaleTurquoise4"] = (102, 139, 139)
354_colortable["CadetBlue1"] = (152, 245, 255)
355_colortable["CadetBlue2"] = (142, 229, 238)
356_colortable["CadetBlue3"] = (122, 197, 205)
357_colortable["CadetBlue4"] = (83, 134, 139)
358_colortable["turquoise1"] = (0, 245, 255)
359_colortable["turquoise2"] = (0, 229, 238)
360_colortable["turquoise3"] = (0, 197, 205)
361_colortable["turquoise4"] = (0, 134, 139)
362_colortable["cyan1"] = (0, 255, 255)
363_colortable["cyan2"] = (0, 238, 238)
364_colortable["cyan3"] = (0, 205, 205)
365_colortable["cyan4"] = (0, 139, 139)
366_colortable["DarkSlateGray1"] = (151, 255, 255)
367_colortable["DarkSlateGray2"] = (141, 238, 238)
368_colortable["DarkSlateGray3"] = (121, 205, 205)
369_colortable["DarkSlateGray4"] = (82, 139, 139)
370_colortable["aquamarine1"] = (127, 255, 212)
371_colortable["aquamarine2"] = (118, 238, 198)
372_colortable["aquamarine3"] = (102, 205, 170)
373_colortable["aquamarine4"] = (69, 139, 116)
374_colortable["DarkSeaGreen1"] = (193, 255, 193)
375_colortable["DarkSeaGreen2"] = (180, 238, 180)
376_colortable["DarkSeaGreen3"] = (155, 205, 155)
377_colortable["DarkSeaGreen4"] = (105, 139, 105)
378_colortable["SeaGreen1"] = (84, 255, 159)
379_colortable["SeaGreen2"] = (78, 238, 148)
380_colortable["SeaGreen3"] = (67, 205, 128)
381_colortable["SeaGreen4"] = (46, 139, 87)
382_colortable["PaleGreen1"] = (154, 255, 154)
383_colortable["PaleGreen2"] = (144, 238, 144)
384_colortable["PaleGreen3"] = (124, 205, 124)
385_colortable["PaleGreen4"] = (84, 139, 84)
386_colortable["SpringGreen1"] = (0, 255, 127)
387_colortable["SpringGreen2"] = (0, 238, 118)
388_colortable["SpringGreen3"] = (0, 205, 102)
389_colortable["SpringGreen4"] = (0, 139, 69)
390_colortable["green1"] = (0, 255, 0)
391_colortable["green2"] = (0, 238, 0)
392_colortable["green3"] = (0, 205, 0)
393_colortable["green4"] = (0, 139, 0)
394_colortable["chartreuse1"] = (127, 255, 0)
395_colortable["chartreuse2"] = (118, 238, 0)
396_colortable["chartreuse3"] = (102, 205, 0)
397_colortable["chartreuse4"] = (69, 139, 0)
398_colortable["OliveDrab1"] = (192, 255, 62)
399_colortable["OliveDrab2"] = (179, 238, 58)
400_colortable["OliveDrab3"] = (154, 205, 50)
401_colortable["OliveDrab4"] = (105, 139, 34)
402_colortable["DarkOliveGreen1"] = (202, 255, 112)
403_colortable["DarkOliveGreen2"] = (188, 238, 104)
404_colortable["DarkOliveGreen3"] = (162, 205, 90)
405_colortable["DarkOliveGreen4"] = (110, 139, 61)
406_colortable["khaki1"] = (255, 246, 143)
407_colortable["khaki2"] = (238, 230, 133)
408_colortable["khaki3"] = (205, 198, 115)
409_colortable["khaki4"] = (139, 134, 78)
410_colortable["LightGoldenrod1"] = (255, 236, 139)
411_colortable["LightGoldenrod2"] = (238, 220, 130)
412_colortable["LightGoldenrod3"] = (205, 190, 112)
413_colortable["LightGoldenrod4"] = (139, 129, 76)
414_colortable["LightYellow1"] = (255, 255, 224)
415_colortable["LightYellow2"] = (238, 238, 209)
416_colortable["LightYellow3"] = (205, 205, 180)
417_colortable["LightYellow4"] = (139, 139, 122)
418_colortable["yellow1"] = (255, 255, 0)
419_colortable["yellow2"] = (238, 238, 0)
420_colortable["yellow3"] = (205, 205, 0)
421_colortable["yellow4"] = (139, 139, 0)
422_colortable["gold1"] = (255, 215, 0)
423_colortable["gold2"] = (238, 201, 0)
424_colortable["gold3"] = (205, 173, 0)
425_colortable["gold4"] = (139, 117, 0)
426_colortable["goldenrod1"] = (255, 193, 37)
427_colortable["goldenrod2"] = (238, 180, 34)
428_colortable["goldenrod3"] = (205, 155, 29)
429_colortable["goldenrod4"] = (139, 105, 20)
430_colortable["DarkGoldenrod1"] = (255, 185, 15)
431_colortable["DarkGoldenrod2"] = (238, 173, 14)
432_colortable["DarkGoldenrod3"] = (205, 149, 12)
433_colortable["DarkGoldenrod4"] = (139, 101, 8)
434_colortable["RosyBrown1"] = (255, 193, 193)
435_colortable["RosyBrown2"] = (238, 180, 180)
436_colortable["RosyBrown3"] = (205, 155, 155)
437_colortable["RosyBrown4"] = (139, 105, 105)
438_colortable["IndianRed1"] = (255, 106, 106)
439_colortable["IndianRed2"] = (238, 99, 99)
440_colortable["IndianRed3"] = (205, 85, 85)
441_colortable["IndianRed4"] = (139, 58, 58)
442_colortable["sienna1"] = (255, 130, 71)
443_colortable["sienna2"] = (238, 121, 66)
444_colortable["sienna3"] = (205, 104, 57)
445_colortable["sienna4"] = (139, 71, 38)
446_colortable["burlywood1"] = (255, 211, 155)
447_colortable["burlywood2"] = (238, 197, 145)
448_colortable["burlywood3"] = (205, 170, 125)
449_colortable["burlywood4"] = (139, 115, 85)
450_colortable["wheat1"] = (255, 231, 186)
451_colortable["wheat2"] = (238, 216, 174)
452_colortable["wheat3"] = (205, 186, 150)
453_colortable["wheat4"] = (139, 126, 102)
454_colortable["tan1"] = (255, 165, 79)
455_colortable["tan2"] = (238, 154, 73)
456_colortable["tan3"] = (205, 133, 63)
457_colortable["tan4"] = (139, 90, 43)
458_colortable["chocolate1"] = (255, 127, 36)
459_colortable["chocolate2"] = (238, 118, 33)
460_colortable["chocolate3"] = (205, 102, 29)
461_colortable["chocolate4"] = (139, 69, 19)
462_colortable["firebrick1"] = (255, 48, 48)
463_colortable["firebrick2"] = (238, 44, 44)
464_colortable["firebrick3"] = (205, 38, 38)
465_colortable["firebrick4"] = (139, 26, 26)
466_colortable["brown1"] = (255, 64, 64)
467_colortable["brown2"] = (238, 59, 59)
468_colortable["brown3"] = (205, 51, 51)
469_colortable["brown4"] = (139, 35, 35)
470_colortable["salmon1"] = (255, 140, 105)
471_colortable["salmon2"] = (238, 130, 98)
472_colortable["salmon3"] = (205, 112, 84)
473_colortable["salmon4"] = (139, 76, 57)
474_colortable["LightSalmon1"] = (255, 160, 122)
475_colortable["LightSalmon2"] = (238, 149, 114)
476_colortable["LightSalmon3"] = (205, 129, 98)
477_colortable["LightSalmon4"] = (139, 87, 66)
478_colortable["orange1"] = (255, 165, 0)
479_colortable["orange2"] = (238, 154, 0)
480_colortable["orange3"] = (205, 133, 0)
481_colortable["orange4"] = (139, 90, 0)
482_colortable["DarkOrange1"] = (255, 127, 0)
483_colortable["DarkOrange2"] = (238, 118, 0)
484_colortable["DarkOrange3"] = (205, 102, 0)
485_colortable["DarkOrange4"] = (139, 69, 0)
486_colortable["coral1"] = (255, 114, 86)
487_colortable["coral2"] = (238, 106, 80)
488_colortable["coral3"] = (205, 91, 69)
489_colortable["coral4"] = (139, 62, 47)
490_colortable["tomato1"] = (255, 99, 71)
491_colortable["tomato2"] = (238, 92, 66)
492_colortable["tomato3"] = (205, 79, 57)
493_colortable["tomato4"] = (139, 54, 38)
494_colortable["OrangeRed1"] = (255, 69, 0)
495_colortable["OrangeRed2"] = (238, 64, 0)
496_colortable["OrangeRed3"] = (205, 55, 0)
497_colortable["OrangeRed4"] = (139, 37, 0)
498_colortable["red1"] = (255, 0, 0)
499_colortable["red2"] = (238, 0, 0)
500_colortable["red3"] = (205, 0, 0)
501_colortable["red4"] = (139, 0, 0)
502_colortable["DeepPink1"] = (255, 20, 147)
503_colortable["DeepPink2"] = (238, 18, 137)
504_colortable["DeepPink3"] = (205, 16, 118)
505_colortable["DeepPink4"] = (139, 10, 80)
506_colortable["HotPink1"] = (255, 110, 180)
507_colortable["HotPink2"] = (238, 106, 167)
508_colortable["HotPink3"] = (205, 96, 144)
509_colortable["HotPink4"] = (139, 58, 98)
510_colortable["pink1"] = (255, 181, 197)
511_colortable["pink2"] = (238, 169, 184)
512_colortable["pink3"] = (205, 145, 158)
513_colortable["pink4"] = (139, 99, 108)
514_colortable["LightPink1"] = (255, 174, 185)
515_colortable["LightPink2"] = (238, 162, 173)
516_colortable["LightPink3"] = (205, 140, 149)
517_colortable["LightPink4"] = (139, 95, 101)
518_colortable["PaleVioletRed1"] = (255, 130, 171)
519_colortable["PaleVioletRed2"] = (238, 121, 159)
520_colortable["PaleVioletRed3"] = (205, 104, 137)
521_colortable["PaleVioletRed4"] = (139, 71, 93)
522_colortable["maroon1"] = (255, 52, 179)
523_colortable["maroon2"] = (238, 48, 167)
524_colortable["maroon3"] = (205, 41, 144)
525_colortable["maroon4"] = (139, 28, 98)
526_colortable["VioletRed1"] = (255, 62, 150)
527_colortable["VioletRed2"] = (238, 58, 140)
528_colortable["VioletRed3"] = (205, 50, 120)
529_colortable["VioletRed4"] = (139, 34, 82)
530_colortable["magenta1"] = (255, 0, 255)
531_colortable["magenta2"] = (238, 0, 238)
532_colortable["magenta3"] = (205, 0, 205)
533_colortable["magenta4"] = (139, 0, 139)
534_colortable["orchid1"] = (255, 131, 250)
535_colortable["orchid2"] = (238, 122, 233)
536_colortable["orchid3"] = (205, 105, 201)
537_colortable["orchid4"] = (139, 71, 137)
538_colortable["plum1"] = (255, 187, 255)
539_colortable["plum2"] = (238, 174, 238)
540_colortable["plum3"] = (205, 150, 205)
541_colortable["plum4"] = (139, 102, 139)
542_colortable["MediumOrchid1"] = (224, 102, 255)
543_colortable["MediumOrchid2"] = (209, 95, 238)
544_colortable["MediumOrchid3"] = (180, 82, 205)
545_colortable["MediumOrchid4"] = (122, 55, 139)
546_colortable["DarkOrchid1"] = (191, 62, 255)
547_colortable["DarkOrchid2"] = (178, 58, 238)
548_colortable["DarkOrchid3"] = (154, 50, 205)
549_colortable["DarkOrchid4"] = (104, 34, 139)
550_colortable["purple1"] = (155, 48, 255)
551_colortable["purple2"] = (145, 44, 238)
552_colortable["purple3"] = (125, 38, 205)
553_colortable["purple4"] = (85, 26, 139)
554_colortable["MediumPurple1"] = (171, 130, 255)
555_colortable["MediumPurple2"] = (159, 121, 238)
556_colortable["MediumPurple3"] = (137, 104, 205)
557_colortable["MediumPurple4"] = (93, 71, 139)
558_colortable["thistle1"] = (255, 225, 255)
559_colortable["thistle2"] = (238, 210, 238)
560_colortable["thistle3"] = (205, 181, 205)
561_colortable["thistle4"] = (139, 123, 139)
562_colortable["gray0"] = (0, 0, 0)
563_colortable["grey0"] = (0, 0, 0)
564_colortable["gray1"] = (3, 3, 3)
565_colortable["grey1"] = (3, 3, 3)
566_colortable["gray2"] = (5, 5, 5)
567_colortable["grey2"] = (5, 5, 5)
568_colortable["gray3"] = (8, 8, 8)
569_colortable["grey3"] = (8, 8, 8)
570_colortable["gray4"] = (10, 10, 10)
571_colortable["grey4"] = (10, 10, 10)
572_colortable["gray5"] = (13, 13, 13)
573_colortable["grey5"] = (13, 13, 13)
574_colortable["gray6"] = (15, 15, 15)
575_colortable["grey6"] = (15, 15, 15)
576_colortable["gray7"] = (18, 18, 18)
577_colortable["grey7"] = (18, 18, 18)
578_colortable["gray8"] = (20, 20, 20)
579_colortable["grey8"] = (20, 20, 20)
580_colortable["gray9"] = (23, 23, 23)
581_colortable["grey9"] = (23, 23, 23)
582_colortable["gray10"] = (26, 26, 26)
583_colortable["grey10"] = (26, 26, 26)
584_colortable["gray11"] = (28, 28, 28)
585_colortable["grey11"] = (28, 28, 28)
586_colortable["gray12"] = (31, 31, 31)
587_colortable["grey12"] = (31, 31, 31)
588_colortable["gray13"] = (33, 33, 33)
589_colortable["grey13"] = (33, 33, 33)
590_colortable["gray14"] = (36, 36, 36)
591_colortable["grey14"] = (36, 36, 36)
592_colortable["gray15"] = (38, 38, 38)
593_colortable["grey15"] = (38, 38, 38)
594_colortable["gray16"] = (41, 41, 41)
595_colortable["grey16"] = (41, 41, 41)
596_colortable["gray17"] = (43, 43, 43)
597_colortable["grey17"] = (43, 43, 43)
598_colortable["gray18"] = (46, 46, 46)
599_colortable["grey18"] = (46, 46, 46)
600_colortable["gray19"] = (48, 48, 48)
601_colortable["grey19"] = (48, 48, 48)
602_colortable["gray20"] = (51, 51, 51)
603_colortable["grey20"] = (51, 51, 51)
604_colortable["gray21"] = (54, 54, 54)
605_colortable["grey21"] = (54, 54, 54)
606_colortable["gray22"] = (56, 56, 56)
607_colortable["grey22"] = (56, 56, 56)
608_colortable["gray23"] = (59, 59, 59)
609_colortable["grey23"] = (59, 59, 59)
610_colortable["gray24"] = (61, 61, 61)
611_colortable["grey24"] = (61, 61, 61)
612_colortable["gray25"] = (64, 64, 64)
613_colortable["grey25"] = (64, 64, 64)
614_colortable["gray26"] = (66, 66, 66)
615_colortable["grey26"] = (66, 66, 66)
616_colortable["gray27"] = (69, 69, 69)
617_colortable["grey27"] = (69, 69, 69)
618_colortable["gray28"] = (71, 71, 71)
619_colortable["grey28"] = (71, 71, 71)
620_colortable["gray29"] = (74, 74, 74)
621_colortable["grey29"] = (74, 74, 74)
622_colortable["gray30"] = (77, 77, 77)
623_colortable["grey30"] = (77, 77, 77)
624_colortable["gray31"] = (79, 79, 79)
625_colortable["grey31"] = (79, 79, 79)
626_colortable["gray32"] = (82, 82, 82)
627_colortable["grey32"] = (82, 82, 82)
628_colortable["gray33"] = (84, 84, 84)
629_colortable["grey33"] = (84, 84, 84)
630_colortable["gray34"] = (87, 87, 87)
631_colortable["grey34"] = (87, 87, 87)
632_colortable["gray35"] = (89, 89, 89)
633_colortable["grey35"] = (89, 89, 89)
634_colortable["gray36"] = (92, 92, 92)
635_colortable["grey36"] = (92, 92, 92)
636_colortable["gray37"] = (94, 94, 94)
637_colortable["grey37"] = (94, 94, 94)
638_colortable["gray38"] = (97, 97, 97)
639_colortable["grey38"] = (97, 97, 97)
640_colortable["gray39"] = (99, 99, 99)
641_colortable["grey39"] = (99, 99, 99)
642_colortable["gray40"] = (102, 102, 102)
643_colortable["grey40"] = (102, 102, 102)
644_colortable["gray41"] = (105, 105, 105)
645_colortable["grey41"] = (105, 105, 105)
646_colortable["gray42"] = (107, 107, 107)
647_colortable["grey42"] = (107, 107, 107)
648_colortable["gray43"] = (110, 110, 110)
649_colortable["grey43"] = (110, 110, 110)
650_colortable["gray44"] = (112, 112, 112)
651_colortable["grey44"] = (112, 112, 112)
652_colortable["gray45"] = (115, 115, 115)
653_colortable["grey45"] = (115, 115, 115)
654_colortable["gray46"] = (117, 117, 117)
655_colortable["grey46"] = (117, 117, 117)
656_colortable["gray47"] = (120, 120, 120)
657_colortable["grey47"] = (120, 120, 120)
658_colortable["gray48"] = (122, 122, 122)
659_colortable["grey48"] = (122, 122, 122)
660_colortable["gray49"] = (125, 125, 125)
661_colortable["grey49"] = (125, 125, 125)
662_colortable["gray50"] = (127, 127, 127)
663_colortable["grey50"] = (127, 127, 127)
664_colortable["gray51"] = (130, 130, 130)
665_colortable["grey51"] = (130, 130, 130)
666_colortable["gray52"] = (133, 133, 133)
667_colortable["grey52"] = (133, 133, 133)
668_colortable["gray53"] = (135, 135, 135)
669_colortable["grey53"] = (135, 135, 135)
670_colortable["gray54"] = (138, 138, 138)
671_colortable["grey54"] = (138, 138, 138)
672_colortable["gray55"] = (140, 140, 140)
673_colortable["grey55"] = (140, 140, 140)
674_colortable["gray56"] = (143, 143, 143)
675_colortable["grey56"] = (143, 143, 143)
676_colortable["gray57"] = (145, 145, 145)
677_colortable["grey57"] = (145, 145, 145)
678_colortable["gray58"] = (148, 148, 148)
679_colortable["grey58"] = (148, 148, 148)
680_colortable["gray59"] = (150, 150, 150)
681_colortable["grey59"] = (150, 150, 150)
682_colortable["gray60"] = (153, 153, 153)
683_colortable["grey60"] = (153, 153, 153)
684_colortable["gray61"] = (156, 156, 156)
685_colortable["grey61"] = (156, 156, 156)
686_colortable["gray62"] = (158, 158, 158)
687_colortable["grey62"] = (158, 158, 158)
688_colortable["gray63"] = (161, 161, 161)
689_colortable["grey63"] = (161, 161, 161)
690_colortable["gray64"] = (163, 163, 163)
691_colortable["grey64"] = (163, 163, 163)
692_colortable["gray65"] = (166, 166, 166)
693_colortable["grey65"] = (166, 166, 166)
694_colortable["gray66"] = (168, 168, 168)
695_colortable["grey66"] = (168, 168, 168)
696_colortable["gray67"] = (171, 171, 171)
697_colortable["grey67"] = (171, 171, 171)
698_colortable["gray68"] = (173, 173, 173)
699_colortable["grey68"] = (173, 173, 173)
700_colortable["gray69"] = (176, 176, 176)
701_colortable["grey69"] = (176, 176, 176)
702_colortable["gray70"] = (179, 179, 179)
703_colortable["grey70"] = (179, 179, 179)
704_colortable["gray71"] = (181, 181, 181)
705_colortable["grey71"] = (181, 181, 181)
706_colortable["gray72"] = (184, 184, 184)
707_colortable["grey72"] = (184, 184, 184)
708_colortable["gray73"] = (186, 186, 186)
709_colortable["grey73"] = (186, 186, 186)
710_colortable["gray74"] = (189, 189, 189)
711_colortable["grey74"] = (189, 189, 189)
712_colortable["gray75"] = (191, 191, 191)
713_colortable["grey75"] = (191, 191, 191)
714_colortable["gray76"] = (194, 194, 194)
715_colortable["grey76"] = (194, 194, 194)
716_colortable["gray77"] = (196, 196, 196)
717_colortable["grey77"] = (196, 196, 196)
718_colortable["gray78"] = (199, 199, 199)
719_colortable["grey78"] = (199, 199, 199)
720_colortable["gray79"] = (201, 201, 201)
721_colortable["grey79"] = (201, 201, 201)
722_colortable["gray80"] = (204, 204, 204)
723_colortable["grey80"] = (204, 204, 204)
724_colortable["gray81"] = (207, 207, 207)
725_colortable["grey81"] = (207, 207, 207)
726_colortable["gray82"] = (209, 209, 209)
727_colortable["grey82"] = (209, 209, 209)
728_colortable["gray83"] = (212, 212, 212)
729_colortable["grey83"] = (212, 212, 212)
730_colortable["gray84"] = (214, 214, 214)
731_colortable["grey84"] = (214, 214, 214)
732_colortable["gray85"] = (217, 217, 217)
733_colortable["grey85"] = (217, 217, 217)
734_colortable["gray86"] = (219, 219, 219)
735_colortable["grey86"] = (219, 219, 219)
736_colortable["gray87"] = (222, 222, 222)
737_colortable["grey87"] = (222, 222, 222)
738_colortable["gray88"] = (224, 224, 224)
739_colortable["grey88"] = (224, 224, 224)
740_colortable["gray89"] = (227, 227, 227)
741_colortable["grey89"] = (227, 227, 227)
742_colortable["gray90"] = (229, 229, 229)
743_colortable["grey90"] = (229, 229, 229)
744_colortable["gray91"] = (232, 232, 232)
745_colortable["grey91"] = (232, 232, 232)
746_colortable["gray92"] = (235, 235, 235)
747_colortable["grey92"] = (235, 235, 235)
748_colortable["gray93"] = (237, 237, 237)
749_colortable["grey93"] = (237, 237, 237)
750_colortable["gray94"] = (240, 240, 240)
751_colortable["grey94"] = (240, 240, 240)
752_colortable["gray95"] = (242, 242, 242)
753_colortable["grey95"] = (242, 242, 242)
754_colortable["gray96"] = (245, 245, 245)
755_colortable["grey96"] = (245, 245, 245)
756_colortable["gray97"] = (247, 247, 247)
757_colortable["grey97"] = (247, 247, 247)
758_colortable["gray98"] = (250, 250, 250)
759_colortable["grey98"] = (250, 250, 250)
760_colortable["gray99"] = (252, 252, 252)
761_colortable["grey99"] = (252, 252, 252)
762_colortable["gray100"] = (255, 255, 255)
763_colortable["grey100"] = (255, 255, 255)
764_colortable["dark"] = (169, 169, 169)
765_colortable["DarkGrey"] = (169, 169, 169)
766_colortable["dark"] = (169, 169, 169)
767_colortable["DarkGray"] = (169, 169, 169)
768_colortable["dark"] = (0, 0, 139)
769_colortable["DarkBlue"] = (0, 0, 139)
770_colortable["dark"] = (0, 139, 139)
771_colortable["DarkCyan"] = (0, 139, 139)
772_colortable["dark"] = (139, 0, 139)
773_colortable["DarkMagenta"] = (139, 0, 139)
774_colortable["dark"] = (139, 0, 0)
775_colortable["DarkRed"] = (139, 0, 0)
776_colortable["light"] = (144, 238, 144)
777_colortable["LightGreen"] = (144, 238, 144)
778
Note: See TracBrowser for help on using the repository browser.