From 20d038ec77436698d8be598254b7546b9d8f23b2 Mon Sep 17 00:00:00 2001 From: MBO-Tech-IT Date: Sun, 26 Apr 2026 16:47:50 +0200 Subject: [PATCH] fix: improve dark mode contrast in StatsBar and Footer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace inverted/missing dark: variants (slate-500→slate-400, slate-600 dark:slate-600→slate-500 dark:slate-400) so text is lighter in dark mode, not darker. Co-Authored-By: Claude Sonnet 4.6 --- components/Footer.tsx | 4 ++-- components/StatsBar.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Footer.tsx b/components/Footer.tsx index b0d0e7f..48b11cb 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -93,10 +93,10 @@ export default function Footer() { {/* Bottom bar */}
-

+

© {year} MBO-Tech-IT. Alle Rechte vorbehalten.

-
+
Impressum Datenschutz diff --git a/components/StatsBar.tsx b/components/StatsBar.tsx index de2ac5b..9074adb 100644 --- a/components/StatsBar.tsx +++ b/components/StatsBar.tsx @@ -62,7 +62,7 @@ export default function StatsBar() { {stats.map((stat) => (
-

{stat.label}

+

{stat.label}

))}