xxxxxxxxxx
17
function setup() {
setAttributes('antialias', true);
createCanvas(windowWidth, windowHeight);
textAlign(CENTER, CENTER);
textSize(120);
textStyle(BOLD);
strokeJoin(ROUND);
colorMode(HSB, 360, 100, 100, 100);
background(0);
let msg = "HELLO!";
for (let i=10; i >= 0; i--) {
fill(0,0,100)
stroke(i*100%360, 100, 100, 100);
strokeWeight(i*10);
text(msg, width/2, height/2);
}
}