Pookkalam by Akhil Shalil

Code

bigr = rectangle(w=300, h=300, stroke="#34c916", stroke_width=10)
c1 = circle(x=0, y=0, r=50, stroke="#e65f1c", stroke_width=5)
c2 = circle(x=100, y=0, r=50, stroke="#e34439", fill="#fefffc",stroke_width=9)
c3 = circle(x=-100, y=0, r=50, stroke="#e34439", fill="#fefffc",stroke_width=9)
c4 = circle(x=0, y=100, r=50, stroke="#e34439", fill="#fefffc",stroke_width=9)
c5 = circle(x=0, y=-100, r=50, stroke="#e34439", fill="#fefffc",stroke_width=9)
c6 = circle(x=0, y=0, r=150, stroke="#ffce47", stroke_width=5) #large circle
c7 = circle(x=-100, y=0, r=20, stroke="#ff6c4f", stroke_width=9, fill="#ffe863")
c8 = circle(x=100, y=0, r=20, stroke="#ff6c4f", stroke_width=9, fill="#ffe863")
c9 = circle(x=0, y=100, r=20, stroke="#ff6c4f", stroke_width=9, fill="#ffe863")
c10 = circle(x=0, y=-100, r=20, stroke="#ff6c4f", stroke_width=9, fill="#ffe863")
c11 = circle(x=-125, y=125, r=10, fill="#04e0d9")
c12 = circle(x=125, y=125, r=10, fill="#04e0d9")
c13 = circle(x=-125, y=-125, r=10, fill="#04e0d9")
c14 = circle(x=125, y=-125, r=10, fill="#04e0d9")


r1 = rectangle(w=150, h=125, fill="#f1fc14")
r2 = rectangle(x=70, y=0, w=20, h=125, fill="#e65f1c")
r3 = rectangle(x=-70, y=0, w=20, h=125, fill="#e65f1c")
r4 = rectangle(x=0, y=62, w=125, h=20, fill="#e65f1c")
r5 = rectangle(x=0, y=-62, w=125, h=20, fill="#e65f1c")

e1 = ellipse(x=25,y=0, w=50, h=20, fill="#da3ce6")
e2 = ellipse(x=0,y=25, w=20, h=50, fill="#eb1010")
e3 = ellipse(x=-25,y=0, w=50, h=20, fill="#cc8956")
e4 = ellipse(x=0,y=-25, w=20, h=50, fill="#3cc249")

circles = c1+c2+c3+c4+c5+c6+c7+c8+c9+c10+c11+c12+c13+c14
show(circles)
show(bigr,r1,r2, r3, r4, r5)
show(e1,e2,e3,e4)