Conditions

Case / When

A switch statement for cleaner multiple-condition checks.

Copy or embed this snippet

{% case section.settings.color_scheme %}
  {% when 'dark' %}
    <div class="bg-black text-white">
  {% when 'light' %}
    <div class="bg-white text-black">
  {% else %}
    <div class="bg-gray-100">
{% endcase %}

Embed this snippet on your blog or docs — attribution link appreciated: HTML to Liquid Converter · Convert to Shopify section →

Practice in the converter workspace

Draft OS 2.0 section output after you choose the right design pattern.