xxxxxxxxxx
32
/*
Recreation of Mark Rothko's No. 61 "Rust and Blue"
Link: https://www.moca.org/collection/work/no-61-rust-and-blue-brown-blue-brown-on-blue
*/
function setup() {
createCanvas(230, 300);
}
function draw() {
background("#243D85");
//Bottom Rect
noStroke();
fill("#273249");
rect(15, 155, 200, 130, 5);
//Middle Rect
noStroke();
fill("#2e519c");
rect(13, 110, 206, 64, 5);
//Top Rect
noStroke();
fill("#341b27");
rect(13, 5, 207, 103, 3);
}
function mousePressed(){
save("rustandblue.png")
}