Skip to content
This repository was archived by the owner on Mar 14, 2024. It is now read-only.

Repository files navigation


Badge StarsBadge Deno



HSL

Convert colors to HSL.


Button UsageButton Conversions



Examples


import*asHSLfrom'https://deno.land/x/hsl/mod.ts';

RGB

constrgb=[255,0,0];// Redconsthsl=HSL.fromRGB(rgb);console.log(hsl);// [ 0 , 100 , 50 ]

Hex

consthex='#0000FF';// Blueconsthsl=HSL.fromHex(hex);console.log(hsl);// [ 240 , 100 , 50 ]

CMYK

constcmyk=[100,0,100,0];// Greenconsthsl=HSL.fromCMYK(cmyk);console.log(hsl);// [ 120 , 100 , 50 ]

Releases

Contributors

Languages