Joel, that doesn't help make same-shade colours light to dark. As I
mentioned, need RGB to HSL to RGB with 20 increments of L but not near 0 or
1
Regards,
Peter T
"joel" wrote in message
...
Pick 20 different shade in the macro. Don't use colorindex, instead
select more colors. Convert the shades to hexidecimal to help you get
the inbetween shades
MyColor = 10053375
RedShade = int(MyColor/(256*256))
GreenShade = int(MyColor/256) mod 256
BlueShade = MyColor Mod 256
--
joel
------------------------------------------------------------------------
joel's Profile: http://www.thecodecage.com/forumz/member.php?u=229
View this thread:
http://www.thecodecage.com/forumz/sh...d.php?t=198482
http://www.thecodecage.com/forumz