xxxxxxxxxx
function setup() {
createCanvas(600, 600);
background("#f0d8a8");
}
function draw() {
fill("#f8ca00")
rect(0, 0, 300, 300)
fill("#1c140d")
rect(300, 0, 300, 600)
fill("#1c140d")
rect(0, 300, 300, 600)
fill("#f8ca00")
rect(300, 300, 600, 600)
}