xxxxxxxxxx
let font
const textList = ["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"]
function preload() {
font = loadFont("YUMINDB.TTF")
}
function setup() {
createCanvas(windowWidth, windowHeight)
textFont(font)
background(255)
for(let i=0; i<30; i++){
fill(0, 0, 0, random(30))
let size = random(20, 500)
textSize(size)
let t = random(textList)
text(random()>0.5?t.toUpperCase():t, random(0, windowWidth), random(0, windowHeight) + size / 2)
}
fill(0)
textSize(100)
textAlign(CENTER)
text("BEAUTIFULL TYPOGRAPHIES", windowWidth / 2, windowHeight / 2)
}