Pookkalam by Nima Bindu

Code

c = circle(x=0 , y=0, r=125,fill="#1E8449",stroke="#25251E",stroke_width=2.5)
show(c)
r = rectangle(w=175,h=175,fill="#F4D03F",stroke="none")
show(r)
p1 = point(x=-125,y=0)
p2 = point(x=0,y=125)
p3 = point(x=125,y=0)
p4 = point(x=0,y=-125)
r1 = polygon([p1,p2,p3,p4] ,fill="#F4D03F",stroke="none")
show(r1)
c2 = circle(x=0,y=50,r=50,fill="#EC4C4C",stroke="none")
c3 = circle(x=-50,y=0,r=50,fill="#EC4C4C",stroke="#E67E22")
c4 = circle(x=0,y=-50,r=50,fill="#EC4C4C",stroke="none")
c5 = circle(x=50,y=0,r=50,fill="#EC4C4C",stroke="none")
show(c2,c3,c4,c5)
c6 = circle(x=0,y=0,r=65,fill="#FBFCFC",stroke="none")
show(c6)
e1 = ellipse(x=0, y=0, w=20, h=130,fill="#9B00FF",stroke="none")
p = (e1 | repeat(15,rotate(30)))
show(p)
c7 = circle(x=0,y=20,r=15,fill="#D8D725",stroke="none")|repeat(6,rotate(60))
show(c7)
c8 = circle(x=0,y=0,r=15,fill="pink",stroke="purple",stroke_width =3)
show(c8)
c9 = circle(x=0,y=0,r=8,fill="purple",stroke="black",stroke_width=2)
show(c9)