xxxxxxxxxx
let c = ['#f2f2f2', '#7f7f7f', '#595959', '#e94f37'];
function setup() {
createCanvas(windowWidth, windowHeight);
background(200);
}
function draw() {
frameRate(1.5);
// fill( random(0,255) , random(0,255), random(0,255));
fill(random(c));
// Fontはお好みで!
// textFont('Herculanum');
textFont('Andale Mono');
textSize(random(1, 150));
textAlign(CENTER);
text(int(random(10)), random(width), random(height));
}