they aren't coded
the numbers are R G B A (red, green blue, transparency), so 0.900 0.000 0.000 1.000 means not entirely red, and not transparent
DIV is a divider for each row of paint colors
Help with numbers:
1 0 0 1 red
1 1 0 1 yellow
0 1 0 1 green
0 0 1 1 Blue
0 1 1 1 cyan
1 0 1 1 pink
1 1 1 1 white
0 0 0 1 black
0 0 0 0 invisible (no opacity)
1 1 1 0 invisible (no opacity)
1 0 0 0.5 Transparent red
0 1 0 0.5 transparent Green
etc
there is a max amount of colors (64 i think)
PLENTY of colors here:
http://web.njit.edu/~kevin/rgb.txt.htmlthey are in hexdecimal,to convert to 0-1 colors, use:
echo(vectorScale("R G B",1/255)); Replace R with red, G with green ...
to get the color, don't put this in paint setopacity is still required