{% for color in site.colors %}
{% assign c = color[0] %}
{% include ui/button.html text="Button" color=c %}
{% endfor %}
Outlined buttons
{% for color in site.colors %}
{% assign c = color[0] %}
{% include ui/button.html text="Button" outline=true color=c %}
{% endfor %}
Buttons with icons
{% for color in site.colors %}
{% assign c = color[0] %}
{% include ui/button.html text="Button" color=c icon="star" %}
{% endfor %}
Outlined buttons with icons
{% for color in site.colors %}
{% assign c = color[0] %}
{% include ui/button.html text="Button" outline=true color=c icon-right="star" %}
{% endfor %}
Social buttons
{% for social in site.socials %}
{% include ui/button.html text=social.title color=social.name icon=social.icon %}
{% endfor %}