1.0.0 • Published 5 years ago

@jhonalino/hsl-to-hex v1.0.0

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

hsl-to-hexConvert HSL colors to RGB colors in hex format.## Install bashnpm install --save @jhonalino/hsl-to-hex ## APIrequire('hsl-to-hex') => Functionhsl(hue, saturation, luminosity)` => String## Examplejsvar hsl = require('hsl-to-hex')var hue = 133var saturation = 40var luminosity = 60var hex = hsl(hue, saturation, luminosity)console.log(hex) // #70c282## LicenseISC