I\'m getting an unusual error:
ctx_wrap.fillStyle is not a function
on this line:
ctx_wrap.fillStyle(\'#b8b8b8\'
Try using ctx_wrap.fillStyle = "#COLOR".
ctx_wrap.fillStyle = "#COLOR"
The second one does not work, the console just stops at the first one and spits out the error, because it freaked out from the line of code.