Change light from white to blue with automation

I am trying to get my first (actually second) automation to work. I have a hue color light that is normally on, and set to warm white. I have an open/close sensor on a humidor that is triggered when the humidor is opened. My first attempt to get the light to toggle when the door is opened worked fine. I then wanted to automate it so that the humidor opening would change the light from white to blue. Here is my automation:

- id: '1578250812536'
  alias: Turn light blue if sensor activated
  description: Humidor opening activates Notification
  trigger:
  - device_id: 126bc8bc99f14acfa7301e323592e76f
    domain: binary_sensor
    entity_id: binary_sensor.openclose_44
    platform: device
    type: opened
  condition: []
  action:
  - alias: ''
    data:
      brightness: 255
      color:
      - 0
      - 0
      - 255
    entity_id: light.notification
    service: light.turn_on

I built this using the automation editor within Home Assistant. Although I don’t get any errors with this, I don’t get any action either. Perhaps someone could point out the obvious mistake I am making?

color should be rgb_color

Perfect! Great catch. I will try that and see if it works. I will let you know

Unfortunately it didn’t work. The “color” listing was put into the automation.yaml by the home assistant editor. I didn’t edit the yaml at all.

Any other suggestions?

Did you reload automations after changing that?

Yes I did, but thank you for checking. I actually got it to work once I dropped the brightness out of the data list.

I appreciate your help. Thank you again!