The same color created using RGB string and hexadecimal color different on scene
http://jsfiddle.net/bidolah/akmcv7Lh/171/
The float colors are in 0..1 range, not 0..255, so it would be THREE.Color(1, 0.07, 0)
instead.
... or as CSS-string:
{ color: new THREE.Color( 'rgb(255, 17 , 0)' ) }
Most helpful comment
... or as CSS-string:
{ color: new THREE.Color( 'rgb(255, 17 , 0)' ) }