Color Naming Library For Developers – Coloraze

Category: Color , Javascript | November 29, 2018
Authorevansque
Last UpdateNovember 29, 2018
LicenseMIT
Tags
Views131 views
Color Naming Library For Developers – Coloraze

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

You Might Be Interested In:


Leave a Reply