Provide a color_temp_step for light.turn_on

light.turn_on and toggle provide brightness_step, brightness_step_pct. This is really nice as this allows blueprints and automations to just increase/decrease the values without having to know the real current values. This is also required when controlling multiple lights at once.

We should have a color_temp_step that does the same thing. Multiple people on this forum complain about this missing for years.

Could it be possible to fill this missing feature ?

Thanks for the hard work ! <3

If you’re using zigbee2mqtt, you can achieve this by sending a custom mqtt message. For example, I have this in an automation:

service: mqtt.publish
data:
  topic: zigbee2mqtt/Guest Bed Light/set
  payload: "{\"state\": \"on\",  \"color_temp_step\": 20, \"transition\": 1}"