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) } }