xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(146, 185, 189);
colors='96BBBB-618985-414535-f2e3bc-c1987-db7f67-dbbea1-a37b73-3f292b'.split('-').map(a=>'#'+a)
}
function draw() {
datle=random(-50,50)
translate(width/2,height/2)
rotate(frameCount+datle)
translate(frameCount+datle,0)
// scale(1/log(frameCount)*3)
noStroke()
rect(0, 0, 5+datle, 100);{
fill(colors[frameCount%colors.length])
}
}