p5((s) => {
s.setup = function () {
s.createCanvas(width, height);
};
s.draw = function () {
s.background(250);
s.strokeWeight(5)
for (let line = 0; line <= width; line += 30) {
if (line % 60 == 0) {
s.stroke('lime');
} else {
if (s.second() % 2 == 0) {
s.stroke('tomato');
} else {
s.stroke('cornflowerblue');
}
}
s.line(line, 0, line, height);
}
};
})