Flashing a colored bulb a color then going back to previous state - Not working

Can anyone see why this isn’t working? The furthest it would get was flashing to green, but then never going back to the newly created scene. Seems so simple / straightforward, but I can’t get it working.
Thanks.

alias: Reminder
description: ""
trigger:
  - platform: time
    at: "23:00:00"
condition: []
action:
  - service: scene.create
    data:
      scene_id: beforelighting
      snapshot_entities: light.marcia_s_cloud_light
  - service: light.turn_on
    data:
      color_name: green
    target:
      entity_id: light.marcia_s_cloud_light
  - service: scene.turn_on
    data: {}
    target:
      entity_id: scene.beforelighting
mode: single