The problem is your color values, they are not in the correct RGB format.
The correct values will be:
either RGB hexadecimal values (with a 2-digit hexadecimal value for each color), such as "# 00CC88" or
either hexadecimal RGB values (with a 1-digit hexadecimal value for each color), for example, "# 0C8" or
or a valid color name.
therefore instead
colors:['#000','#1111','#55555'] // wrong values (2nd and 3rd values)
try
colors:['#11AA77','#999922','#550077']
or
colors:['#1A7','#992','#507']
or you can also do
colors:['red','darkgreen','yellow']
See jsfiddle example: https://jsfiddle.net/rdtome/2vjLc0q0/
rtome source share