diff --git a/SodaLive/Sources/Live/Room/Chat/LiveRoomHeartDonationChatItemView.swift b/SodaLive/Sources/Live/Room/Chat/LiveRoomHeartDonationChatItemView.swift index 32f3c7f..256c045 100644 --- a/SodaLive/Sources/Live/Room/Chat/LiveRoomHeartDonationChatItemView.swift +++ b/SodaLive/Sources/Live/Room/Chat/LiveRoomHeartDonationChatItemView.swift @@ -15,19 +15,19 @@ struct LiveRoomHeartDonationChatItemView: View { HStack(spacing: 0) { Text("'") .font(.system(size: 12)) - .foregroundColor(Color.gray11) + .foregroundColor(Color.white) Text(nickname) .font(.system(size: 12, weight: .bold)) - .foregroundColor(Color(hex: "ec3aa6")) + .foregroundColor(Color(hex: "f0c030")) Text("'님이 마음을 전했습니다 : 💕") .font(.system(size: 12)) - .foregroundColor(Color.gray11) + .foregroundColor(Color.white) } .padding(.vertical, 6.7) .frame(maxWidth: .infinity) - .background(Color.white.opacity(0.7)) + .background(Color.gray77.opacity(0.8)) .cornerRadius(4.7) } }