Created
December 14, 2016 14:30
-
-
Save anasnakawa/be4927a70dd1d5e185c7bb289ea2c76d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// open http://requirebin.com/, paste the following snippet | |
// and play with the following variable to see the output in action | |
var cssColorManipulation = 'color( #7A256D s(+ 5%) l(+ 43) )'; | |
var color = require('css-color-function'); | |
var updatedColor = color.convert( cssColorManipulation ); | |
console.clear(); | |
console.log( updatedColor ); | |
document.body.style.backgroundColor = updatedColor; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment