1.0.2 • Published 8 years ago

hex-to-hsl v1.0.2

Weekly downloads
4,449
License
ISC
Repository
github
Last release
8 years ago

HEX to HSL

Build Status

Convert a HEX color string to an HSL value

Install

npm install hex-to-hsl --save

Use

var hexToHsl = require('hex-to-hsl');

console.log(hexToHsl('#0593FF')); // Prints [206, 100, 51]
console.log(hexToHsl('#00C176')); // Prints [157, 100, 38]
console.log(hexToHsl('#fff')); // Prints [0, 0, 100]