From cab41ee6c700a41f92c20be344a6e343fc424b69 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Mon, 20 Nov 2023 15:41:31 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=ED=9B=84?= =?UTF-8?q?=EC=9B=90=20=EB=B0=B0=EA=B2=BD=EC=83=89=20-=20=EA=B8=B0?= =?UTF-8?q?=EC=A1=B4=20=EC=BA=94=20=EC=88=98=20/=2010=20=EC=9C=BC=EB=A1=9C?= =?UTF-8?q?=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Detail/Comment/AudioContentCommentItemView.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/SodaLive/Sources/Content/Detail/Comment/AudioContentCommentItemView.swift b/SodaLive/Sources/Content/Detail/Comment/AudioContentCommentItemView.swift index 299231e..0e25ac8 100644 --- a/SodaLive/Sources/Content/Detail/Comment/AudioContentCommentItemView.swift +++ b/SodaLive/Sources/Content/Detail/Comment/AudioContentCommentItemView.swift @@ -63,12 +63,12 @@ struct AudioContentCommentItemView: View { .padding(.horizontal, 6.7) .padding(.vertical, 2.7) .background( - commentItem.donationCan >= 100000 ? Color(hex: "973a3a") : - commentItem.donationCan >= 50000 ? Color(hex: "d85e37") : - commentItem.donationCan >= 10000 ? Color(hex: "d38c38") : - commentItem.donationCan >= 5000 ? Color(hex: "59548f") : - commentItem.donationCan >= 1000 ? Color(hex: "4d6aa4") : - commentItem.donationCan >= 500 ? Color(hex: "2d7390") : + commentItem.donationCan >= 10000 ? Color(hex: "973a3a") : + commentItem.donationCan >= 5000 ? Color(hex: "d85e37") : + commentItem.donationCan >= 1000 ? Color(hex: "d38c38") : + commentItem.donationCan >= 500 ? Color(hex: "59548f") : + commentItem.donationCan >= 100 ? Color(hex: "4d6aa4") : + commentItem.donationCan >= 50 ? Color(hex: "2d7390") : Color(hex: "548f7d") ) .cornerRadius(10.7)