Pookkalam by A Revathi

Code

f=color(r=255,g=0,b=0)
c1=ellipse(w=200,h=100,fill=f,stroke="yellow",stroke_width=2)|repeat(70,rotate(250)|scale(0.9))
c2 = circle(r=10,fill="blue")
c3=circle(r=20,fill="brown",stroke="none")|repeat(20,rotate(50)|scale(0.7))
c4=rectangle(w=165,h=165,fill="pink")|repeat(170,rotate(150)|scale(0.9))
c6=circle(r=150,fill="#d5ed00",stroke="none")
show(c6,c4,c1,c3,c2)
x,y=0,0
r=150
for i in range(5):
    c = circle(x=x,y=y,r=r)
    show(c)
    r=r-10