WLED - reboot automation

Hi,
short question: can I add reboot WLED and the end of automation?
problem: some of the leds stay on in random colors after the automation is triggered. rebooting turns them off.

Don’t think reboot is supported by WLED.

But the better questions would be, why do they stay on? And why can’t you just turn them off?

Why stay on: really don’t know
Why turn them off: seems to defy the purpose of automation.

id: '1618494806994'
  alias: Stairs Day
  description: ''
  trigger:
  - platform: event
    event_type: sonoff.remote
    event_data:
      command: 4
  condition:
  - condition: state
    entity_id: sun.sun
    state: above_horizon
  - condition: not
    conditions:
    - condition: device
      type: is_on
      device_id: xxx
      entity_id: light.stairs
      domain: light
      for:
        hours: 0
        minutes: 0
        seconds: 15
        milliseconds: 0
  action:
  - service: light.turn_on
    data:
      color_name: orange
      brightness_pct: 100
      effect: Solid
    target:
      device_id: xxx
  - delay:
      hours: 0
      minutes: 0
      seconds: 10
      milliseconds: 0
  - service: light.turn_off
    target:
      device_id: xxx
    data: {}
  mode: single

So after a simple light.turn_off the led’s connected to WLED only turn off partially?

What happens from the interface of WLED?
Did you make partitions in WLED?