{% extends 'base/base.html' %} {% block title %}Admin ยท Appearance{% endblock %} {% block content %}

Admin

Color themes, saved to the filesystem.

{{ available_themes | length }} themes
{% include 'admin/partials/nav.html' %}

Themes

{% for theme in available_themes %}
{{ theme.name }} {% if theme.id == active_theme %} Active {% elif theme.id in custom_ids %} custom {% endif %}
{% if theme.id != active_theme %}
{% endif %} {% if theme.id in custom_ids %}
{% endif %}
{% endfor %}

Create theme

Light

{% for token in theme_tokens %} {% endfor %}

Dark

{% for token in theme_tokens %} {% endfor %}
{% endblock %}