Draw A circular Shape in Java Processing With color

void setup()
{
size(480,200);
smooth();
strokeWeight(20);
background(110);
fill(255,0,0);
ellipse(75, 60, 90, 90);

// Stroke

}