Pookkalam by Swaroop

Code

shape = ellipse(w=250, h=150, fill="yellow", stroke="orange", stroke_width=5)|repeat(120, rotate(5))
shape2 = ellipse(h=250, w=150, fill="darkorange", stroke="yellow")|repeat(19, rotate(5))

shape3 = ellipse(w=250, h=50, fill="yellow",stroke="orange")|repeat(19, rotate(5))
shape4 = ellipse(h=50, w=50, fill="darkorange")|repeat(19, rotate(5))

circle1 = circle(r =75, fill = "#ff6600",stroke_width=25, stroke="green")
circle2 = circle(r =50, fill = "#d04366",stroke_width=0)

shape5 = ellipse(w=165, h=50, stroke="#e75480",stroke_width=10, a=0.1)|repeat(5, rotate(45))
shape6 = ellipse(w=165, h=50, stroke="#800080",stroke_width=10, a=0.1)|repeat(5, rotate(90))

shape7 = ellipse(w=165, h=50, stroke="darkorange",stroke_width=10, a=0.1)|repeat(5, rotate(45))
circle3 = circle(r =20, fill = "#C30F16",stroke_width=0)

show(shape,shape2, shape3, shape4, circle1, shape5,shape6, circle2, shape7,circle3)