Pookkalam by Arathy J S

Code

#Pookkalam

#codespace
center= circle(r=6, fill= '#FF6699')
petal = ellipse(x=0, y=0, h=15, w=85, fill='#FF9999') | (repeat(10, rotate(30))) | scale(0.4)

inner_cricle1 = circle(x=0, y=0, r=17,fill="white" ,stroke="white", stroke_width=5)
inner_cricle2 = circle(x=0, y=0, r=30,fill="yellow", stroke="yellow", stroke_width=5)
inner_cricle3 = circle(x=0, y=0, r=50,fill="#FF8C00",stroke="#FF8C00", stroke_width=5)
outer_cricle4 = circle(x=0, y=0, r=150, fill="#FFFF00" ,stroke="green", stroke_width=6)

inner_ellipse1 = ellipse(y=0,x=0,w=200,h=55,stroke="white", stroke_width=10,fill="green") | repeat(4, rotate(90))
inner_ellipse2 = ellipse(y=0,x=50,w=200,h=65,stroke="#FF8C00", stroke_width=4,fill="#db0000") | repeat(4, rotate(90))
inner_ellipse3 = ellipse(y=-0,x=100,w=100,h=50,stroke="white", stroke_width=1,fill="#800080") | repeat(8, rotate(45))

#Design display
pookkalam = combine([outer_cricle4,inner_ellipse3,inner_ellipse2,inner_ellipse1,inner_cricle3,inner_cricle2,inner_cricle1,petal,center])
show(pookkalam)