Skip to content

Instantly share code, notes, and snippets.

@anasnakawa
Created December 14, 2016 14:30
Show Gist options
  • Save anasnakawa/be4927a70dd1d5e185c7bb289ea2c76d to your computer and use it in GitHub Desktop.
Save anasnakawa/be4927a70dd1d5e185c7bb289ea2c76d to your computer and use it in GitHub Desktop.
// 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