Skip to content

Instantly share code, notes, and snippets.

@moonwave99
Last active August 29, 2015 14:16
Show Gist options
  • Save moonwave99/e1c002f12bc132328a33 to your computer and use it in GitHub Desktop.
Save moonwave99/e1c002f12bc132328a33 to your computer and use it in GitHub Desktop.
Get a space separated list of an Adobe Color [formerly known as Kuler] palette.
// paste in your browser's devtools and run:
$('[data-comp="hex"]').map(function(){return '#' + this.value}).toArray().join(' ');
// raw js:
Array.prototype.map.call(document.querySelectorAll('[data-comp="hex"]'), function(item){ return "#" + item.value}).join(' ');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment