Pookkalam by Ayisha Nihala U M

Code

s=rectangle (w=300,h=300,stroke_width=5,stroke="#008C45",fill="gold")
show(s)
c = circle(r=150,stroke_width=10,stroke="#AE1C28",fill="#DDB257")
s1=rectangle (w=215,h=215,stroke_width=3,stroke="#AC3505",fill="#DD8A57")
show(c,s1)

p1=point(x=140,y=0)
p2=point(x=0,y=140)
p3=point(x=-140,y=0)
p4=point(x=0,y=-140)
shape1=polygon([p1,p2,p3,p4],stroke_width=3,stroke="#730000",fill="#AE6484")
show(shape1)
c1=circle(r=100,stroke_width=8,stroke="#730000",fill="#DDB6C4")
show(c1)
a=circle(x=85,y=85,r=10,stroke_width=5,stroke="#422C00",fill="#733800")|repeat(4,rotate(90))
sh=ellipse (w=200,h=100,stroke_width=10,stroke="#730000")|repeat(4, rotate (45))
show(sh)
show(a)
b=circle(r=50,stroke_width=10,stroke="#730000")
show(b)
shape=rectangle(w=63,h=63,stroke_width=3,stroke="#3D000D")|repeat(60, rotate (10)|scale(0.9))
show(shape)