xxxxxxxxxx
34
function setup() {
createCanvas(400, 600);
background(255,255,255);
noStroke();
}
function draw() {
fill('#665a44')
rect(0,0,200,50);
fill('#705aff');
rect(0,50,200,50);
fill('#72c83d');
rect(0,100,200,50);
fill('#73c8c8');
rect(0,150,200,50);
fill('#7900f2');
rect(0,200,200,50);
fill('#740065');
rect(0,250,200,50);
fill('#680000');
rect(0,300,200,50);
fill('#6aff00');
rect(0,350,200,50);
fill('#616161'); // RGB: (102, 90, 68)
rect(0,400,200,50);
}