Choose the color mode for your app.
{% assign modes = 'light,dark' | split: ',' %} {% for mode in modes %}
{% endfor %}
The perfect color mode for your app.
{% for color in site.colors %}
{% endfor %}
Choose the gray shade for your app.
{% assign bases = 'slate,gray,zinc,neutral,stone' | split: ',' %} {% for base in bases %}
{% endfor %}
Choose the border radius factor for your app.
{% assign radiuses = '0,0.5,1,1.5,2' | split: ',' %} {% for radius in radiuses %}
{% endfor %}
Choose the layout style for your app.
{% assign layouts = 'fluid,boxed' | split: ',' %} {% for layout in layouts %}
{% endfor %}