import icons

Square(color='yellow')
ear1 = Circle(width=20, height=50, color='black', x=30, y=28)
ear2 = Circle(width=20, height=65, color='blue', x=66, y=28)
head = Circle(width=55, height=60, color='purple', x=50, y=70)
eye1 = Circle(width=6, height=10, color ='red', x=40, y=60)
eye2 = Circle(width=6, height=10, color ='white', x=56, y=60)
nose = Ellipse(width=5, height=10, color='orange', x=48, y=65)
hello = Text(text="I am Elle!", y=95, x=85, font_size=6)
hello.color = 'green'
hello = Text(text="HELLO WORLD!")
hello.color = 'teal'
mouth = Circle(width=5, height=10, color='grey', x=48, y=80)
cheek1 = Circle(width=5, height=7, color='pink', x=40, y=70)
cheek2 = Circle(width=5, height=7, color='pink',x=59, y=70)

Bunny

by lucykjoyner

Created 1 year, 2 months ago.
Based on Bunny by hsun.