Adjust chat message text color based on sender identity

This commit is contained in:
MartinBraquet
2026-07-29 22:40:09 +02:00
parent 81cccd1ab9
commit c7b552ac43

View File

@@ -136,7 +136,7 @@ export function ChatMessageItem(props: {
size={'sm'}
content={chat.content}
key={chat.id}
className={'!text-ink-1000'}
className={isMe ? '!text-ink-900' : '!text-ink-700'}
/>
</div>
</Row>