add dark mode

This commit is contained in:
2025-10-28 19:24:27 +01:00
parent 8415f9a114
commit 66cbf5dbba
6 changed files with 59 additions and 80 deletions

View File

@@ -14,7 +14,9 @@
<title>{% block title %}{{ title }}{% endblock %}</title>
{% block head %} {% endblock %}
</head>
<body class="min-h-screen flex flex-col">
<body
class="min-h-screen flex flex-col bg-white text-black dark:bg-neutral-900 dark:text-neutral-100"
>
{% block pagecontent %} {{ pagecontent }} {% endblock %}
</body>
</html>