diff --git a/frontend/src/components/ChannelCard.jsx b/frontend/src/components/ChannelCard.jsx index 38c6967..2e08d36 100644 --- a/frontend/src/components/ChannelCard.jsx +++ b/frontend/src/components/ChannelCard.jsx @@ -80,7 +80,7 @@ export default function ChannelCard({ channel }) { className={`text-xs font-medium px-4 py-2 rounded-lg transition-colors ${ isFollowed || followMut.isSuccess ? "bg-zinc-700 text-zinc-300 hover:bg-zinc-600" - : "bg-accent text-black hover:bg-yellow-300" + : "bg-accent text-black hover:bg-zinc-100" }`} > {isFollowed || followMut.isSuccess ? "Following" : "Follow"} diff --git a/frontend/src/components/Layout.jsx b/frontend/src/components/Layout.jsx index cea54cf..771cc72 100644 --- a/frontend/src/components/Layout.jsx +++ b/frontend/src/components/Layout.jsx @@ -41,7 +41,7 @@ function BottomNav({ newCount }) { end={tab.end} className={({ isActive }) => `relative flex-1 flex flex-col items-center justify-center gap-0.5 transition-colors outline-none ${ - isActive ? "text-accent" : "text-zinc-500" + isActive ? "text-zinc-100" : "text-zinc-500" }` } > @@ -49,13 +49,13 @@ function BottomNav({ newCount }) { <>