xxxxxxxxxx
23
/*
//color values examples
*/
function setup() {
createCanvas(600, 400);
colorMode(RGB)
}
function draw() {
background(220);
//set fill color
fill (148, 7, 0)
// set stroke, outline color
stroke (300,0,0); // red, green, blue, alpha
square(200,0,50); // big square
square(200,220,100); // medium square
fill (132, 6, 161)
square(200,0,200); // small square
fill (7, 43, 163)
circle(90,25,200); // small circle
}