1.0.3 • Published 2 years ago

@cliffwang/hls-to-hex-test v1.0.3

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

hsl-to-hex-test

Convert HSL colors to RGB colors in hex format.

Install

npm install --save @cliffwang/hls-to-hex-test

API

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

Example

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

License ISC

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago