xxxxxxxxxx
18
function setup() {
createCanvas(400, 400);
background(255,255,100);
}
function draw() {
rectMode(CENTER);
blendMode(OVERLAY);
strokeWeight(100);
stroke(220,100,200);
line (0,0,400,400);
stroke(110,200,100);
line(400,0,0,400);
strokeWeight(50);
stroke(32, 73, 140);
fill(219, 107, 70);
rect(200,200,100,100);
}