This article will show you the various colours formats in Processing and the ways in which they can be used.
color(r, g, b);
color(r, g, b, alpha);
color(gray);
color(gray, alpha);
color(h, s, l); //The mode must be HSB. You can change this using colorMode.
ParametersDetailsrIs the red o...