1.0.1 • Published 3 years ago

ncs-color v1.0.1

Weekly downloads
80
License
MIT
Repository
github
Last release
3 years ago

ncs-color

Conversion tool for color values specified using the Natural Color System

This module converts colors represented in NCS format to their corresponding Hex or RGB values. It works both with first edition values and second edition values (i.e. NCS 5000-N or NCS S 2060-G20Y). Returns null if the color name is invalid. Note that this module does not check if the passed color value is actually possible to produce in actual manufacturing environments (only ~1950 colors are actually available).

Usage

CommonJS:

const ncsColor = require('ncs-color');
ncsColor.hex('NCS S 2080-G20Y'); // => '#65d636'

AMD:

require(['ncs-color'], function(ncsColor){
	ncsColor.rgb('NCS 5000-N'); // => 'rgb(127,127,127)'
});

Global:

<script src="https://unpkg.com/ncs-color@1/ncscolor.min.js"></script>
<script>
    ncsColor.hex('NCS S 2060-B'); // => '#399bd6'
</script>

Available on npm:

$ npm install ncs-color --save

License

MIT © Frederik Ring

1.0.1

3 years ago

1.0.0

6 years ago

0.3.0

7 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago