For Count =1to100 Shade[Count] = MakeColor (Random(0,255),Random(0,255),Random(0,255)) Next Count
`Or this method to make a sequential color set.
Dim Shade[255]
For Count =0to255 Shade[Count] = MakeColor (Count,Count,Count) Next Count
`For 16 Million Colors
Dim Shade[16581375] Count =0
For CountRed =0to255 For CountGrn =0to255 For CountBlu =0to255 Shade[Count] = MakeColor (CountRed,CountGrn,CountBlu) Inc Count Next CountBlu Next CountGrn Next CountRed