Color table
Overview
Below you find a colortable with 216 different colors in different variations. It should give you an overview of possible colors and facilitate you when choosing the color for your graphics, texts, backgrounds etc. The color is indicated as HEX number!
The color values of the table below are displayed in the usable RGB format (red, green, blue). For example the blue color in the top-right corner means the hex value '$0000FF', where the two 'FF' mark the full blue part.
At all PureBasic commands expecting a color value, you have two possibilities:
1.) Submit the displayed hex values - splitted in their three color parts - in the order (R)ed, (G)reen and (B)lue with the command RGB():Plot(0, 0, RGB($00,$00,$FF))2.) submit the color value as whole value - but then the red and blue parts must be swapped, i.e. the color submitted in the BGR format. Out blue color will be used then this way:Plot(0, 0, $FF0000))Tip for advanced users: RGB single values will be calculated to a total color value like following: Color = R + G*256 + B*65536