diff --git a/homeassistant/components/light/hue.py b/homeassistant/components/light/hue.py
index 372dec04fbc21d3e90c25aa7b41c40b179feb5d8..778652872c32c2bdde170f1dc0641d7cb5509d9e 100644
--- a/homeassistant/components/light/hue.py
+++ b/homeassistant/components/light/hue.py
@@ -356,6 +356,11 @@ class HueLight(Light):
         """Flag supported features."""
         return SUPPORT_HUE
 
+    @property
+    def effect_list(self):
+        """Return the list of supported effects."""
+        return [EFFECT_COLORLOOP, EFFECT_RANDOM]
+
     def turn_on(self, **kwargs):
         """Turn the specified or all lights on."""
         command = {'on': True}