Light Automation

I have a RGBW light bulb for my patio and I have an automation rule that turns the light blue each night. Most nights it works without any issues but every once in a while the light turns on but goes all white instead of the blue and I can’t figure out why. Any help is greatly appreciated!

- id: evening_lights_on
  alias: 'Evening Lights On'
  initial_state: True
  hide_entity: True
  trigger:
    platform: sun
    # Possible values: sunset, sunrise
    event: sunset
    offset: "-00:30:00"
  action:
    - service: homeassistant.turn_on
      entity_id: scene.back_the_blue
    - service: homeassistant.turn_on
      entity_id: switch.leviton_unknown_type1805_id0334_switch_27_0
    - service: homeassistant.turn_on
      entity_id:
        - light.livingroom
      data:
        brightness: 255

Can you post scene.back_the_blue please?

- name: Back the Blue
  entities:
    light.Porch:
      state: on
      rgb_color: [0,0,255]
      brightness: 255
      #color_temp: 100
    light.patio:
      state: on
      rgb_color: [0,0,255]
      brightness: 255