{% for color in colors %}
{% for swatch in color.swatches %}
<div>
<span style="background-color: {{swatch.hex}};"></span>
<pre>${{swatch.name}}</pre>
<pre>{{swatch.hex}}</pre>
</div>
{% endfor %}
{% endfor %}