diff --git a/shiftregister/app/templates/shiftlist.html b/shiftregister/app/templates/shiftlist.html
index 972bc3d..2e050d2 100644
--- a/shiftregister/app/templates/shiftlist.html
+++ b/shiftregister/app/templates/shiftlist.html
@@ -18,16 +18,17 @@
{% endif %}
{% if free_shifts %}
-Freie Schichten
-
-
+Freie Schichten
+
{% for shifts in free_shifts %}
-{{ shifts.0.start_at|date:"l, d.m.Y" }}
+{{ shifts.0.start_at|date:"l" }}
{% for shift in shifts %}
{% include "partials/shift_listitem.html" %}
diff --git a/templates/base.html b/templates/base.html
index 364aa22..1eaf536 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -17,6 +17,16 @@
* {
font-family: "Maven Pro", sans-serif !important;
}
+
+ :root {
+ --background: #fff;
+ }
+
+ @media (prefers-color-scheme: dark) {
+ :root {
+ --background: #17181c;
+ }
+ }