Pookkalam by ARATHY

Code

a1=color(r=4,g=71,b=6)
a2 = color(r=234, g=242 , b=19, a=.5)
c3 = circle(r=150, fill=a1)
show(c3)
c2 = rectangle(w=200, h=200, fill=a2) | repeat(10,  rotate(10)) 
show(c2)
c = circle(r=90,fill="#FFA500", stroke=a1, stroke_width=8)
show(c)
z = ellipse(w=170,h=50,fill="maroon"  )|repeat(6, rotate(45))
show(z)
z1 = ellipse(w=140,h=30,fill="white" )|repeat(6, rotate(45))
show(z1)
c = circle(r=40, stroke=a1, stroke_width=4,fill="yellow" )
show(c)
c4 = circle(r=20,fill="maroon", stroke=a1, stroke_width=4)
show(c4)
z1=rectangle(h=20,w=15,fill="yellow",stroke="none")|repeat(20,rotate(30))|scale(1.5)
z2=rectangle(h=20,w=15,fill="#5b043b",stroke="none")|repeat(20,rotate(30))|scale(1.1)
show(z1,z2)