From 48de80ea9549b848a7399e682714d55e27619e35 Mon Sep 17 00:00:00 2001 From: svemagie <869694+svemagie@users.noreply.github.com> Date: Thu, 19 Mar 2026 15:29:23 +0100 Subject: [PATCH] style: revert card bg to surface-50 on light mode Cards were too yellow with surface-100; border provides sufficient visual separation against the light background. Co-Authored-By: Claude Sonnet 4.6 --- css/tailwind.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/tailwind.css b/css/tailwind.css index 592380b..20854b0 100644 --- a/css/tailwind.css +++ b/css/tailwind.css @@ -457,7 +457,7 @@ /* Widget cards */ .widget { - @apply p-4 bg-surface-100 dark:bg-surface-800 rounded-lg border border-surface-200 dark:border-surface-700 shadow-sm overflow-hidden; + @apply p-4 bg-surface-50 dark:bg-surface-800 rounded-lg border border-surface-200 dark:border-surface-700 shadow-sm overflow-hidden; } .widget-title { @@ -494,7 +494,7 @@ /* Post cards */ .post-card { - @apply p-5 bg-surface-100 dark:bg-surface-800 rounded-lg border border-surface-200 dark:border-surface-700 shadow-sm overflow-hidden; + @apply p-5 bg-surface-50 dark:bg-surface-800 rounded-lg border border-surface-200 dark:border-surface-700 shadow-sm overflow-hidden; } .post-header {