feat: 브랜드 컬러 토큰 적용 및 색상 규칙 추가

This commit is contained in:
2026-02-06 14:44:14 +09:00
parent d2c66a639d
commit ac7effc939
6 changed files with 40 additions and 24 deletions

View File

@@ -44,7 +44,7 @@ export function UserMenu({ user }: UserMenuProps) {
<button className="flex items-center gap-2 outline-none">
<Avatar className="h-8 w-8 transition-opacity hover:opacity-80">
<AvatarImage src={user.user_metadata?.avatar_url} />
<AvatarFallback className="bg-linear-to-br from-indigo-500 to-purple-600 text-white text-xs font-bold">
<AvatarFallback className="bg-linear-to-br from-brand-500 to-brand-700 text-white text-xs font-bold">
{user.email?.charAt(0).toUpperCase()}
</AvatarFallback>
</Avatar>