Pookkalam by Anna Rose Bijoy

Code

c = circle()
show(c)
e=ellipse(w=300,h=45,fill="yellow")
e1=e|repeat(100,rotate(8))
show(e1)
c = circle(x=85, y=0, r=50,fill="red")| repeat(20, rotate(30))
show(c)
last_ellipse = ellipse(w=250,h=42,fill='#FF6700',stroke='none')
e2=last_ellipse|repeat(100,rotate(10))
a1 = rectangle(h=155,w=140,fill='#C12283',stroke='none') | rotate(5) | repeat(10,rotate(20))
a2 = rectangle(h=170,w=160,fill="64E986",stroke='none') | repeat(10,rotate(20))
a3 = rectangle(h=160,w=150,fill='#800517',stroke='none') | rotate(5) | repeat(10,rotate(20))
a4 = rectangle(h=175,w=165,fill='#827839',stroke='none') | repeat(10,rotate(20))
a5 = rectangle(h=145,w=135,fill='#3EA99F',stroke='none') | repeat(10,rotate(20))
a6 = rectangle(h=130,w=125,fill='#56A5E3',stroke='none') | repeat(10,rotate(20))
a7 = rectangle(h=118,w=110,fill='#FFDB58',stroke='none') | repeat(10,rotate(20))

show(e2+a4+a3+a2+a1+a5+a6+a7)
shape = circle(x=100, y=0, r=35,stroke="#64E986") | repeat(36*5, rotate(25)|scale(0.992))
show(shape)