1.0.0 • Published 5 years ago

@jtgreene/hsl-to-hex v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

hsl-to-hex

Conver HSL colors to RGB colors in hex format

Install

npm install --save @jtgreene/hsl-to-hex

API

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

Example

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

Liscense

ISC