xxxxxxxxxx
90
//RECREATION OF WASSILY KANDINSKY
function setup() {
createCanvas(500, 320);
}
function draw() {
background(220);
//top boxes
noStroke()
fill(10, 10, 51)
square(0,0, 160);
fill(107, 51, 106)
square(160, 0, 160);
fill(56, 56, 71)
square(320, 0, 160);
//lower boxes
fill(232, 186, 4)
square(0,160, 160);
fill(56, 148, 125)
square(160, 160, 160);
fill(168, 36, 36)
square(320, 160, 160)
// top circles
fill(168, 36, 36)
circle(75,80, 100)
fill(0, 41, 102)
circle(245,80, 100)
fill(179, 143, 0)
circle(400,80, 100)
// bottom circles
fill(62, 116, 89)
circle(80,250, 100)
fill(255, 255, 255)
circle(245,250, 100)
fill(179, 89, 0)
circle(400,250, 100)
}