@@ -29,7 +29,7 @@ struct MessageBubble: View {
2929 . textSelection ( . enabled)
3030 . padding ( . horizontal, 12 )
3131 . padding ( . vertical, 8 )
32- . background ( isUser ? Color . accentColor : Color ( . systemGray5 ) )
32+ . background ( isUser ? Color . accentColor : Color ( white : 0.92 ) )
3333 . foregroundStyle ( isUser ? . white : . primary)
3434 . clipShape ( BubbleShape ( isUser: isUser) )
3535
@@ -69,7 +69,7 @@ struct StreamingBubble: View {
6969 . font ( . caption)
7070 . foregroundStyle ( . secondary)
7171 . padding ( 8 )
72- . background ( Color ( . systemGray6 ) )
72+ . background ( Color ( white : 0.95 ) )
7373 . clipShape ( RoundedRectangle ( cornerRadius: 8 ) )
7474 } label: {
7575 Label ( " Thinking… " , systemImage: " brain " )
@@ -92,14 +92,14 @@ struct StreamingBubble: View {
9292 }
9393 . padding ( . horizontal, 12 )
9494 . padding ( . vertical, 8 )
95- . background ( Color ( . systemGray5 ) )
95+ . background ( Color ( white : 0.92 ) )
9696 . clipShape ( BubbleShape ( isUser: false ) )
9797 } else {
9898 // Typing dots when no text yet
9999 TypingIndicator ( )
100100 . padding ( . horizontal, 12 )
101101 . padding ( . vertical, 8 )
102- . background ( Color ( . systemGray5 ) )
102+ . background ( Color ( white : 0.92 ) )
103103 . clipShape ( BubbleShape ( isUser: false ) )
104104 }
105105 }
0 commit comments