Description of the problem
The same color created using RGB string and hexadecimal color different on scene
http://jsfiddle.net/bidolah/akmcv7Lh/171/
Three.js version
- Dev
- r86
- …
Browser
- All of them
- Chrome
- Firefox
- Internet Explorer
OS
- All of them
- Windows
- macOS
- Linux
- Android
- iOS
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)' ) }