Hyperion lights always start white

i have hyperion running, whenever i say ok google, hyperion on it start with a white color.

Id like ot have this to start with the eggevt FUll Color mood blobs isntead of all leds white,

How can i archieve this?
I have:

light:
  - platform: hyperion
    host: 127.0.0.1
    port: 19444
    effect_list: ‘Full color mood blobs’

But it is still showing white leds

I think the effect_list parameter is only for the list of available effects in the more info card.

Auswahl_150

But you can use a script to turn hyperion on with an effect.

  set_hyperion_effect:
    sequence:
      - service: light.turn_on
        data:
          entity_id: light.hyperion
          effect: "Rainbow swirl fast"

i tried this but then i still need to manually activate the script. The idea is to get ok google, turn on hyperion, the hyperion will start with the effect, can i kindly ask to give me a kind of automation to do this

I don’t talk to my HA, so i don’t know.
Maybe with the Template Light ?

I tried that but those are non options i can use in the hyperion template light:

i tried this:

light:
  - platform: hyperion
    host: 127.0.0.1
    port: 19444
    turn_on:
      service: script.set_hyperion_effect
#    default_color: [255, 0, 0]

Thanks for youre help. I got it working like this:

automation:
- id: one
  alias: Turn hyperion effect on when light goes on
  trigger:
    - platform: state
      entity_id: light.hyperion
      to: 'on'
  action:
    - service: light.turn_on
      data:
        entity_id: light.hyperion
        effect: "Full color mood blobs"