From c6a3b090dfa81a0c9cb2409d9c4a0423a59087af Mon Sep 17 00:00:00 2001 From: Ricardo Date: Sat, 7 Mar 2026 15:59:36 +0100 Subject: [PATCH] fix(dark-mode): correct dark mode token pairs - bg-white -> bg-surface-50 (token compliance) - Add missing dark:text-surface-100 on inputs - Fix dark:border-surface-600 -> dark:border-surface-700 - Fix badge bg opacity (dark:bg-accent-900/30) Confab-Link: http://localhost:8080/sessions/0ec83454-d346-4329-8aaf-6b12139bf596 --- _includes/components/widgets/ai-usage.njk | 8 ++++---- _includes/components/widgets/post-categories.njk | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/_includes/components/widgets/ai-usage.njk b/_includes/components/widgets/ai-usage.njk index abb6df5..977f602 100644 --- a/_includes/components/widgets/ai-usage.njk +++ b/_includes/components/widgets/ai-usage.njk @@ -13,19 +13,19 @@ {# Mini stats — 2x2 grid #}
-
+
{{ stats.total }}
Total
-
+
{{ stats.aiCount }}
AI-involved
-
+
{{ stats.total - stats.aiCount }}
Human-only
-
+
{{ stats.percentage }}%
AI ratio
diff --git a/_includes/components/widgets/post-categories.njk b/_includes/components/widgets/post-categories.njk index 0d015d5..b85ba1a 100644 --- a/_includes/components/widgets/post-categories.njk +++ b/_includes/components/widgets/post-categories.njk @@ -5,12 +5,12 @@

Categories

{% if category is string %} - + {{ category }} {% else %} {% for cat in category %} - + {{ cat }} {% endfor %}