The Color matrix - a matrix to specify colors

[[ red_value, green_value, blue_value ] ... ]


This form of a matrix is used to specify colors, there is no limit of the rows,
but most functions will only use the first.

red_value, green_value and blue_value should be real values (imaginary part will be ignored), zero means off and one means fully set. Values below zero and above one will be truncated.


Examples
Black [[ 0, 0, 0 ]]
Gray [[ .6, .6, .6 ]]
White [[ 1, 1, 1 ]]
Green [[ 0, 1, 0 ]]
Purple [[ .65, 0, 1 ]]