Pookkalam by Dona Johnson

Code

color_orange=color(r=255,g=140,b=0)
color_red=color(r=256,g=20,b=50)
c=circle(r=150,stroke='green',stroke_width=3)
shape = rectangle(x=143, y=0, w=15,h=30,fill='brown') | repeat(40, rotate(12))
shape2=rectangle(x=129,y=0,w=15,h=30,fill='orange')|repeat(28,rotate(13.35))
shape3=rectangle(x=115,y=0,w=15,h=30,fill='yellow')|repeat(24,rotate(15))
shape4=rectangle(x=101,y=0,w=15,h=30,fill='white')|repeat(21,rotate(17.15))
c2=circle(r=92,stroke='green',stroke_width=6,fill='black')
square= rectangle(h=125,w=125,fill=color_red)|repeat(12,rotate(30))
c3=circle(r=64.5,stroke_width=5,fill='white')
c4=circle(r=32.25,x=32.25,fill='gold')|rotate(30)|repeat(2,rotate(180))
c5=circle(r=32.25,x=32.25,fill='yellow')|rotate(90)|repeat(2,rotate(180))
c6=c4+c5
c7=circle(r=32.25,x=32.25,fill=color_orange)|rotate(150)|repeat(2,rotate(180))
center=circle(r=44.5,stroke_width=5,fill='white',stroke='black')
ell=ellipse(h=20,w=88,fill='sandybrown')|repeat(8,rotate(45))
c35=circle(r=15,fill='brown')
c33=circle(r=12,fill='orange')
c34=circle(r=9,fill='yellow')
c32=circle(r=4,fill='lightyellow')
c31=circle(r=1.5,fill='red')
show(c,shape)
show(shape2)
show(shape3)
show(shape4)

show(c3,c2,square)
show(c6)
show(c7,center)
show(ell,c35)
show(c33,c34,c32)
show(c31)