xxxxxxxxxx
18
function setup( ){
createCanvas(800,450);
}
function draw( ){
background(255, 247, 0);
for(x=0;x<=width;x=x+40){
for(var y= 0;y<=height;y=y+40){
fill(252, 187, 35) // gold
rect(x,y,20,40)
fill(28, 176, 51); // green
ellipse(x,y,35,35);
strokeWeight(0)
fill(19, 235, 55); // lime
ellipse(x,y,20,20)
}
}
}