Pookkalam by Navaneeth K U

Code

shape9 = line(stroke="IVORY", stroke_width=5) | repeat(30, rotate(10)|scale(1))
c1 = circle(r=100, fill="#231f20")
c2 = circle(r=150, fill="#231f20")
c3 = circle(r=23, fill="#013220", stroke="none")
c4 = circle(r=9, fill="black")
p1 = point(x=-90, y=-45)
p2 = point(x=90, y=-45)
p3 = point(x=0, y=100)
s1 = ellipse(w=80, h=50, fill="ivory", stroke="black", stroke_width="5")
shape2 = polygon([p1, p2, p3], fill="#d2dfb4")
c9 = rectangle(w=200,h=200, fill="#d2dfb4", stroke="", stroke_width=1)| repeat(200, rotate(100))
show(c2)
show(c9)      
show(c1)
show(shape9)
show(shape2)
show(s1)
show(c3,c4)