Skip to content

Commit 584e55e

Browse files
jamiepineclaude
andcommitted
fix: use accent color for user message bubbles in portal chat
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3e910e4 commit 584e55e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

interface/src/components/WebChatPanel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ export function WebChatPanel({agentId}: WebChatPanelProps) {
386386
{timeline.length === 0 && !isTyping && (
387387
<div className="flex flex-col items-center justify-center py-24">
388388
<p className="text-sm text-ink-faint">
389-
Start a conversation with {agentId}
389+
Start a conversation with {agentDisplayName || agentId}
390390
</p>
391391
</div>
392392
)}
@@ -397,7 +397,7 @@ export function WebChatPanel({agentId}: WebChatPanelProps) {
397397
<div key={item.id}>
398398
{item.role === "user" ? (
399399
<div className="flex justify-end">
400-
<div className="max-w-[85%] min-w-0 overflow-hidden rounded-2xl rounded-br-md bg-app-hover/30 px-4 py-2.5">
400+
<div className="max-w-[85%] min-w-0 overflow-hidden rounded-2xl rounded-br-md bg-accent/15 px-4 py-2.5">
401401
<p className="text-sm text-ink break-all whitespace-pre-wrap">
402402
{item.content}
403403
</p>

0 commit comments

Comments
 (0)