home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractint / archive / v01.n446 < prev    next >
Internet Message Format  |  2000-02-11  |  42KB

  1. From: owner-fractint-digest@lists.xmission.com (fractint-digest)
  2. To: fractint-digest@lists.xmission.com
  3. Subject: fractint-digest V1 #446
  4. Reply-To: fractint-digest
  5. Sender: owner-fractint-digest@lists.xmission.com
  6. Errors-To: owner-fractint-digest@lists.xmission.com
  7. Precedence: bulk
  8.  
  9.  
  10. fractint-digest      Saturday, February 12 2000      Volume 01 : Number 446
  11.  
  12.  
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Fri, 11 Feb 2000 10:54:12 +0100
  18. From: Tonton Th <oulala@chez.com>
  19. Subject: Re: (fractint) MAKEFCFG.EXE
  20.  
  21. Charles Crocker wrote:
  22. > Load error : no DPMI  - Get csdpmi*b.zip
  23. > I could guess that DPMI stands for Display Parameters Master Index and that
  24.  
  25.     DPMI: Dos Protected Mode Interface (or similar)
  26.  
  27.     It's the dos extender who enable use of 32bits features
  28.     like multi megabyte memory. May be j=you can search
  29.     at djgpp home:        http://www.delorie.com/
  30.  
  31.  
  32. - -- 
  33. Signature en greve - nous exigeons les 35 minutes pour tous.
  34.  
  35. - --------------------------------------------------------------
  36. Thanks for using Fractint, The Fractals and Fractint Discussion List
  37. Post Message:   fractint@lists.xmission.com
  38. Get Commands:   majordomo@lists.xmission.com "help"
  39. Administrator:  twegner@swbell.net
  40. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  41.  
  42. ------------------------------
  43.  
  44. Date: Fri, 11 Feb 2000 08:52:37 -0800
  45. From: jerome schatten <romers@home.com>
  46. Subject: Re: (fractint) FOTD, 11-02-00 (Fractal Medallion [8]) (c)
  47.  
  48. I liked 'fractal medallion' so much I've set it as wallpaper.
  49. Thanks,
  50. jerome
  51.  
  52. Jim Muth wrote:
  53. > FOTD -- February 11, 2000  (Rating 8)
  54. > Fractal enthusiasts and visionaries:
  55. >
  56.  
  57. - --------------------------------------------------------------
  58. Thanks for using Fractint, The Fractals and Fractint Discussion List
  59. Post Message:   fractint@lists.xmission.com
  60. Get Commands:   majordomo@lists.xmission.com "help"
  61. Administrator:  twegner@swbell.net
  62. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  63.  
  64. ------------------------------
  65.  
  66. Date: Fri, 11 Feb 2000 13:07:02 -0700
  67. From: "Reckase, Erik Nathan" <enrecka@sandia.gov>
  68. Subject: (fractint) Variables used before defined
  69.  
  70. I have a strange question, regarding formulas that use variables before they
  71. are defined.  For example, look at Carr1313 in _rc1.frm : what happens when
  72. c is defined prior to c1 and c2?  Any information on this topic would be
  73. very useful.
  74.  
  75. - --Erik Reckase
  76.  
  77.  
  78. - --------------------------------------------------------------
  79. Thanks for using Fractint, The Fractals and Fractint Discussion List
  80. Post Message:   fractint@lists.xmission.com
  81. Get Commands:   majordomo@lists.xmission.com "help"
  82. Administrator:  twegner@swbell.net
  83. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  84.  
  85. ------------------------------
  86.  
  87. Date: Fri, 11 Feb 2000 16:44:00 -0500
  88. From: George Martin <GGMARTIN@compuserve.com>
  89. Subject: (fractint) Variables used before defined
  90.  
  91. Erik,
  92.  
  93. >
  94. I have a strange question, regarding formulas that use variables before
  95. they are defined.  For example, look at Carr1313 in _rc1.frm : what
  96. happens when  c is defined prior to c1 and c2?  Any information on this
  97. topic would be very useful.
  98. <
  99.  
  100.  
  101. Carr1313 {
  102.   z=3D1/pixel, c=3Dc1^2+c2^2, c2=3Dpixel/z-(1.099,0)
  103.   c1=3Dconj(imag(pixel))+c2:
  104.   z=3Dz*z+c+sin(z)
  105.   |real(z)|<=3D100
  106.   ;SOURCE: 30carr.frm
  107. }
  108.  
  109. Some predefined variables are reset to the appropriate value at the
  110. beginning of each pixel (such as pixel, whitesq, etc.) Other variables
  111. are given a specific value at pixel one (such as pi), or if not, the valu=
  112. e
  113. (0,0). These values are not reset each pixel, so going into the
  114. initialization section of pixel 2 and thereafter, these variables will
  115. still have the value which they had when the previous pixel was
  116. completed. Thus it is important to use care in initializing variables in
  117. a Fractint formula.
  118.  
  119. Using your example:
  120.  
  121.   z=3D1/pixel, c=3Dc1^2+c2^2, c2=3Dpixel/z-(1.099,0)
  122.   c1=3Dconj(imag(pixel))+c2:
  123.  
  124. the second statement will have c1 and c2 equal to (0,0) at the first
  125. pixel, but at the second pixel and thereafter c1 and c2 will carry over
  126. their values from the previous pixel. This is not good formula writing
  127. technique, since different drawing options (tesseral, boundary tracing,
  128. solid guessing) will compute the pixels in different orders and therefore=
  129.  
  130. give different results.
  131.  
  132. This formula was rewritten by someone else to eliminate the problem; the
  133. revised formula is also in _rc1.frm. In this formula each initialization
  134. statement uses only those values which have been previously initialized i=
  135. n
  136. the initialization section, so the problem of carryover values is
  137. eliminated. This is the preferred way to write formulas.
  138.  
  139. Carr1313A {; Rearrangement of Carr1313, with no ghosting
  140.   z=3D1/pixel, c2=3Dpixel/z-(1.099,0), c1=3Dconj(imag(pixel))+c2
  141.   c=3Dc1^2+c2^2:
  142.   z=3Dz*z+c+sin(z)
  143.   |real(z)| <=3D 100
  144.   ;SOURCE: form2.frm
  145. }
  146.  
  147.    =
  148.  
  149. Regards,
  150.  
  151. George Martin
  152.  
  153. - --------------------------------------------------------------
  154. Thanks for using Fractint, The Fractals and Fractint Discussion List
  155. Post Message:   fractint@lists.xmission.com
  156. Get Commands:   majordomo@lists.xmission.com "help"
  157. Administrator:  twegner@swbell.net
  158. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  159.  
  160. ------------------------------
  161.  
  162. Date: Fri, 11 Feb 2000 14:55:26 -0700
  163. From: "Reckase, Erik Nathan" <enrecka@sandia.gov>
  164. Subject: RE: (fractint) Variables used before defined
  165.  
  166. I suspected that the values of c1/c2 would carry over from the previous
  167. pixel - thanks for confirming that.  I saw the other version of 1313, and
  168. that's when I realized the differences.  However, the images created using
  169. the two different formulas are different, are they not?
  170.  
  171. - --Erik
  172.  
  173. - -----Original Message-----
  174. From: George Martin [mailto:GGMARTIN@compuserve.com]
  175. Sent: February 11, 2000 2:44 PM
  176. To: INTERNET:fractint@lists.xmission.com
  177. Subject: (fractint) Variables used before defined
  178.  
  179.  
  180. Erik,
  181.  
  182. >
  183. I have a strange question, regarding formulas that use variables before
  184. they are defined.  For example, look at Carr1313 in _rc1.frm : what
  185. happens when  c is defined prior to c1 and c2?  Any information on this
  186. topic would be very useful.
  187. <
  188.  
  189.  
  190. Carr1313 {
  191.   z=1/pixel, c=c1^2+c2^2, c2=pixel/z-(1.099,0)
  192.   c1=conj(imag(pixel))+c2:
  193.   z=z*z+c+sin(z)
  194.   |real(z)|<=100
  195.   ;SOURCE: 30carr.frm
  196. }
  197.  
  198. Some predefined variables are reset to the appropriate value at the
  199. beginning of each pixel (such as pixel, whitesq, etc.) Other variables
  200. are given a specific value at pixel one (such as pi), or if not, the value
  201. (0,0). These values are not reset each pixel, so going into the
  202. initialization section of pixel 2 and thereafter, these variables will
  203. still have the value which they had when the previous pixel was
  204. completed. Thus it is important to use care in initializing variables in
  205. a Fractint formula.
  206.  
  207. Using your example:
  208.  
  209.   z=1/pixel, c=c1^2+c2^2, c2=pixel/z-(1.099,0)
  210.   c1=conj(imag(pixel))+c2:
  211.  
  212. the second statement will have c1 and c2 equal to (0,0) at the first
  213. pixel, but at the second pixel and thereafter c1 and c2 will carry over
  214. their values from the previous pixel. This is not good formula writing
  215. technique, since different drawing options (tesseral, boundary tracing,
  216. solid guessing) will compute the pixels in different orders and therefore
  217. give different results.
  218.  
  219. This formula was rewritten by someone else to eliminate the problem; the
  220. revised formula is also in _rc1.frm. In this formula each initialization
  221. statement uses only those values which have been previously initialized in
  222. the initialization section, so the problem of carryover values is
  223. eliminated. This is the preferred way to write formulas.
  224.  
  225. Carr1313A {; Rearrangement of Carr1313, with no ghosting
  226.   z=1/pixel, c2=pixel/z-(1.099,0), c1=conj(imag(pixel))+c2
  227.   c=c1^2+c2^2:
  228.   z=z*z+c+sin(z)
  229.   |real(z)| <= 100
  230.   ;SOURCE: form2.frm
  231. }
  232.  
  233.    
  234. Regards,
  235.  
  236. George Martin
  237.  
  238. - --------------------------------------------------------------
  239. Thanks for using Fractint, The Fractals and Fractint Discussion List
  240. Post Message:   fractint@lists.xmission.com
  241. Get Commands:   majordomo@lists.xmission.com "help"
  242. Administrator:  twegner@swbell.net
  243. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  244.  
  245.  
  246. - --------------------------------------------------------------
  247. Thanks for using Fractint, The Fractals and Fractint Discussion List
  248. Post Message:   fractint@lists.xmission.com
  249. Get Commands:   majordomo@lists.xmission.com "help"
  250. Administrator:  twegner@swbell.net
  251. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  252.  
  253. ------------------------------
  254.  
  255. Date: Fri, 11 Feb 2000 11:17:55 +0600
  256. From: Samee <rato@bttb.net>
  257. Subject: [none]
  258.  
  259. Hello,
  260.     I have recently joined this mailing list and have version 20.0 of
  261. fractint. But I found many formulas in the mails from this list which needs
  262. version 20.0.6. Could anybody tell me from where can I download/upgrade to
  263. this version?
  264.  
  265.     And, Oh! One more question. I cannot understand any of the discussions Jim
  266. Muth presents about 4D space. Could anybody explain me anything about 4D
  267. space ?
  268.  
  269. Thanks in advance.
  270.  
  271.  
  272.  
  273.  
  274. - --------------------------------------------------------------
  275. Thanks for using Fractint, The Fractals and Fractint Discussion List
  276. Post Message:   fractint@lists.xmission.com
  277. Get Commands:   majordomo@lists.xmission.com "help"
  278. Administrator:  twegner@swbell.net
  279. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  280.  
  281. ------------------------------
  282.  
  283. Date: Sat, 12 Feb 2000 00:00:55 -0600
  284. From: "Paul N. Lee" <Paul.N.Lee@Worldnet.att.net>
  285. Subject: (fractint) Re: 
  286.  
  287. Samee <rato@bttb.net> wrote:
  288. >
  289. > Hello,
  290. > I have recently joined this mailing list and 
  291. > have version 20.0 of fractint.  But I found 
  292. > many formulas in the mails from this list 
  293. > which needs version 20.0.6.  Could anybody 
  294. > tell me from where can I download/upgrade to
  295. > this version?
  296.  
  297.   http://www.fractint.org/
  298.    ftp://ftp.fractint.org/
  299.  
  300. >
  301. > And, Oh! One more question.  I cannot understand 
  302. > any of the discussions Jim Muth presents about 
  303. > 4D space.  Could anybody explain me anything 
  304. > about 4D space ?
  305.  
  306. You might try going through several days worth of the FOTDs at the
  307. following URL:
  308.  
  309.   http://home.att.net/~Paul.N.Lee/FotD/FotD.html
  310.  
  311. There are links to specific key words (such as "4D") which will lead you
  312. to further information on that topic.
  313.  
  314. Sincerely,
  315. P.N.L.
  316. - --------------------------------------------------------------
  317. http://www.fractalus.com/cgi-bin/theway?ring=fractals&id=43&go
  318.  
  319. - --------------------------------------------------------------
  320. Thanks for using Fractint, The Fractals and Fractint Discussion List
  321. Post Message:   fractint@lists.xmission.com
  322. Get Commands:   majordomo@lists.xmission.com "help"
  323. Administrator:  twegner@swbell.net
  324. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  325.  
  326. ------------------------------
  327.  
  328. Date: Sat, 12 Feb 2000 01:04:04 -0500 (EST)
  329. From: Jim Muth <jamth@mindspring.com>
  330. Subject: (fractint) FOTD, 12-02-00 (Thistles [4]) (c)
  331.  
  332. FOTD -- February 12, 2000  (Rating 4)
  333.  
  334. Fractal enthusiasts and visionaries:
  335.  
  336. Today's fractal is a result of adding Z^(-3) to 2Z^2 and then 
  337. adding C to 1/10 of the sum, and repeating the process until a 
  338. fractal appears.  For some reason I was reminded of a thistle 
  339. plant when I saw the image.  As a result I named the picture 
  340. "Thistles".
  341.  
  342. The parameter file is a three-minute one.  I leave it up to the 
  343. potential viewer whether the slightly-below-average image is 
  344. worth the effort of running the file or of downloading the image 
  345. from:
  346.  
  347.           <alt.binaries.pictures.fractals>
  348.  
  349. or from:
  350.  
  351.           <http://home.att.net/~Paul.N.Lee/FotD/FotD.html>
  352.  
  353. The fractal weather today was once again spring-like in the 
  354. middle of winter, with warm sun and a temperature of 56F (13C) 
  355. that lured the fractal cats onto the recently appeared patch of 
  356. snow-free ground at the corner of the porch.
  357.  
  358. The hastiness of the fractal and shortness of the discussion are 
  359. a result of an unexpectedly busy day, which causes me to 
  360. postpone my philosophical wisdom until tomorrow.  But be 
  361. patient; when the philosophy finally appears, it will have been 
  362. worth the wait.  Until tomorrow, take care and see you soon.
  363.  
  364.  
  365. Jim Muth
  366. jamth@mindspring.com
  367.  
  368.  
  369. START 20.0 PAR-FORMULA FILE================================
  370.  
  371. Thistles           { ; time=0:03:11.36 SF5 on a P200
  372.                      ;  Version 2000 Patchlevel 6
  373.   reset=2000 type=formula formulafile=critical.frm
  374.   formulaname=MandelbrotMix4 function=ident passes=1
  375.   center-mag=-4.74707604237812400/+0.06993383907095668\
  376.   /7.578434e+007/1/-132.499 params=1/-3/2/2/-0.9/100
  377.   float=y maxiter=1800 bailout=25 inside=0 logmap=37
  378.   symmetry=none periodicity=10
  379.   colors=000anzarzenzilzlizogztezvcxzatzYnzWizUezS_<2>\
  380.   zMOzGMzAMr5Kg0KY0IO0IE0G50G00E00E00M<3>00i03o08v0Ez0\
  381.   Cz0Cz0Az0Az08z08z08z37z77zA5zE5zG5zECzEIzEOrCUgCaYCg\
  382.   OAnEAt5Az0Kn0<3>xA0z10<3>z00z00z10<3>z80zA0zC0zE0zG0\
  383.   xI0xK0oE0iA0c70W18Q0GK0QC0Y70g10o00r00r01r07r0Cr0Kr0\
  384.   Qr0Wr<2>0ax0cz0ez<2>0lz0nz0oz0rz0tz0vz0zz<2>1zz5zx8z\
  385.   tCznGziMzcQz_UzUYzQazKezGlzAoz7tz1xz0zz0zz0zz0zz0<3>\
  386.   rz0oz0nz0iz0<4>_z0Yz0Wz0Uz0Qz0<3>Iz0Gz0Ez0Cz0Az03z00\
  387.   z70zM<2>1zA<2>Ez0Iz0Mz0Sz0Wz0_z0cz0iz0<2>vz0tz0rz0oz\
  388.   0nz0<2>gz0<2>azA_zGYzKWzOUzUSzYQzcOzgMzlKzrIzvGzzIzv\
  389.   IztKzrKzoKznMzlMziOzgOzeOzcQzaQz_QzYSzUSzSUzQUzOUzMW\
  390.   zKWzIYzGYzEYzC_zA_z8_z7Gz10z0<4>0z00z1<3>0zG0zE0zC0z\
  391.   A0zA0z80z70z50z50z30z1<13>0z0
  392.   }
  393.  
  394. frm:MandelbrotMix4 {; Jim Muth
  395. a=real(p1), b=imag(p1), d=real(p2), f=imag(p2),
  396. g=1/f, h=1/d, j=1/(f-b), z=(-a*b*g*h)^j,
  397. k=real(p3)+1, l=imag(p3)+100, c=fn1(pixel):
  398. z=k*((a*(z^b))+(d*(z^f)))+c,
  399. |z| < l
  400. }
  401.  
  402. END 20.0 PAR-FORMULA FILE==================================
  403.  
  404.  
  405. - --------------------------------------------------------------
  406. Thanks for using Fractint, The Fractals and Fractint Discussion List
  407. Post Message:   fractint@lists.xmission.com
  408. Get Commands:   majordomo@lists.xmission.com "help"
  409. Administrator:  twegner@swbell.net
  410. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  411.  
  412. ------------------------------
  413.  
  414. Date: Sat, 12 Feb 2000 11:13:17 -0600
  415. From: Tim Wegner <twegner@swbell.net>
  416. Subject: (fractint) If you somehow get unsubscribed ...
  417.  
  418. This is a common enough question about the list that I thought I'd 
  419. post this to everyone. I really don't want to start a discussion about 
  420. list administration here (though if you have comments feel free to 
  421. email me) but occasionally this reminder is useful for list 
  422. ,members, so here goes:
  423.  
  424. A list member wrote:
  425.  
  426. > I subscribed to the Fractint list last year, and for some reason, I haven't
  427. > received any messages since January third.  I resubscribed, and sent a test
  428. > message, and have not received a reply.  Did I do something wrong?
  429.  
  430. You certainly haven't done anything wrong. I moderate this list with 
  431. a very light hand, and if you had really done something wrong (very 
  432. rare), I would let you know by email. Even if you had done 
  433. something wrong (e.g. upload a binary to the list) in most cases 
  434. you'd get an "oops please don't that" email and would not be 
  435. summarily unsubscribed.
  436.  
  437. What probably happened is this. On a daily basis I see messages 
  438. bouncing from list members whose email addresses are not 
  439. working for some reason. Usually after waiting a day to see if the 
  440. problem fixes itself, I unsubscribe the list member's email address. 
  441.  
  442. I don't bother to send an email explaining because most of the time 
  443. the problem is that indeed the email address is not working, so 
  444. sending an email would be futile.
  445.  
  446. The problem with this is that there can be internet problems that 
  447. cause email to bounce that aren't really due to your email not 
  448. working right. I can't always tell. So your email address could get 
  449. unsubscribed even though your email account is OK. So if a few 
  450. days go by with no list messages, try resubscribing. 
  451.  
  452. Tim
  453.  
  454.  
  455. - --------------------------------------------------------------
  456. Thanks for using Fractint, The Fractals and Fractint Discussion List
  457. Post Message:   fractint@lists.xmission.com
  458. Get Commands:   majordomo@lists.xmission.com "help"
  459. Administrator:  twegner@swbell.net
  460. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  461.  
  462. ------------------------------
  463.  
  464. Date: Sat, 12 Feb 2000 12:41:35 -0500
  465. From: George Martin <GGMARTIN@compuserve.com>
  466. Subject: RE: (fractint) Variables used before defined
  467.  
  468. Erik,
  469.  
  470. Re: Carr1313
  471.  
  472. >
  473. I suspected that the values of c1/c2 would carry over from the previous
  474. pixel - thanks for confirming that.  I saw the other version of 1313, and=
  475.  
  476. that's when I realized the differences.  However, the images created usin=
  477. g
  478. the two different formulas are different, are they not?
  479. <
  480.  
  481. Yes, because at each pixel "c" will be given a different value.
  482.  
  483. George
  484.  
  485. - --------------------------------------------------------------
  486. Thanks for using Fractint, The Fractals and Fractint Discussion List
  487. Post Message:   fractint@lists.xmission.com
  488. Get Commands:   majordomo@lists.xmission.com "help"
  489. Administrator:  twegner@swbell.net
  490. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  491.  
  492. ------------------------------
  493.  
  494. Date: Sat, 12 Feb 2000 12:41:35 -0500
  495. From: George Martin <GGMARTIN@compuserve.com>
  496. Subject: RE: (fractint) Variables used before defined
  497.  
  498. Erik,
  499.  
  500. Re: Carr1313
  501.  
  502. >
  503. I suspected that the values of c1/c2 would carry over from the previous
  504. pixel - thanks for confirming that.  I saw the other version of 1313, and=
  505.  
  506. that's when I realized the differences.  However, the images created usin=
  507. g
  508. the two different formulas are different, are they not?
  509. <
  510.  
  511. Yes, because at each pixel "c" will be given a different value.
  512.  
  513. George
  514.  
  515. - --------------------------------------------------------------
  516. Thanks for using Fractint, The Fractals and Fractint Discussion List
  517. Post Message:   fractint@lists.xmission.com
  518. Get Commands:   majordomo@lists.xmission.com "help"
  519. Administrator:  twegner@swbell.net
  520. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  521.  
  522. ------------------------------
  523.  
  524. Date: Sat, 12 Feb 2000 14:00:53 -0600
  525. From: Bob Margolis <rttyman@wwa.com>
  526. Subject: (fractint) List of color names with RGB value
  527.  
  528. that I found at:
  529.  
  530. http://www.neutralzone.org/home/faqsys/docs/rgblist.txt
  531.  
  532. Hope you guys and gals find it useful.
  533.  
  534. Bob
  535.  
  536. ìììììììììììììììììììììììììììììììììììììììììììììììììììììììì
  537.  
  538. # Whites
  539. antique_white         250 235 215   0.9804 0.9216 0.8431
  540. azure                 240 255 255   0.9412 1.0000 1.0000
  541. bisque                255 228 196   1.0000 0.8941 0.7686
  542. blanched_almond       255 235 205   1.0000 0.9216 0.8039
  543. cornsilk              255 248 220   1.0000 0.9725 0.8627
  544. eggshell              252 230 201   0.9900 0.9000 0.7900
  545. floral_white          255 250 240   1.0000 0.9804 0.9412
  546. gainsboro             220 220 220   0.8627 0.8627 0.8627
  547. ghost_white           248 248 255   0.9725 0.9725 1.0000
  548. honeydew              240 255 240   0.9412 1.0000 0.9412
  549. ivory                 255 255 240   1.0000 1.0000 0.9412
  550. lavender              230 230 250   0.9020 0.9020 0.9804
  551. lavender_blush        255 240 245   1.0000 0.9412 0.9608
  552. lemon_chiffon         255 250 205   1.0000 0.9804 0.8039
  553. linen                 250 240 230   0.9804 0.9412 0.9020
  554. mint_cream            245 255 250   0.9608 1.0000 0.9804
  555. misty_rose            255 228 225   1.0000 0.8941 0.8824
  556. moccasin              255 228 181   1.0000 0.8941 0.7098
  557. navajo_white          255 222 173   1.0000 0.8706 0.6784
  558. old_lace              253 245 230   0.9922 0.9608 0.9020
  559. papaya_whip           255 239 213   1.0000 0.9373 0.8353
  560. peach_puff            255 218 185   1.0000 0.8549 0.7255
  561. seashell              255 245 238   1.0000 0.9608 0.9333
  562. snow                  255 250 250   1.0000 0.9804 0.9804
  563. thistle               216 191 216   0.8471 0.7490 0.8471
  564. titanium_white        252 255 240   0.9900 1.0000 0.9400
  565. wheat                 245 222 179   0.9608 0.8706 0.7020
  566. white                 255 255 255   1.0000 1.0000 1.0000
  567. white_smoke           245 245 245   0.9608 0.9608 0.9608
  568. zinc_white            253 248 255   0.9900 0.9700 1.0000
  569.  
  570. # Greys
  571. cold_grey             128 138 135   0.5000 0.5400 0.5300
  572. dim_grey              105 105 105   0.4118 0.4118 0.4118
  573. grey                  192 192 192   0.7529 0.7529 0.7529
  574. light_grey            211 211 211   0.8275 0.8275 0.8275
  575. slate_grey            112 128 144   0.4392 0.5020 0.5647
  576. slate_grey_dark        47  79  79   0.1843 0.3098 0.3098
  577. slate_grey_light      119 136 153   0.4667 0.5333 0.6000
  578. warm_grey             128 128 105   0.5000 0.5000 0.4100
  579.  
  580. # Blacks
  581. black                   0   0   0   0.0000 0.0000 0.0000
  582. ivory_black            41  36  33   0.1600 0.1400 0.1300
  583. lamp_black             46  71  59   0.1800 0.2800 0.2300
  584.  
  585. # Reds
  586. alizarin_crimson      227  38  54   0.8900 0.1500 0.2100
  587. brick                 156 102  31   0.6100 0.4000 0.1200
  588. cadmium_red_deep      227  23  13   0.8900 0.0900 0.0500
  589. coral                 255 127  80   1.0000 0.4980 0.3137
  590. coral_light           240 128 128   0.9412 0.5020 0.5020
  591. deep_pink             255  20 147   1.0000 0.0784 0.5765
  592. english_red           212  61  26   0.8300 0.2400 0.1000
  593. firebrick             178  34  34   0.6980 0.1333 0.1333
  594. geranium_lake         227  18  48   0.8900 0.0700 0.1900
  595. hot_pink              255 105 180   1.0000 0.4118 0.7059
  596. indian_red            176  23  31   0.6900 0.0900 0.1200
  597. light_salmon          255 160 122   1.0000 0.6275 0.4784
  598. madder_lake_deep      227  46  48   0.8900 0.1800 0.1900
  599. maroon                176  48  96   0.6902 0.1882 0.3765
  600. pink                  255 192 203   1.0000 0.7529 0.7961
  601. pink_light            255 182 193   1.0000 0.7137 0.7569
  602. raspberry             135  38  87   0.5300 0.1500 0.3400
  603. red                   255   0   0   1.0000 0.0000 0.0000
  604. rose_madder           227  54  56   0.8900 0.2100 0.2200
  605. salmon                250 128 114   0.9804 0.5020 0.4471
  606. tomato                255  99  71   1.0000 0.3882 0.2784
  607. venetian_red          212  26  31   0.8300 0.1000 0.1200
  608.  
  609. # Browns
  610. beige                 163 148 128   0.6400 0.5800 0.5000
  611. brown                 128  42  42   0.5000 0.1647 0.1647
  612. brown_madder          219  41  41   0.8600 0.1600 0.1600
  613. brown_ochre           135  66  31   0.5300 0.2600 0.1200
  614. burlywood             222 184 135   0.8706 0.7216 0.5294
  615. burnt_sienna          138  54  15   0.5400 0.2100 0.0600
  616. burnt_umber           138  51  36   0.5400 0.2000 0.1400
  617. chocolate             210 105  30   0.8235 0.4118 0.1176
  618. deep_ochre            115  61  26   0.4500 0.2400 0.1000
  619. flesh                 255 125  64   1.0000 0.4900 0.2500
  620. flesh_ochre           255  87  33   1.0000 0.3400 0.1300
  621. gold_ochre            199 120  38   0.7800 0.4700 0.1500
  622. greenish_umber        255  61  13   1.0000 0.2400 0.0500
  623. khaki                 240 230 140   0.9412 0.9020 0.5490
  624. khaki_dark            189 183 107   0.7412 0.7176 0.4196
  625. light_beige           245 245 220   0.9608 0.9608 0.8627
  626. peru                  205 133  63   0.8039 0.5216 0.2471
  627. rosy_brown            188 143 143   0.7373 0.5608 0.5608
  628. raw_sienna            199  97  20   0.7800 0.3800 0.0800
  629. raw_umber             115  74  18   0.4500 0.2900 0.0700
  630. sepia                  94  38  18   0.3700 0.1500 0.0700
  631. sienna                160  82  45   0.6275 0.3216 0.1765
  632. saddle_brown          139  69  19   0.5451 0.2706 0.0745
  633. sandy_brown           244 164  96   0.9569 0.6431 0.3765
  634. tan                   210 180 140   0.8235 0.7059 0.5490
  635. van_dyke_brown         94  38   5   0.3700 0.1500 0.0200
  636.  
  637. # Oranges
  638. cadmium_orange        255  97   3   1.0000 0.3800 0.0100
  639. cadmium_red_light     255   3  13   1.0000 0.0100 0.0500
  640. carrot                237 145  33   0.9300 0.5700 0.1300
  641. dark_orange           255 140   0   1.0000 0.5490 0.0000
  642. mars_orange           150  69  20   0.5900 0.2700 0.0800
  643. mars_yellow           227 112  26   0.8900 0.4400 0.1000
  644. orange                255 128   0   1.0000 0.5000 0.0000
  645. orange_red            255  69   0   1.0000 0.2706 0.0000
  646. yellow_ochre          227 130  23   0.8900 0.5100 0.0900
  647.  
  648. # Yellows
  649. aureoline_yellow      255 168  36   1.0000 0.6600 0.1400
  650. banana                227 207  87   0.8900 0.8100 0.3400
  651. cadmium_lemon         255 227   3   1.0000 0.8900 0.0100
  652. cadmium_yellow        255 153  18   1.0000 0.6000 0.0700
  653. cadmium_yellow_light  255 176  15   1.0000 0.6900 0.0600
  654. gold                  255 215   0   1.0000 0.8431 0.0000
  655. goldenrod             218 165  32   0.8549 0.6471 0.1255
  656. goldenrod_dark        184 134  11   0.7216 0.5255 0.0431
  657. goldenrod_light       250 250 210   0.9804 0.9804 0.8235
  658. goldenrod_pale        238 232 170   0.9333 0.9098 0.6667
  659. light_goldenrod       238 221 130   0.9333 0.8667 0.5098
  660. melon                 227 168 105   0.8900 0.6600 0.4100
  661. naples_yellow_deep    255 168  18   1.0000 0.6600 0.0700
  662. yellow                255 255   0   1.0000 1.0000 0.0000
  663. yellow_light          255 255 224   1.0000 1.0000 0.8784
  664.  
  665. # Greens
  666. chartreuse            127 255   0   0.4980 1.0000 0.0000
  667. chrome_oxide_green    102 128  20   0.4000 0.5000 0.0800
  668. cinnabar_green         97 179  41   0.3800 0.7000 0.1600
  669. cobalt_green           61 145  64   0.2400 0.5700 0.2500
  670. emerald_green           0 201  87   0.0000 0.7900 0.3400
  671. forest_green           34 139  34   0.1333 0.5451 0.1333
  672. green                   0 255   0   0.0000 1.0000 0.0000
  673. green_dark              0 100   0   0.0000 0.3922 0.0000
  674. green_pale            152 251 152   0.5961 0.9843 0.5961
  675. green_yellow          173 255  47   0.6784 1.0000 0.1843
  676. lawn_green            124 252   0   0.4863 0.9882 0.0000
  677. lime_green             50 205  50   0.1961 0.8039 0.1961
  678. mint                  189 252 201   0.7400 0.9900 0.7900
  679. olive                  59  94  43   0.2300 0.3700 0.1700
  680. olive_drab            107 142  35   0.4196 0.5569 0.1373
  681. olive_green_dark       85 107  47   0.3333 0.4196 0.1843
  682. permanent_green        10 201  43   0.0400 0.7900 0.1700
  683. sap_green              48 128  20   0.1900 0.5000 0.0800
  684. sea_green              46 139  87   0.1804 0.5451 0.3412
  685. sea_green_dark        143 188 143   0.5608 0.7373 0.5608
  686. sea_green_medium       60 179 113   0.2353 0.7020 0.4431
  687. sea_green_light        32 178 170   0.1255 0.6980 0.6667
  688. spring_green            0 255 127   0.0000 1.0000 0.4980
  689. spring_green_medium     0 250 154   0.0000 0.9804 0.6039
  690. terre_verte            56  94  15   0.2200 0.3700 0.0600
  691. viridian_light        110 255 112   0.4300 1.0000 0.4400
  692. yellow_green          154 205  50   0.6039 0.8039 0.1961
  693.  
  694. # Cyans
  695. aquamarine            127 255 212   0.4980 1.0000 0.8314
  696. aquamarine_medium     102 205 170   0.4000 0.8039 0.6667
  697. cyan                    0 255 255   0.0000 1.0000 1.0000
  698. cyan_white            224 255 255   0.8784 1.0000 1.0000
  699. turquoise              64 224 208   0.2510 0.8784 0.8157
  700. turquoise_dark          0 206 209   0.0000 0.8078 0.8196
  701. turquoise_medium       72 209 204   0.2824 0.8196 0.8000
  702. turquoise_pale        175 238 238   0.6863 0.9333 0.9333
  703.  
  704. # Blues
  705. alice_blue            240 248 255   0.9412 0.9725 1.0000
  706. blue                    0   0 255   0.0000 0.0000 1.0000
  707. blue_light            173 216 230   0.6784 0.8471 0.9020
  708. blue_medium             0   0 205   0.0000 0.0000 0.8039
  709. cadet                  95 158 160   0.3725 0.6196 0.6275
  710. cobalt                 61  89 171   0.2400 0.3500 0.6700
  711. cornflower            100 149 237   0.3922 0.5843 0.9294
  712. cerulean                5 184 204   0.0200 0.7200 0.8000
  713. dodger_blue           30 144 255   0.1176 0.5647 1.0000
  714. indigo                  8  46  84   0.0300 0.1800 0.3300
  715. manganese_blue          3 168 158   0.0100 0.6600 0.6200
  716. midnight_blue          25  25 112   0.0980 0.0980 0.4392
  717. navy                    0   0 128   0.0000 0.0000 0.5020
  718. peacock                51 161 201   0.2000 0.6300 0.7900
  719. powder_blue           176 224 230   0.6902 0.8784 0.9020
  720. royal_blue             65 105 225   0.2549 0.4118 0.8824
  721. slate_blue            106  90 205   0.4157 0.3529 0.8039
  722. slate_blue_dark        72  61 139   0.2824 0.2392 0.5451
  723. slate_blue_light      132 112 255   0.5176 0.4392 1.0000
  724. slate_blue_medium     123 104 238   0.4824 0.4078 0.9333
  725. sky_blue              135 206 235   0.5294 0.8078 0.9216
  726. sky_blue_deep           0 191 255   0.0000 0.7490 1.0000
  727. sky_blue_light        135 206 250   0.5294 0.8078 0.9804
  728. steel_blue             70 130 180   0.2745 0.5098 0.7059
  729. steel_blue_light      176 196 222   0.6902 0.7686 0.8706
  730. turquoise_blue          0 199 140   0.0000 0.7800 0.5500
  731. ultramarine            18  10 143   0.0700 0.0400 0.5600
  732.  
  733. # Magentas
  734. blue_violet           138  43 226   0.5412 0.1686 0.8863
  735. cobalt_violet_deep    145  33 158   0.5700 0.1300 0.6200
  736. magenta               255   0 255   1.0000 0.0000 1.0000
  737. orchid                218 112 214   0.8549 0.4392 0.8392
  738. orchid_dark           153  50 204   0.6000 0.1961 0.8000
  739. orchid_medium         186  85 211   0.7294 0.3333 0.8275
  740. permanent_red_violet  219  38  69   0.8600 0.1500 0.2700
  741. plum                  221 160 221   0.8667 0.6275 0.8667
  742. purple                160  32 240   0.6275 0.1255 0.9412
  743. purple_medium         147 112 219   0.5765 0.4392 0.8588
  744. ultramarine_violet     92  36 110   0.3600 0.1400 0.4300
  745. violet                143  94 153   0.5600 0.3700 0.6000
  746. violet_dark           148   0 211   0.5804 0.0000 0.8275
  747. violet_red            208  32 144   0.8157 0.1255 0.5647
  748. violet_red_medium     199  21 133   0.7804 0.0824 0.5216
  749. violet_red_pale       219 112 147   0.8588 0.4392 0.5765
  750.  
  751. - --------------------------------------------------------------
  752. Thanks for using Fractint, The Fractals and Fractint Discussion List
  753. Post Message:   fractint@lists.xmission.com
  754. Get Commands:   majordomo@lists.xmission.com "help"
  755. Administrator:  twegner@swbell.net
  756. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  757.  
  758. ------------------------------
  759.  
  760. Date: Sat, 12 Feb 2000 16:02:17 -0500
  761. From: Harry Bissell <harrybissell@prodigy.net>
  762. Subject: Re: (fractint) List of color names with RGB value
  763.  
  764. Maybe not useful but VERY INTERESTING.
  765. Thank you !!!
  766.  
  767. H^)    harry
  768.  
  769. Bob Margolis wrote:
  770.  
  771. > that I found at:
  772. >
  773. > http://www.neutralzone.org/home/faqsys/docs/rgblist.txt
  774. >
  775. > Hope you guys and gals find it useful.
  776. >
  777. > Bob
  778. >
  779. > =8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=
  780. =8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=8D=
  781. =8D=8D=8D=8D=8D=8D=8D
  782. >
  783. > # Whites
  784. > antique_white         250 235 215   0.9804 0.9216 0.8431
  785. > azure                 240 255 255   0.9412 1.0000 1.0000
  786. > bisque                255 228 196   1.0000 0.8941 0.7686
  787. > blanched_almond       255 235 205   1.0000 0.9216 0.8039
  788. > cornsilk              255 248 220   1.0000 0.9725 0.8627
  789. > eggshell              252 230 201   0.9900 0.9000 0.7900
  790. > floral_white          255 250 240   1.0000 0.9804 0.9412
  791. > gainsboro             220 220 220   0.8627 0.8627 0.8627
  792. > ghost_white           248 248 255   0.9725 0.9725 1.0000
  793. > honeydew              240 255 240   0.9412 1.0000 0.9412
  794. > ivory                 255 255 240   1.0000 1.0000 0.9412
  795. > lavender              230 230 250   0.9020 0.9020 0.9804
  796. > lavender_blush        255 240 245   1.0000 0.9412 0.9608
  797. > lemon_chiffon         255 250 205   1.0000 0.9804 0.8039
  798. > linen                 250 240 230   0.9804 0.9412 0.9020
  799. > mint_cream            245 255 250   0.9608 1.0000 0.9804
  800. > misty_rose            255 228 225   1.0000 0.8941 0.8824
  801. > moccasin              255 228 181   1.0000 0.8941 0.7098
  802. > navajo_white          255 222 173   1.0000 0.8706 0.6784
  803. > old_lace              253 245 230   0.9922 0.9608 0.9020
  804. > papaya_whip           255 239 213   1.0000 0.9373 0.8353
  805. > peach_puff            255 218 185   1.0000 0.8549 0.7255
  806. > seashell              255 245 238   1.0000 0.9608 0.9333
  807. > snow                  255 250 250   1.0000 0.9804 0.9804
  808. > thistle               216 191 216   0.8471 0.7490 0.8471
  809. > titanium_white        252 255 240   0.9900 1.0000 0.9400
  810. > wheat                 245 222 179   0.9608 0.8706 0.7020
  811. > white                 255 255 255   1.0000 1.0000 1.0000
  812. > white_smoke           245 245 245   0.9608 0.9608 0.9608
  813. > zinc_white            253 248 255   0.9900 0.9700 1.0000
  814. >
  815. > # Greys
  816. > cold_grey             128 138 135   0.5000 0.5400 0.5300
  817. > dim_grey              105 105 105   0.4118 0.4118 0.4118
  818. > grey                  192 192 192   0.7529 0.7529 0.7529
  819. > light_grey            211 211 211   0.8275 0.8275 0.8275
  820. > slate_grey            112 128 144   0.4392 0.5020 0.5647
  821. > slate_grey_dark        47  79  79   0.1843 0.3098 0.3098
  822. > slate_grey_light      119 136 153   0.4667 0.5333 0.6000
  823. > warm_grey             128 128 105   0.5000 0.5000 0.4100
  824. >
  825. > # Blacks
  826. > black                   0   0   0   0.0000 0.0000 0.0000
  827. > ivory_black            41  36  33   0.1600 0.1400 0.1300
  828. > lamp_black             46  71  59   0.1800 0.2800 0.2300
  829. >
  830. > # Reds
  831. > alizarin_crimson      227  38  54   0.8900 0.1500 0.2100
  832. > brick                 156 102  31   0.6100 0.4000 0.1200
  833. > cadmium_red_deep      227  23  13   0.8900 0.0900 0.0500
  834. > coral                 255 127  80   1.0000 0.4980 0.3137
  835. > coral_light           240 128 128   0.9412 0.5020 0.5020
  836. > deep_pink             255  20 147   1.0000 0.0784 0.5765
  837. > english_red           212  61  26   0.8300 0.2400 0.1000
  838. > firebrick             178  34  34   0.6980 0.1333 0.1333
  839. > geranium_lake         227  18  48   0.8900 0.0700 0.1900
  840. > hot_pink              255 105 180   1.0000 0.4118 0.7059
  841. > indian_red            176  23  31   0.6900 0.0900 0.1200
  842. > light_salmon          255 160 122   1.0000 0.6275 0.4784
  843. > madder_lake_deep      227  46  48   0.8900 0.1800 0.1900
  844. > maroon                176  48  96   0.6902 0.1882 0.3765
  845. > pink                  255 192 203   1.0000 0.7529 0.7961
  846. > pink_light            255 182 193   1.0000 0.7137 0.7569
  847. > raspberry             135  38  87   0.5300 0.1500 0.3400
  848. > red                   255   0   0   1.0000 0.0000 0.0000
  849. > rose_madder           227  54  56   0.8900 0.2100 0.2200
  850. > salmon                250 128 114   0.9804 0.5020 0.4471
  851. > tomato                255  99  71   1.0000 0.3882 0.2784
  852. > venetian_red          212  26  31   0.8300 0.1000 0.1200
  853. >
  854. > # Browns
  855. > beige                 163 148 128   0.6400 0.5800 0.5000
  856. > brown                 128  42  42   0.5000 0.1647 0.1647
  857. > brown_madder          219  41  41   0.8600 0.1600 0.1600
  858. > brown_ochre           135  66  31   0.5300 0.2600 0.1200
  859. > burlywood             222 184 135   0.8706 0.7216 0.5294
  860. > burnt_sienna          138  54  15   0.5400 0.2100 0.0600
  861. > burnt_umber           138  51  36   0.5400 0.2000 0.1400
  862. > chocolate             210 105  30   0.8235 0.4118 0.1176
  863. > deep_ochre            115  61  26   0.4500 0.2400 0.1000
  864. > flesh                 255 125  64   1.0000 0.4900 0.2500
  865. > flesh_ochre           255  87  33   1.0000 0.3400 0.1300
  866. > gold_ochre            199 120  38   0.7800 0.4700 0.1500
  867. > greenish_umber        255  61  13   1.0000 0.2400 0.0500
  868. > khaki                 240 230 140   0.9412 0.9020 0.5490
  869. > khaki_dark            189 183 107   0.7412 0.7176 0.4196
  870. > light_beige           245 245 220   0.9608 0.9608 0.8627
  871. > peru                  205 133  63   0.8039 0.5216 0.2471
  872. > rosy_brown            188 143 143   0.7373 0.5608 0.5608
  873. > raw_sienna            199  97  20   0.7800 0.3800 0.0800
  874. > raw_umber             115  74  18   0.4500 0.2900 0.0700
  875. > sepia                  94  38  18   0.3700 0.1500 0.0700
  876. > sienna                160  82  45   0.6275 0.3216 0.1765
  877. > saddle_brown          139  69  19   0.5451 0.2706 0.0745
  878. > sandy_brown           244 164  96   0.9569 0.6431 0.3765
  879. > tan                   210 180 140   0.8235 0.7059 0.5490
  880. > van_dyke_brown         94  38   5   0.3700 0.1500 0.0200
  881. >
  882. > # Oranges
  883. > cadmium_orange        255  97   3   1.0000 0.3800 0.0100
  884. > cadmium_red_light     255   3  13   1.0000 0.0100 0.0500
  885. > carrot                237 145  33   0.9300 0.5700 0.1300
  886. > dark_orange           255 140   0   1.0000 0.5490 0.0000
  887. > mars_orange           150  69  20   0.5900 0.2700 0.0800
  888. > mars_yellow           227 112  26   0.8900 0.4400 0.1000
  889. > orange                255 128   0   1.0000 0.5000 0.0000
  890. > orange_red            255  69   0   1.0000 0.2706 0.0000
  891. > yellow_ochre          227 130  23   0.8900 0.5100 0.0900
  892. >
  893. > # Yellows
  894. > aureoline_yellow      255 168  36   1.0000 0.6600 0.1400
  895. > banana                227 207  87   0.8900 0.8100 0.3400
  896. > cadmium_lemon         255 227   3   1.0000 0.8900 0.0100
  897. > cadmium_yellow        255 153  18   1.0000 0.6000 0.0700
  898. > cadmium_yellow_light  255 176  15   1.0000 0.6900 0.0600
  899. > gold                  255 215   0   1.0000 0.8431 0.0000
  900. > goldenrod             218 165  32   0.8549 0.6471 0.1255
  901. > goldenrod_dark        184 134  11   0.7216 0.5255 0.0431
  902. > goldenrod_light       250 250 210   0.9804 0.9804 0.8235
  903. > goldenrod_pale        238 232 170   0.9333 0.9098 0.6667
  904. > light_goldenrod       238 221 130   0.9333 0.8667 0.5098
  905. > melon                 227 168 105   0.8900 0.6600 0.4100
  906. > naples_yellow_deep    255 168  18   1.0000 0.6600 0.0700
  907. > yellow                255 255   0   1.0000 1.0000 0.0000
  908. > yellow_light          255 255 224   1.0000 1.0000 0.8784
  909. >
  910. > # Greens
  911. > chartreuse            127 255   0   0.4980 1.0000 0.0000
  912. > chrome_oxide_green    102 128  20   0.4000 0.5000 0.0800
  913. > cinnabar_green         97 179  41   0.3800 0.7000 0.1600
  914. > cobalt_green           61 145  64   0.2400 0.5700 0.2500
  915. > emerald_green           0 201  87   0.0000 0.7900 0.3400
  916. > forest_green           34 139  34   0.1333 0.5451 0.1333
  917. > green                   0 255   0   0.0000 1.0000 0.0000
  918. > green_dark              0 100   0   0.0000 0.3922 0.0000
  919. > green_pale            152 251 152   0.5961 0.9843 0.5961
  920. > green_yellow          173 255  47   0.6784 1.0000 0.1843
  921. > lawn_green            124 252   0   0.4863 0.9882 0.0000
  922. > lime_green             50 205  50   0.1961 0.8039 0.1961
  923. > mint                  189 252 201   0.7400 0.9900 0.7900
  924. > olive                  59  94  43   0.2300 0.3700 0.1700
  925. > olive_drab            107 142  35   0.4196 0.5569 0.1373
  926. > olive_green_dark       85 107  47   0.3333 0.4196 0.1843
  927. > permanent_green        10 201  43   0.0400 0.7900 0.1700
  928. > sap_green              48 128  20   0.1900 0.5000 0.0800
  929. > sea_green              46 139  87   0.1804 0.5451 0.3412
  930. > sea_green_dark        143 188 143   0.5608 0.7373 0.5608
  931. > sea_green_medium       60 179 113   0.2353 0.7020 0.4431
  932. > sea_green_light        32 178 170   0.1255 0.6980 0.6667
  933. > spring_green            0 255 127   0.0000 1.0000 0.4980
  934. > spring_green_medium     0 250 154   0.0000 0.9804 0.6039
  935. > terre_verte            56  94  15   0.2200 0.3700 0.0600
  936. > viridian_light        110 255 112   0.4300 1.0000 0.4400
  937. > yellow_green          154 205  50   0.6039 0.8039 0.1961
  938. >
  939. > # Cyans
  940. > aquamarine            127 255 212   0.4980 1.0000 0.8314
  941. > aquamarine_medium     102 205 170   0.4000 0.8039 0.6667
  942. > cyan                    0 255 255   0.0000 1.0000 1.0000
  943. > cyan_white            224 255 255   0.8784 1.0000 1.0000
  944. > turquoise              64 224 208   0.2510 0.8784 0.8157
  945. > turquoise_dark          0 206 209   0.0000 0.8078 0.8196
  946. > turquoise_medium       72 209 204   0.2824 0.8196 0.8000
  947. > turquoise_pale        175 238 238   0.6863 0.9333 0.9333
  948. >
  949. > # Blues
  950. > alice_blue            240 248 255   0.9412 0.9725 1.0000
  951. > blue                    0   0 255   0.0000 0.0000 1.0000
  952. > blue_light            173 216 230   0.6784 0.8471 0.9020
  953. > blue_medium             0   0 205   0.0000 0.0000 0.8039
  954. > cadet                  95 158 160   0.3725 0.6196 0.6275
  955. > cobalt                 61  89 171   0.2400 0.3500 0.6700
  956. > cornflower            100 149 237   0.3922 0.5843 0.9294
  957. > cerulean                5 184 204   0.0200 0.7200 0.8000
  958. > dodger_blue           30 144 255   0.1176 0.5647 1.0000
  959. > indigo                  8  46  84   0.0300 0.1800 0.3300
  960. > manganese_blue          3 168 158   0.0100 0.6600 0.6200
  961. > midnight_blue          25  25 112   0.0980 0.0980 0.4392
  962. > navy                    0   0 128   0.0000 0.0000 0.5020
  963. > peacock                51 161 201   0.2000 0.6300 0.7900
  964. > powder_blue           176 224 230   0.6902 0.8784 0.9020
  965. > royal_blue             65 105 225   0.2549 0.4118 0.8824
  966. > slate_blue            106  90 205   0.4157 0.3529 0.8039
  967. > slate_blue_dark        72  61 139   0.2824 0.2392 0.5451
  968. > slate_blue_light      132 112 255   0.5176 0.4392 1.0000
  969. > slate_blue_medium     123 104 238   0.4824 0.4078 0.9333
  970. > sky_blue              135 206 235   0.5294 0.8078 0.9216
  971. > sky_blue_deep           0 191 255   0.0000 0.7490 1.0000
  972. > sky_blue_light        135 206 250   0.5294 0.8078 0.9804
  973. > steel_blue             70 130 180   0.2745 0.5098 0.7059
  974. > steel_blue_light      176 196 222   0.6902 0.7686 0.8706
  975. > turquoise_blue          0 199 140   0.0000 0.7800 0.5500
  976. > ultramarine            18  10 143   0.0700 0.0400 0.5600
  977. >
  978. > # Magentas
  979. > blue_violet           138  43 226   0.5412 0.1686 0.8863
  980. > cobalt_violet_deep    145  33 158   0.5700 0.1300 0.6200
  981. > magenta               255   0 255   1.0000 0.0000 1.0000
  982. > orchid                218 112 214   0.8549 0.4392 0.8392
  983. > orchid_dark           153  50 204   0.6000 0.1961 0.8000
  984. > orchid_medium         186  85 211   0.7294 0.3333 0.8275
  985. > permanent_red_violet  219  38  69   0.8600 0.1500 0.2700
  986. > plum                  221 160 221   0.8667 0.6275 0.8667
  987. > purple                160  32 240   0.6275 0.1255 0.9412
  988. > purple_medium         147 112 219   0.5765 0.4392 0.8588
  989. > ultramarine_violet     92  36 110   0.3600 0.1400 0.4300
  990. > violet                143  94 153   0.5600 0.3700 0.6000
  991. > violet_dark           148   0 211   0.5804 0.0000 0.8275
  992. > violet_red            208  32 144   0.8157 0.1255 0.5647
  993. > violet_red_medium     199  21 133   0.7804 0.0824 0.5216
  994. > violet_red_pale       219 112 147   0.8588 0.4392 0.5765
  995. >
  996. > --------------------------------------------------------------
  997. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  998. > Post Message:   fractint@lists.xmission.com
  999. > Get Commands:   majordomo@lists.xmission.com "help"
  1000. > Administrator:  twegner@swbell.net
  1001. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1002.  
  1003.  
  1004. - --------------------------------------------------------------
  1005. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1006. Post Message:   fractint@lists.xmission.com
  1007. Get Commands:   majordomo@lists.xmission.com "help"
  1008. Administrator:  twegner@swbell.net
  1009. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1010.  
  1011. ------------------------------
  1012.  
  1013. End of fractint-digest V1 #446
  1014. ******************************
  1015.  
  1016.