Pookkalam by AksharaSunil

Code

s1 = rectangle(x=0,w=55, h=55,fill="green")
s2 = s1 | rotate(45)
s3 = rectangle(x=0,w=35,h=35,fill="black")
s4 = s3 | rotate(45)
c1 = circle(r=10,fill="yellow")
c2 = circle(r=50,stroke="orange",stroke_width=15)
c3 = circle(r=90,stroke="pink",stroke_width=15)
r1 = circle(x=75,y=0,r=20,fill="light")| repeat (36,rotate (10))
c4 = circle(r=130,stroke="red",stroke_width=25)
c5 = circle(x=125,y=0,r=12,fill="navy") | repeat(36,rotate(10))
c6 = circle(r=110,stroke="green", stroke_width=15)
c7 = circle(r=75,stroke="purple",stroke_width=15)
shape = combine([s1,s2,s3,s4,c1,c2,c3,c4,c5,c6,c7,r1])
show(shape)