Unable to find service light/lifx_set_status

I recently setup a LIFX light and it works fine in home assistant. So I started playing around with automations but I get the error “Unable to find service light/lifx_set_status”. I was using this automation:

- alias: Kids Light ready for bed
  trigger:
    - platform: sun
      event: 'sunset'
      offset: '-00:30:00'
  condition:
    - condition: state
      entity_id: input_boolean.vacation_mode
      state: 'off'
  action:
    - service: light.lifx_set_status
      data:
        entity_id: light.kids_light
        power: True
        brightness: 2
        color_temp: 285
        white_value: 255

I’ve been manually triggering the automation. What am I doing wrong?

Edit: Nevermind, it’s lifx_set_state not status. Time to check my glasses.