From 62b30bfebde0adc041f63ac20f7d78c518cb6e99 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Sun, 27 Oct 2024 22:04:06 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=EB=B0=A9=20-=20?= =?UTF-8?q?=ED=95=98=ED=8A=B8=20=EC=95=8C=EB=A6=BC=20=EB=B0=94(=EC=B1=84?= =?UTF-8?q?=ED=8C=85)=20=EB=B0=B0=EA=B2=BD,=20=EB=8B=89=EB=84=A4=EC=9E=84,?= =?UTF-8?q?=20=EA=B8=80=EC=9E=90=EC=83=89=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Room/Chat/LiveRoomHeartDonationChatItemView.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) } }