Placebo Post!

dani_firstsketch

function setup() {
    createCanvas(200, 200);
    background(120, 100, 200);
}

function draw() {
	background(120, 100, 200);
	//inside color
	fill(200, 100, 250)
	//border color
	stroke(120, 200, 200)
	ellipse(mouseX, mouseY, 50, 50);
}

Leave a Reply