--- layout: styleguide title: Style guide description: Collection of website components used on dash.org --- Here are all the pieces that make up this website. {% assign colors = site.colors %} {% assign componentsByType = site.components | group_by:"type" %}

Colors

{% for entry in colors %} {% include component-color.html %} {% endfor %} {% for type in componentsByType %}

{{ type.name | capitalize }}

{% for entry in type.items %} {% include component.html %} {% endfor %} {% endfor %}