xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(100,50,20,100);
for(let x = 0; x < width; x = x+20){
stroke(128,map(x,0,width,0,255),map(x,0,width,0,255))
line(x,0,mouseX,mouseY)
}
}