xxxxxxxxxx
26
let colors = ["#222d41", "#90bdca", "#f9b917", "#e5f1da", "#7a1f5a"];
function setup() {
createCanvas(400, 500);
textSize(15);
}
function draw() {
background(220);
noStroke();
for (let i = 0; i < colors.length; i++) {
// The i value is used for index values and y position values.
let x = 0;
let y = i * 100;
fill(colors[i]);
rect(x, y, width, 100);
fill(255);
text(colors[i], x + 15, y + 30);
}
noLoop();
}