diff --git a/homeassistant/components/zha/light.py b/homeassistant/components/zha/light.py index ba05d63df12..34c27f0af45 100644 --- a/homeassistant/components/zha/light.py +++ b/homeassistant/components/zha/light.py @@ -457,8 +457,8 @@ class Light(BaseLight, ZhaEntity): ): self._color_temp = results["color_temperature"] - color_x = results.get("color_x") - color_y = results.get("color_y") + color_x = results.get("current_x") + color_y = results.get("current_y") if color_x is not None and color_y is not None: self._hs_color = color_util.color_xy_to_hs( float(color_x / 65535), float(color_y / 65535)