Created
December 26, 2013 20:34
-
-
Save cmc19/8138359 to your computer and use it in GitHub Desktop.
Get adobe kuler colors
This file contains hidden or 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
//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