1.0.0 • Published 9 years ago

lightness v1.0.0

Weekly downloads
29
License
MIT
Repository
github
Last release
9 years ago

lightness

NPM

Lighten or darken a css color (similar to less.css lighten() and darken())

The second parameter is the absolute percentage value to add to the color.

usage

var lightness = require('lightness')

lightness('#000000', 100) // #ffffff
lightness('#ffffff', -100) // #000000
lightness('blue', 10) // #3333FF