{% capture content %} {% assign anchor_name = include.anchor_name | default: 'Variables' %} {% assign tab = include.tab | default: page.doc-tab %} {% assign subtab = include.subtab | default: page.doc-subtab %} {% assign type = include.type | default: tab %} {% assign data = include.data | default: site.data.variables[tab][subtab] %} {% assign variables = include.variables | default: data.list %} {% assign table_class = include.table_class | default: 'is-bordered' %} {% if include.custom_message %} {{ include.custom_message }} {% else %} {% assign variables_link_text = "these variables" %} {% capture variables_link %} {% if data.file_path %} {{ variables_link_text }} {% else %} {{ variables_link_text }} {% endif %} {% endcapture %} You can use {{ variables_link | strip }} to customize this {{ type }}. Simply set one or multiple of these variables before importing Bulma. Learn how. {% endif %} {% endcapture %} {% include elements/anchor.html name=anchor_name %}

{{ content | strip }}

{% for variable_name in variables %} {% assign variable = data.by_name[variable_name] %} {% endfor %}
Name Type Default value Computed value
Name Type Default value Computed value
{{ variable.name }} {% if variable.computed_type and variable.computed_type != variable.type %} {{ variable.computed_type }} {% else %} {{ variable.type }} {% endif %} {{ variable.value }} {% if variable.computed_value != '' %} {% if variable.computed_type == 'color' %} {% include elements/color-square.html value=variable.computed_value %} {% elsif variable.computed_value and variable.computed_value != variable.value %} {{ variable.computed_value }} {% endif %} {% endif %}