xxxxxxxxxx
17
function setup() {
createCanvas(950, 1150);
}
function draw() {
//fo background in rgb remember to close the expression ''
background('rgb(255,6,6)');
fill(249,202,6);
ellipse (475,450,880,300);
fill(138,39,242);
ellipse (475,525,880,300);
fill(249,202,6);
ellipse (475,600,880,300);
}