xxxxxxxxxx
47
let row;
function setup() {
createCanvas(400, 400);
frameRate(4);
colorMode(HSB, 360, 100, 100, 100);
//textFont('VT323');
//textFont('Space Mono')
//textFont('Cousine')
textFont('Major Mono Display')
row = width*.5
}
function draw() {
//background(300, 100, 100);
background(30)
rectMode(CENTER)
noStroke();
fill(280, 100, 100);
rect(width/2, height*.75, width, height*.6)
for (let i = 0; i < 100; i++){
noStroke()
fill(random(255), random(100), random(100))
rect(random(width), random(0, height*.6), random(100), random(10));
textSize(250);
stroke(0)
strokeWeight(3)
textAlign(CENTER)
fill(90, 100, 100);
//textFont('VT323');
text('MA', width*.5, height/2)
//textFont('Cousine')
textSize(40);
//textAlign(LEFT);
//fill(50, 100, 100);
fill(10)
text('Digital Art', row, height*.65);
text('Design &', row, height*.8)
text('Cultures', row, height*.95)
if (frameCount%2==0){
// filter(INVERT);
}
}
}