What ever you pick, you have a potential problem. It is the same one that
causes programs that require 256 colors to not work if the display is set
for more than 256 colors. In 256 color mode, Windows uses a color pallet
that can be changed. You will notice this if you open two pictures with
different pallets then click back and forth between them, changing which one
is the active window. The one in the active window will look ok, the other
won't. To work around this, I recommend that you actually stick with the
basic 16 colors.
Of course, the following 8 colors should work without a problem:
vbBlack 0x0
vbRed 0xFF
vbGreen 0xFF00
vbYellow 0xFFFF
vbBlue 0xFF0000
vbMagenta 0xFF00FF
vbCyan 0xFFFF00
vbWhite 0xFFFFFF
These are the VBA constants and their Hex equivelants (from the Help file).
Their RGB equivelants would be:
0,0,0
255,0,0
0,255,0
255,255,0
0,0,255
255,0,255
0,255,255
255,255,255
I believe the next 7 can be found by replacing 255 with 128. If you open the
color picker in the Advanced view, you can enter these numbers for Red,
Green, and Blue then see what number it gives you in the property box when
you click ok.