We can change the greeting color too!

  • Go to and drag Set Color to the bottom of your program.
  • Assign the command to greeting.
  • Change the color in parenthesis to "yellow".

Make sure to leave the quotes around the color.

stage.set_background("winter") sprite = codesters.Sprite("person12") sprite.go_to(-125, -150) frosty = codesters.Sprite("snowman") frosty.go_to(100, -125) snow = codesters.Sprite("snowflake3") snow.go_to(100, 75) greeting = codesters.Text("Happy Holidays!") greeting.go_to(0, 200)