xxxxxxxxxx
40
function setup() {
createCanvas(600, 400);
}
function draw() {
background(0, 255, 255);
var s = "hello";
var v = "BITCH I HOPE YOU DO"
var t = "wrowowow"
var c = color("mint")
textSize(40);
fill(256, 5, 90);
text("its britney bitch",200,300);
textSize(20);
fill(c);
text("THIS IS AN UWU SAFE ZONE",240,140); //die
textSize(40);
fill(90, 3, 245);
text(v,60,70, [100], [45]);
stroke(0);
line(390,20, 165,155);
stroke(230, 7, 164);
line(300,256, 185,15);
stroke(255, 200, 50);
line(500,147, 185,18);
fill(255, 175, 81, 95);
ellipse(460, 189, 67, 47);
fill (255, 150, 145);
rect(530, 240, 176, 55);
rect(300, 200, 67, 56, 8);
}