Color Constants
These match the standard [link:https://en.wikipedia.org/wiki/X11_color_names X11 Named Colors], supported by most modern browsers. This means that you
can easily match Three colors with CSS named colors.
var black = THREE.ColorKeywords['black'];
var red = THREE.ColorKeywords['red'];
var bisque = THREE.ColorKeywords['bisque'];
Note that these don't use camelCase so to match, for example, the X11 color
Blanched Almond ( #FFEBCD ) you would use:
var blanchedAlmond = THREE.ColorKeywords['blanchedalmond'];
See the [link:https://en.wikipedia.org/wiki/X11_color_names#Color_name_chart X11 Color Chart] for the full list of supported named colors.
Source
[link:https://github.com/mrdoob/three.js/blob/master/src/math/Color.js src/math/Color.js]