Yee lights control

Hi Guys,

Trying to get Yeelight to fade in and fade out in 10s over yee lights.

Cant get it to work when i use delay: 10 or transition:10 commands

Also wanted to know how to change colour to blue rgb commands as i only understands its 0,0,255
Below is my current code

service: yeelight.set_color_temp_scene
data:
  kelvin: 6500
  brightness: 100


target:
  area_id: entertainment_room
  device_id: d647271844c26d5b709ef927cf380e04
  entity_id: light.yeelight_stripe_0x5e51deb

- service: light.turn_on
  target:
    entity_id: light.yeelight_stripe_0x5e51deb
  data:
    transition: 10 # ony if your light hardware supports transitions, otherwise you have to automate this
    rgb_color: [0,0,255]

you can also use:

  data:
    transition: 10 # ony if your light hardware supports transitions, otherwise you have to automate this
    color_name: blue

I tried adding the transition code but it came back with

extra keys not allowed @ data[‘transition’]. Got None

But this yee light can do transition.

service: yeelight.set_color_temp_scene
data:
  kelvin: 6500
  brightness: 100
  transition: 10

  
target:
  area_id: entertainment_room
  device_id: d647271844c26d5b709ef927cf380e04
  entity_id: light.yeelight_stripe_0x5e51deb

Then it is not supported for that light.