Pookkalam by Ankit

Code

outermain = circle(r=150, fill="#7B113A",stroke="white")
show(outermain)
c1=rectangle (w=190,h=200,fill="#FDE49C", stroke="F7FD04") | repeat (100,rotate(80))
show(c1)
#c2=rectangle (w=115,h=150,fill="#FF6B6B", stroke="#5F7A61") | repeat (115,rotate(99))
#show(c2)
c7 = circle(r=125, fill="#b8a9c9",)
show(c7)
c3=ellipse(w=245, h=150, stroke="green") | repeat (50,rotate(50))
show(c3)

c6 = circle(r=75, fill="#F05945",)
c4 = circle(r=65, fill="yellow",)
c5 = circle(r=55, fill="pink",)
show(c6,c4,c5)
s = rectangle(x=50, y=0, w=25, h=25)
s = circle(x=45, y=0, r=10)
s1 = s | repeat(20, scale(0.7))
s2 = s1 | repeat(36, rotate(10))
show(s2)