1.0.2 • Published 8 years ago
@lukaszewczak/hsl-to-hex v1.0.2
hsl-to-hex
Convert HSL colors to RGB colors in hex format.
Install
npm install --save @lukaszewczak/hsl-to-hexAPI
require('hsl-to-hex') => Function
hsl(hue, saturation, luminosity)` => StringExample
const hsl = require('hsl-to-hex')
const hue = 133
const saturation = 40
const luminosity = 60
const hex = hsl(hue, saturation, luminosity)
console.log(hex) // #70c282License
ISC
Sample
hsl-to-hexmodule based on Node Cookbook