Use cases
For example you can use this field to select the color or background color of any html element in your template. For example, if you have a section with text that should have different colors for each product, you'll be able to change this using the Color field type.
Setup
Example Usage
{% assign bgc = product.metafields.airf.bgc %}
{% if bgc and bgc != ' ' %}
<section style=”background: {{ bgc }}”>
<p>This is section with selected background color</p>
</section>
{% endif %}