xxxxxxxxxx
29
//Recreation of Mark Rothko's Untitled (Blue?)
function setup() {
createCanvas(400, 500);
}
function draw() {
background("#14379B");
rectMode(CENTER)
//Top Rectangle
noStroke()
fill("Navy")
rect(200, 120, 365, 200)
//Center Rectangle
fill("RoyalBlue")
rect(200, 265, 365, 65)
//Bottom Rectangle
fill("MidnightBlue")
rect(200, 400, 365, 175)
}
function mousePressed(){
save("blueonblue.png")
}