random-lch-color
v1.0.0
Published
Generate a random lch color.
Downloads
2
Readme
random-lch-color
Generate a random lch color.
Installation
npm install --save random-lch-color
Usage
var randomLCHColor = require('random-lch-color')
randomLCHColor() // => 'lch(50% 100 100)'
randomLCHColor() // => 'lch(82% 120 204)'
or
import randomLCHColor from 'random-lch-color'
randomLCHColor() // => 'lch(75% 60 0)'
randomLCHColor() // => 'lch(49% 132 290)'
Acknowledgements
Inspired by random-hex-color by John Otander which is repackaged from a post by Paul Irish.
License
MIT
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Crafted for generative doings by Adam Morse (@mrmrs_).