diff --git a/homeassistant/components/lifx/light.py b/homeassistant/components/lifx/light.py index 5f462941062480..42d9ecd8c9f545 100644 --- a/homeassistant/components/lifx/light.py +++ b/homeassistant/components/lifx/light.py @@ -484,7 +484,8 @@ def supported_features(self): @property def brightness(self): """Return the brightness of this light between 0..255.""" - return convert_16_to_8(self.bulb.color[2]) + fade = self.bulb.power_level / 65535 + return convert_16_to_8(int(fade * self.bulb.color[2])) @property def color_temp(self):