1.0.1 • Published 2 years ago

@lenodeoliveira/hsl-to-hex v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

hsl-to-hex

Convert HSL colors to RGB colors in hex format.

Install

npm install --save @lenodeoliveira/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)

License

ISC