xxxxxxxxxx
17
x = 255;
y=0;
function setup() {
createCanvas(400, 400);
background(220);
}
function draw() {
fill(x);
ellipse(mouseX, mouseY, 100, 100);
if (mouseIsPressed) {
stroke(255,100,200);
} else {
stroke(237, 34, 93);
}
}