Skip to content

Instantly share code, notes, and snippets.

@cmc19
Created December 26, 2013 20:34
Show Gist options
  • Save cmc19/8138359 to your computer and use it in GitHub Desktop.
Save cmc19/8138359 to your computer and use it in GitHub Desktop.
Get adobe kuler colors
//run in console
var colors = [];
$('.themeBox > li').each(function(){
var v =$(this).attr('title');
colors.push(v);
console.log(v);
});
var html = "";
$.each(colors,function(){
html+= this + '<br />';
});
$('html').replaceWith('<div>'+html+'</div>');
// example
// https://kuler.adobe.com/Vintage-Ralph-Lauren-color-theme-2216979/
//#703030
//#2F343B
//#7E827A
//#E3CDA4
//#C77966
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment