
Coloraze is a small and easy color naming library that provides a lot of named colors for web developers and color designs.
How to use it:
Install the Coloraze library.
# NPM $ npm install coloraze --save
Import the Coloraze library.
// ES 6
import Coloraze from 'coloraze';
// CommonJS:
const Coloraze = require('coloraze');Initialize the Coloraze library.
const coloraze = new Coloraze();
Output the name of a color you provide.
console.log(coloraze.name('#685558'));
// output
Zambezi






