{% set darkTheme %}
theme="dark"
{% endset %}
{% set lightTheme %}
theme="light"
{% endset %}
{% if isDarkTheme is defined and isDarkTheme is same as (true) %}
{% set theme = darkTheme %}
{% else %}
{% set theme = lightTheme %}
{% endif %}
{{ theme }}