diff --git a/src/features/team/components/mock-team-space-view.tsx b/src/features/team/components/mock-team-space-view.tsx index a092500..79fa468 100644 --- a/src/features/team/components/mock-team-space-view.tsx +++ b/src/features/team/components/mock-team-space-view.tsx @@ -1459,7 +1459,7 @@ function ChatPanel({ messages, onSend }: ChatPanelProps) { className={cn( "max-w-[min(34rem,88%)] rounded-lg border p-4 shadow-crisp", message.author === "나" - ? "border-primary/20 bg-primary text-primary-foreground" + ? "border-blue-600 bg-blue-600 text-white" : "border-border/70 bg-white text-brand-ink", )} > @@ -1469,7 +1469,7 @@ function ChatPanel({ messages, onSend }: ChatPanelProps) { className={cn( "font-mono text-xs", message.author === "나" - ? "text-primary-foreground/75" + ? "text-blue-100" : "text-muted-foreground", )} > @@ -1480,7 +1480,7 @@ function ChatPanel({ messages, onSend }: ChatPanelProps) { className={cn( "mt-2 text-sm leading-6", message.author === "나" - ? "text-primary-foreground/90" + ? "text-blue-50" : "text-muted-foreground", )} > @@ -1491,6 +1491,7 @@ function ChatPanel({ messages, onSend }: ChatPanelProps) { ))}