From 06592c616ce835849e91f575df51ed784be4811f Mon Sep 17 00:00:00 2001 From: svemagie <869694+svemagie@users.noreply.github.com> Date: Thu, 19 Mar 2026 17:14:33 +0100 Subject: [PATCH] style: tone down category tag bg in light mode Replace surface-100 (#f2e5bc) with a barely-there warm tint (#f5f3e8) and soften the border (#e6e0cc) so tags read as just slightly darker than the page background. Co-Authored-By: Claude Sonnet 4.6 --- css/tailwind.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/tailwind.css b/css/tailwind.css index c4bc78c..83ed59e 100644 --- a/css/tailwind.css +++ b/css/tailwind.css @@ -398,7 +398,7 @@ /* Category tags (post metadata pills) */ .p-category { - @apply inline-block px-3 py-1.5 text-xs bg-surface-100 dark:bg-surface-800 text-surface-700 dark:text-surface-200 rounded border border-surface-200 dark:border-surface-700 hover:border-accent-400 dark:hover:border-accent-600 transition-colors; + @apply inline-block px-3 py-1.5 text-xs bg-[#f5f3e8] dark:bg-surface-800 text-surface-700 dark:text-surface-200 rounded border border-[#e6e0cc] dark:border-surface-700 hover:border-accent-400 dark:hover:border-accent-600 transition-colors; } /* Inline hashtags in post content — styled as subtle links, not pills */