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)