function setup() { createCanvas(600,600); background(0); } function draw() { translate(150,200); fill(255,230,230); textSize(32); text("de la textualité", 10, 30); fill(0, 102, 153); text("à l'oeuvre", 10, 60); }