Pookkalam by Gayathry

Code

shape= circle(r=25,fill="#2E8B57")
shape1 = rectangle(w=75, h=75,fill="#32CD32") | repeat(4, rotate(45))

fill2 = color(r=255,g=140,b=0)
shape2 = ellipse(w=150,h=300,fill=fill2) | repeat(3, rotate(60))

shape3 = circle(x=125, y=0, r=10,fill="#7CFC00") | repeat(6, rotate(60))
show(shape3,shape2,shape1,shape)

c1=ellipse(h=50,w=10,fill='#168D6D')|repeat(200,rotate(200))
c2=ellipse(h=40,w=8,fill='#21D4A4')|repeat(200,rotate(200))
show(c1,c2)

petal = ellipse(w=6,h=10,fill="yellow")|translate(x=0,y=5)
flower = petal|repeat(12,rotate(30))
e1 = flower|translate(x=100,y=0)|repeat(9,rotate(45)) 
show(e1)