Are you sure?
Do you want to delete “Psychedelic” permanently? You will not be able to undo this action.
import icons backgroud = Rectangle(color='skyblue') face = icons.Flushed(color='white', width=1, height=1, transparency=60) with animation(duration=4): backgroud.color = ['brown', 'red'] face.width = 90 face.height = 90 face.transparency = 100 face.rotation = 360 * 3 with animation(): pass # just wait for a second with animation(duration=4): backgroud.color = 'skyblue' with animation(): pass