fill();
Set the fill color for shapes.
fill(r, g, b);
Arguments
r
The red byteg
The green byteb
The blue byte fill(100, 255, 100);
fill(r, g, b, a);
Arguments
r
The red byteg
The green byteb
The blue bytea
The alpha byte fill(100, 255, 100, 150);
fill(v);
Arguments
v
The grayscale value fill(100);
fill(color_name);
Arguments
color_name
The color name fill('yellow');
fill(hex);
Arguments
hex
The hex color string fill('#88EE66');