npm.io
4.1.2 • Published 8 years ago

colorutil

Licence
ISC
Version
4.1.2
Deps
0
Size
25 kB
Vulns
0
Weekly
0
Stars
2
DeprecatedThis package is deprecated

Color model conversions between RGB, HSL, HSV and HWB, and more

sources:

naming convention:

  • foo2bar: input and output are in [0, 1]
  • fooToBar: natural ranges: hues in [0, 360[, colors in [0, 255], saturation/value/lightness in [0, 100]

Usage

import { hslToRgb, hsvToHex } from 'colorutil';

hslToRgb(200, 95, 62); // [ 66, 189, 250 ]
hsvToHex(200, 95, 62); // '086c9e'

Keywords