1.0.0 • Published 6 years ago
@conada7/hsl-to-hex v1.0.0
hsl-to-hex
Convert HSL colors to RGB colors in hex format. ## Install
npm install --save @conada7/hsl-to-hexAPI
require('hsl-to-hex') => Function
hsl(hue, saturation, luminosity)` => StringExample
var hsl = require("hsl-to-hex");
var hue = 133;
var saturation = 40;
var luminosity = 60;
var hex = hsl(hue, saturation, luminosity);
console.log(hex); // #70c282License
ISC
1.0.0
6 years ago