Hacker News new | ask | show | jobs
by glossyscr 3769 days ago
Highly recommended: the Adobe Color website (before Kuler): https://color.adobe.com/explore/most-popular/?time=all

Also the mobile app is extremely well done (can create color schemes from picture or live from the camera)

2 comments

In a similar vein I'd recommend ColourLovers[1]. Been using them for I think close to a decade for color, palette, pattern and general design inspiration.

Comparable to Kuler you can browse[2] or search[3] their palettes.

[1]: http://www.colourlovers.com/

[2]: http://www.colourlovers.com/palettes

[3]: http://www.colourlovers.com/palettes/search

nice one, didn't know that
That is awesome! I can't believe I haven't seen it before.

The API is undocumented and restricted it seems, but I did manage to get the first 5000 or so color palettes before my browser crashed:

http://pasted.co/38096f65

If you're interested in this kind of API, http://www.colr.org has one too.
Cool! Yeah, I like having enormous lists of color palettes for doing algorithmic art. I will definitely hit up the colr API and the colourlovers one posted above too.
how did you do this?
I inserted some JS code via the console that scrolls to the bottom of the page whenever the 'collection-assets' div changed, waited, ran observer.disconnect() as my browser was crashing to a halt, and then saved the HTML and combed through it with regexes.

    var target = document.querySelector('.collection-assets');

    var observer = new MutationObserver(function() {
      window.scrollTo(0,document.body.scrollHeight);
    });

    var config = { childList: true };

    observer.observe(target, config);
The API just returns JSON; paging through that is much cleaner than hooking into events and parsing HTML with regex.

https://color.adobe.com/api/v2/themes?filter=public&startInd...

Right, I tried that first but I couldn't actually get it to return any data. I think I was screwing up the request headers. Now though I remembered the Firebug "copy as cURL" thing and it's working, so yeah, definitely a better way to do it.