Code
f1=color(r=305, g=0, b=150)
c1 = ellipse(w=40,h=200, fill=f1, stroke="brown") |repeat(30, rotate(20))
c2=circle(r=100, fill="yellow", stroke=" brown")
f2=color(r=225, g=0, b=100)
c3=ellipse(w=100, h=250, fill=f2) |repeat(10, rotate(30))
f3=color(r=225, g=150, b=150)
c4=rectangle(w=30, h=30, fill=f3) |repeat(60,rotate(20) |scale(0.9))
c5=rectangle(w=60, h=60, fill="pink") |repeat(20,rotate(20) |scale(0.9))
c6=circle(r=100, fill="green") |repeat(144, rotate(10) |scale(0.97))
f4=color(r=0, g=150, b=150)
c7=ellipse(w=10,h=300, fill=f4) |repeat(30, rotate(20))
c8=ellipse(w=15, h=150, fill=f4) |repeat(30, rotate(20))
c9=circle(x=100, y=0, r=40, fill="yellow") |repeat(150, rotate(30) |scale(1))
f5=color(r=500, g=200, b=30)
c10=circle(x=50, y=0, r=30, fill=f5) |repeat(150, rotate(30) |scale(1) )
show(c9,c7,c3,c6, c1,c10, c8, c5, c4)