//Phuong Diep - Problem Set 1, Question #4 void setup() { size(400, 400); smooth(); } void draw() { background(51); fill(163, 213, 201); rect(0, 0, mouseX, 50); fill(205, 213, 163); rect(mouseX, 175, 400, 50); fill(213, 163, 164); rect(0, 350, mouseX, 50); }