I'm trying to get each hexadecimal value from the Adobe Kuler API using JQ/JS:
They provide an xml but I'm having a hard time grabbing the values and placing them in an array like this:
var colors = [E6E2AF, A7A37E, EFECCA, 046380, 002F2F];
The colors exist in this element
<description>
Hex: E6E2AF, A7A37E, EFECCA, 046380, 002F2F
</description>
and here too:
<kuler:swatchHexColor>
E6E2AF
</kuler:swatchHexColor>
If you have any ideas I would really appreciate it,
- K