Square(color='pink')
blue_circle = Circle(width=90, height=90, color='blue', x=35, y=35)
yellow_circle = Circle(width=90, height=90, color='yellow', x=65, y=65)
yellow_circle.transparency = 10
hello = Text(text="Hello World", y=88, font_size=13)
hello.rotation = -5
hello.color = ['red', 'blue']  # gradient

# Text shadow
hello_shadow = hello.copy(transparency=80)
hello_shadow.x -= 1
hello_shadow.y -= 1

Hello World

by ludwik

Created 6 years, 2 months ago.