From 23053b42238b9921230cf9a6348c1f5ce4efcc50 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Tue, 15 Jul 2025 06:48:32 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=9D=BC=EC=9D=B4=EB=B8=8C=20-=20500?= =?UTF-8?q?=EC=BA=94=20=ED=9B=84=EC=9B=90=20=EC=B1=84=ED=8C=85=20=EB=B0=B0?= =?UTF-8?q?=EA=B2=BD=2059548f=20->=20c25264=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SodaLive/Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift b/SodaLive/Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift index bcca1a6..247ef13 100644 --- a/SodaLive/Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift +++ b/SodaLive/Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift @@ -69,7 +69,7 @@ struct LiveRoomDonationChatItemView: View { chatMessage.can >= 10000 ? Color(hex: "c25264").opacity(0.8) : chatMessage.can >= 5000 ? Color(hex: "d85e37").opacity(0.8) : chatMessage.can >= 1000 ? Color(hex: "d38c38").opacity(0.8) : - chatMessage.can >= 500 ? Color(hex: "59548f").opacity(0.8) : + chatMessage.can >= 500 ? Color(hex: "c25264").opacity(0.8) : chatMessage.can >= 100 ? Color(hex: "4d6aa4").opacity(0.8) : chatMessage.can >= 50 ? Color(hex: "2d7390").opacity(0.8) : Color(hex: "548f7d").opacity(0.8)