xxxxxxxxxx
30
let firstFont;
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
blendMode(SCREEN);
}
function preload() {
firstFont = loadFont('SuisseIntlMonoTrial-Regular.otf');
}
function draw() {
background(0);
noLoop();
textFont(firstFont);
textSize(100);
let textW = textWidth("CRUSH");
fill(80, 150, 255);
text("CRUSH", (width - textW) / 2, height / 2);
push();
translate(350, 160);
rotate(180);
fill(255, 50, 50);
text("CRUSH", 0, 0);
pop();
}