xxxxxxxxxx
18
function drawSwatch(colorName, x, y, size){
textSize(28)
textAlign(LEFT, CENTER)
fill(0)
text(colorName, x + size + 10, y + size/2)
fill(colorName)
square(x, y, size)
}
function setup() {
createCanvas(400, 400);
drawSwatch('red', 100, 100, 40)
drawSwatch('orange', 100, 150, 40)
drawSwatch('green', 100, 200, 40)
}