Emily’s Fun Code

code

function setup() {
    createCanvas(200, 200);
    background(220, 300, 30);
}

function draw() {
	background(220, 300, 30)
	//inside color
	fill(0, 200, 255);
	//border color
	stroke(20, 170, 60);
	ellipse(mouseX, mouseY, 50, 50);
}

Leave a Reply