diff --git a/homeassistant/components/hive/light.py b/homeassistant/components/hive/light.py index b510569eb47f3..8d09c902f3667 100644 --- a/homeassistant/components/hive/light.py +++ b/homeassistant/components/hive/light.py @@ -114,6 +114,7 @@ async def async_update(self) -> None: self._attr_hs_color = color_util.color_RGB_to_hs(*rgb) self._attr_color_mode = ColorMode.HS else: + color_temp = self.device["status"].get("color_temp") self._attr_color_temp_kelvin = ( None if color_temp is None