{# From: https://github.com/pradyunsg/furo/blob/main/src/furo/theme/furo/partials/_head_css_variables.html This is where user-provided CSS variables get converted into actual values. #} {% macro declare_css_variables(user_customisations) -%} {% if user_customisations -%} {% for name, value in user_customisations.items() -%} --{{ name }}: {{ value }}; {% endfor %} {%- endif %} {%- endmacro %}