Pookkalam by Fathima sona

Code

fill=color(r=94,g=0,b=86)
c=circle(r=150,fill=fill)
show(c)

r1=rectangle(w=210,h=210,fill="#d10000",stroke="none")|repeat(4,rotate(30))
r2=rectangle(x=0,y=0,w=170,h=170,fill="#fc6e08",stroke="none")| rotate(15)
r3= r2|repeat(5,rotate(30))
r4=rectangle(w=140,h=140,fill="#edd900",stroke="none")|repeat(4,rotate(30))
r5=rectangle(x=0,y=0,w=115,h=115,fill="#f5f3f2",stroke="none")| rotate(15)
r6= r5|repeat(5,rotate(30))
show(r1,r2,r3,r4,r5,r6)

c1=circle(r=62,fill="red",stroke="none") + circle(r=55,fill="green",stroke="none")
show(c1)

r1=rectangle(x=20,y=20,w=38,h=38,fill="#f5f3f2",stroke="none")|rotate (45)
r2=rectangle(x=20,y=20,w=38,h=38,fill="#5e0056",stroke="none")
r3=rectangle(x=20,y=20,w=38,h=38,fill="#f5f3f2",stroke="none")|rotate (315)
r4=rectangle(x=20,y=20,w=38,h=38,fill="#5e0056",stroke="none")|rotate (270)
r5=rectangle(x=20,y=20,w=38,h=38,fill="#f5f3f2",stroke="none")|rotate (225)
r6=rectangle(x=20,y=20,w=38,h=38,fill="#5e0056",stroke="none")|rotate (180)
r7=rectangle(x=20,y=20,w=38,h=38,fill="#f5f3f2",stroke="none")|rotate (135)
r8=rectangle(x=20,y=20,w=38,h=38,fill="#5e0056",stroke="none")|rotate (90)
show(r1,r2,r3,r4,r5,r6,r7,r8)

p3=point(x=0,y=55)
p4=point(x=-27,y=27)
p5=point(x=0,y=0)
p=polygon([p3,p4,p5],fill="white",stroke="none" )
show(p)

c=circle(r=3,fill="red",stroke="none")
show(c)