{% 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 %} Activate {% endif %} {% if theme.id in custom_ids %} Delete {% endif %} {% endfor %} Create theme Theme name Light {% for token in theme_tokens %} {{ token }} {{ active_palette.light[token] }} {% endfor %} Dark {% for token in theme_tokens %} {{ token }} {{ active_palette.dark[token] }} {% endfor %} Create & activate theme {% endblock %}
Color themes, saved to the filesystem.
Light
Dark