my_circle = Circle(color = 'red')

colors = ['red', 'orange', ['yellow', 'green'], ['green', 'yellow'], 'blue', 'purple']

my_text = Text("Colors are amazing!")

for j in range(50):
	for i in range(len(colors)):
	    color = colors[i]
	    negative_color = colors[-i]
	    with animation(duration=1):
	        my_circle.color = color
	        my_text.color = negative_color
	colors.reverse()

Lucy's Color Circle

by lucykjoyner

Created 1 year, 2 months ago.