Pookkalam by Jyothinath T H

Code

v = rectangle(w=300,h=300,fill="white")
show(v) 
c = circle(r=150, fill="#a34343")
show(c)
c2 = circle(r=125, fill="#91ed91")
show(c2)
o= rectangle(x=65,y=65,h=50,w=50,fill="#76a343") | repeat(30,rotate(45))
show(o)
d = circle(r=100,fill="#eced91")
show(d)
l3 = line(stroke="black", stroke_width = 2.5) | repeat(4,rotate(45))
show(l3)
s = rectangle(w=10,h=10, x=50,y=50, fill="#03ff7d") | repeat(100,rotate(10))
show(s)
m = rectangle(w=10,h=10, x=98,y=98, fill="#FEFDF3") | repeat(100,rotate(5))
show(m)
g=rectangle(x=42,y=42,w=15,h=15,fill="#e67373",stroke="") | repeat(120,rotate(3))
show(g)
b=rectangle(x=-42,y=42,w=15,h=15,fill="#e67373")+rectangle(x=42,y=-42,w=15,h=15,fill="#e67373")+rectangle(x=-42,y=-42,w=15,h=15,fill="#e67373")
show(b)
t=circle(r=50, fill="#d5f03e")
show(t)
l=line(stroke="black", stroke_width=5) | scale(0.5) | repeat(12, rotate(30))
show(l)
f=circle(r=25,fill="#f06916")
show(f)
b1 = circle(r=12.5, x=98,y=98,fill="#de7709") | repeat(12, rotate(30))
show(b1)
k = rectangle(w=12.5,h=12.5, x=98,y=98,fill="#d6d442") | repeat(12, rotate(30))
show(k)
l2 = line(stroke="black", stroke_width=10) | translate(x=75,y=75) | scale(0.125) | repeat(12, rotate(45))
show(l2)
c2 = circle(r=12.5,x=0,y=0,fill="white")
show(c2)
f2 = rectangle(w=12, h=12,fill="#55cf6f") | repeat(2, rotate(120))
show(f2)