3.0.1 • Published 5 years ago

color-functions v3.0.1

Weekly downloads
1,433
License
MIT
Repository
github
Last release
5 years ago

color-functions

npm npm Build Status codecov styled with prettier Greenkeeper badge

Color functions for node and browser (via browserify, webpack, ...)

Installation

npm install color-functions --save
# or
yarn add color-functions

Usage

// commonjs
const { hex2rgb } = require('color-functions');

// es module
import { hex2rgb, cssColor } from 'color-functions';
import * as cf from 'color-functions';

Available functions

  • cssColor: parse a valid css color value to rgba format
  • hex2hsl
  • hex2rgb
  • hsl2hsv
  • hsl2rgb
  • hsv2hex
  • hsv2hsl
  • hsv2rgb
  • rgb2hex
  • rgb2hsv
  • rgba
  • rgba2hex
  • rgba2rgb

check test for more examples

License

MIT