fix: improve dark mode text readability in chat interface

Add explicit text-foreground class to assistant message bubbles
to ensure proper contrast in dark mode.
This commit is contained in:
Ajax Davis 2026-02-04 02:17:50 +10:00
parent 32c6e097ed
commit fa4e7754e6

View file

@ -713,7 +713,7 @@ export default function AgentChatPage(): React.ReactElement {
className={`max-w-[85%] rounded-lg p-4 ${
message.role === 'USER'
? 'bg-primary text-primary-foreground'
: 'bg-surface border border-dashed border-border'
: 'bg-surface text-foreground border border-dashed border-border'
}`}
>
{message.role === 'USER' ? (