Pookkalam by Ragendhu K P

Code

c = circle(r=146,fill="#ED1C24")
c1 = circle(r=126,fill="#F9ED32")
c2 = circle(r=136,fill="#FBB040")
c3 = circle(r=116,fill="#F15A29")
outer= combine([c,c2,c1,c3])
show(outer)

z = color(r=255, g=255, b=255, a=0.2)
c4= circle (r=43, x = 78, y = -75, fill = z, stroke = "black" ,stroke_width=1.5) | repeat (7,rotate (51.1) )
e = ellipse(w=234, h=50, fill="#871628", stroke="none") | repeat(18, rotate(20))
show(c4,e)

c = circle(r=100,fill="#FFFFFF")
c1 = circle(r=90,fill="#F9ED32")
c2 = circle(r=80,fill="#FBB040")
c3 = circle(r=70,fill="#F15A29")
c4 = circle(r=60,fill="#ED1C24")
c5 = circle(r=50,fill="#9C1C24")
inner= combine([c,c1,c2,c3,c4,c5])
show(inner)

e2 = ellipse(w=88, h=20, fill="#9C1C24", stroke="#FFFFFF",stroke_width=2)
show(e2)

e1 = ellipse(x=-5,y=33,w=50, h=19, fill="#e8901e", stroke="none") | rotate(20)
e = ellipse(x=-5,y=30,w=52, h=15, fill="#9e6d2d", stroke="none") | rotate(20)
z = line(x1=-15, y1=28, x2=25, y2=-25,stroke="#e8901e",stroke_width=4)
c = circle(x=-14,y=25,r=5,fill="#e8901e",stroke="none")
show(e1,e,z,c)

p1=point(x=-10,y=16)
p2=point(x=-30,y=10)
p3=point(x=-30,y=-10)
p4=point(x=-10,y=-10)
p5=point(x=-5,y=-14)
p6=point(x=0,y=-16)
p7=point(x=5,y=-14)
p8=point(x=10,y=-10)
p9=point(x=30,y=-10)
p10=point(x=30,y=10)
p11=point(x=10,y=16)
k = polygon([p1,p2,p3,p4,p5,p6,p7,p8,p9,p10,p11],fill = "#00FFFF",stroke="white",stroke_width=4)
show(k)