1.0.0 • Published 8 years ago

hsl-to-hex v1.0.0

Weekly downloads
10,595
License
MIT
Repository
github
Last release
8 years ago

hsl-to-hex

Convert HSL colors to RGB colors in hex format.

API

require('hsl-to-hex') => Function
hsl(hue, saturation, luminosity)` => String

Example

var hsl = require('hsl-to-hex')
var hue = 133 hsl(133, 40, 60)
var saturation = 40
var luminosity = 60
var hex = hsl(hue, saturation, luminosity)
console.log(hex) // #70c282

License

ISC