크리에이터 채널

- 활동요약표 선 색깔 button색으로
This commit is contained in:
Yu Sung 2024-04-29 13:36:05 +09:00
parent f4f8f47bd0
commit 75b9c76987
1 changed files with 5 additions and 5 deletions

View File

@ -40,11 +40,11 @@ struct UserProfileActivitySummaryView: View {
) )
} }
.padding(.vertical, 13.3) .padding(.vertical, 13.3)
.background(Color(hex: "222222")) .background(Color.gray22)
.cornerRadius(8) .cornerRadius(8)
.overlay( .overlay(
RoundedRectangle(cornerRadius: 8) RoundedRectangle(cornerRadius: 8)
.stroke(Color(hex: "9970ff"), lineWidth: 1) .stroke(Color.button, lineWidth: 1)
) )
} }
@ -55,12 +55,12 @@ struct UserProfileActivitySummaryView: View {
VStack(spacing: 8) { VStack(spacing: 8) {
Text(title) Text(title)
.font(.custom(Font.medium.rawValue, size: 12)) .font(.custom(Font.medium.rawValue, size: 12))
.foregroundColor(Color(hex: "909090")) .foregroundColor(Color.gray90)
.multilineTextAlignment(.center) .multilineTextAlignment(.center)
Text(count) Text(count)
.font(.custom(Font.bold.rawValue, size: 13.3)) .font(.custom(Font.bold.rawValue, size: 13.3))
.foregroundColor(Color(hex: "eeeeee")) .foregroundColor(Color.grayee)
} }
Spacer() Spacer()
} }
@ -70,7 +70,7 @@ struct UserProfileActivitySummaryView: View {
func ActivitySummaryDividerView() -> some View { func ActivitySummaryDividerView() -> some View {
Rectangle() Rectangle()
.frame(width: 1, height: 33.3) .frame(width: 1, height: 33.3)
.foregroundColor(Color(hex: "9970ff")) .foregroundColor(Color.button)
} }
} }