xxxxxxxxxx
15
function setup() {
createCanvas(300, 300);
}
function draw() {
background(220);
let myColor1 = color(179, 255, 222);
background(myColor1);
let myColor2 = color(238, 209, 255);
fill(myColor2);
rect(100, 100, 100, 100);
}