xxxxxxxxxx
24
function setup() {
createCanvas(575, 200);
}
function draw() {
background(220);
strokeWeight(10)
//CODE ALONG!
rect(200,20,150,25)
//YOUR TASK
//Give each rectangle a colorful fill() and stroke(). You can google 'color picker' and use the one that comes up, or search 'adobe color picker' to try and create a matched palette. Use the 3 numbers for RGB!
rect(50,100,75,75)
rect(150,100,75,75)
rect(250,100,75,75)
rect(350,100,75,75)
rect(450,100,75,75)
}