From 75b9c76987953ce8820af8dccd09f412a982cb93 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Mon, 29 Apr 2024 13:36:05 +0900 Subject: [PATCH] =?UTF-8?q?=ED=81=AC=EB=A6=AC=EC=97=90=EC=9D=B4=ED=84=B0?= =?UTF-8?q?=20=EC=B1=84=EB=84=90=20-=20=ED=99=9C=EB=8F=99=EC=9A=94?= =?UTF-8?q?=EC=95=BD=ED=91=9C=20=EC=84=A0=20=EC=83=89=EA=B9=94=20button?= =?UTF-8?q?=EC=83=89=EC=9C=BC=EB=A1=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Profile/UserProfileActivitySummaryView.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SodaLive/Sources/Explorer/Profile/UserProfileActivitySummaryView.swift b/SodaLive/Sources/Explorer/Profile/UserProfileActivitySummaryView.swift index f8c00a9..1bdddfb 100644 --- a/SodaLive/Sources/Explorer/Profile/UserProfileActivitySummaryView.swift +++ b/SodaLive/Sources/Explorer/Profile/UserProfileActivitySummaryView.swift @@ -40,11 +40,11 @@ struct UserProfileActivitySummaryView: View { ) } .padding(.vertical, 13.3) - .background(Color(hex: "222222")) + .background(Color.gray22) .cornerRadius(8) .overlay( RoundedRectangle(cornerRadius: 8) - .stroke(Color(hex: "9970ff"), lineWidth: 1) + .stroke(Color.button, lineWidth: 1) ) } @@ -55,12 +55,12 @@ struct UserProfileActivitySummaryView: View { VStack(spacing: 8) { Text(title) .font(.custom(Font.medium.rawValue, size: 12)) - .foregroundColor(Color(hex: "909090")) + .foregroundColor(Color.gray90) .multilineTextAlignment(.center) Text(count) .font(.custom(Font.bold.rawValue, size: 13.3)) - .foregroundColor(Color(hex: "eeeeee")) + .foregroundColor(Color.grayee) } Spacer() } @@ -70,7 +70,7 @@ struct UserProfileActivitySummaryView: View { func ActivitySummaryDividerView() -> some View { Rectangle() .frame(width: 1, height: 33.3) - .foregroundColor(Color(hex: "9970ff")) + .foregroundColor(Color.button) } }