Added additional themes

This commit is contained in:
2026-08-20 20:09:58 -04:00
parent f6ec1ad827
commit b06b8cf94c
2 changed files with 117 additions and 6 deletions
+2 -2
View File
@@ -233,7 +233,7 @@
</label>
<select id="theme" data-setting="theme">
{% for choice in theme_choices %}
<option value="{{ choice }}" {% if settings.theme == choice %}selected{% endif %}>{{ choice|capitalize }}</option>
<option value="{{ choice }}" {% if settings.theme == choice %}selected{% endif %}>{{ theme_display_names[choice] }}</option>
{% endfor %}
</select>
</div>
@@ -276,7 +276,7 @@
</label>
<select id="font_family" data-setting="font_family">
{% for choice in font_family_choices %}
<option value="{{ choice }}" {% if settings.font_family == choice %}selected{% endif %}>{{ choice|capitalize }}</option>
<option value="{{ choice }}" {% if settings.font_family == choice %}selected{% endif %}>{{ 'Monaspace' if choice == 'monaspace' else choice|capitalize }}</option>
{% endfor %}
</select>
</div>