From 5d43cfec75ff9b9eac6cd1f8071a1bc64b72003c Mon Sep 17 00:00:00 2001 From: lens0021 Date: Sun, 21 Jun 2026 11:22:12 +0900 Subject: [PATCH] feat: make "+ Subscribe" the prominent CTA, mute "Subscribed" Swap the post-card subscribe button emphasis to match typical social apps and nudge subscribing: "+ Subscribe" is now a solid blue filled button, while the already-done "Subscribed" state is a quiet gray outline. The "Unsubscribe?" confirm stays red. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01VxfMbEXhsWRjjXEr5GMcF9 --- src/components/PostCard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/PostCard.tsx b/src/components/PostCard.tsx index ecc9965..20f6388 100644 --- a/src/components/PostCard.tsx +++ b/src/components/PostCard.tsx @@ -423,8 +423,8 @@ export function PostCard({ confirmingUnsub ? "bg-red-100 border-red-300 text-red-700 dark:bg-red-900 dark:border-red-700 dark:text-red-300" : isSubscribed(formatHandle(actual.account)) - ? "bg-blue-100 border-blue-300 text-blue-700 dark:bg-blue-900 dark:border-blue-700 dark:text-blue-300" - : "border-gray-300 text-gray-600 hover:bg-gray-100 dark:border-gray-600 dark:text-gray-400 dark:hover:bg-gray-700" + ? "border-gray-300 text-gray-500 hover:bg-gray-100 dark:border-gray-600 dark:text-gray-400 dark:hover:bg-gray-700" + : "bg-blue-600 border-blue-600 text-white hover:bg-blue-700 dark:bg-blue-600 dark:border-blue-600 dark:hover:bg-blue-500" }`} > {confirmingUnsub