{% extends "admin/change_form.html" %} {% load i18n static dash_tags %} {% block extrahead %} {{ block.super }} {% endblock %} {% block after_field_sets %}

{% trans "Custom Theme Colors" %}

{% trans "Override any color to match your brand identity. Colors you don't set will use the active theme's defaults." %}

{% for group_name, group_keys in color_groups %}
{{ group_name }}
{% for key in group_keys %} {% with val=color_initial|get_item:key %}
{% for ck, cl, ch in color_fields %} {% if ck == key %}{{ cl }}{% endif %} {% endfor %} {% for ck, cl, ch in color_fields %} {% if ck == key %}{{ ch }}{% endif %} {% endfor %}
{% endwith %} {% endfor %}
{% endfor %}

{% trans "Tip" %}

{% trans "For best results, set at least primary, secondary, base-100, and base-content." %}

{% endblock %}