마이페이지 - 글자색, 배경색 변경
This commit is contained in:
parent
86491cce95
commit
8857dd3e98
Binary file not shown.
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
@ -15,7 +15,7 @@ struct AuthButtonView: View {
|
|||
.padding(.horizontal, 13.3)
|
||||
.padding(.vertical, 20)
|
||||
.frame(width: screenSize().width - 26.7, alignment: .leading)
|
||||
.background(Color(hex: "664aab"))
|
||||
.background(Color(hex: "004b6c"))
|
||||
.cornerRadius(6.7)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -39,14 +39,14 @@ struct CanCardView: View {
|
|||
|
||||
Text("충전")
|
||||
.font(.custom(Font.bold.rawValue, size: 12))
|
||||
.foregroundColor(Color(hex: "fdca2f"))
|
||||
.foregroundColor(Color(hex: "b38fff"))
|
||||
}
|
||||
.padding(.horizontal, 11.3)
|
||||
.padding(.vertical, 7)
|
||||
.overlay(
|
||||
RoundedRectangle(cornerRadius: CGFloat(16.7))
|
||||
.stroke(lineWidth: 1)
|
||||
.foregroundColor(Color(hex: "fdca2f"))
|
||||
.foregroundColor(Color(hex: "b38fff"))
|
||||
)
|
||||
.cornerRadius(16.7)
|
||||
}
|
||||
|
|
|
@ -73,12 +73,8 @@ struct MyPageView: View {
|
|||
.frame(width: screenSize().width - 26.7, height: 46.7)
|
||||
.font(.custom(Font.bold.rawValue, size: 15.3))
|
||||
.foregroundColor(Color(hex: "eeeeee"))
|
||||
.background(Color(hex: "352953"))
|
||||
.background(Color(hex: "3bb9f1"))
|
||||
.cornerRadius(6.7)
|
||||
.overlay(
|
||||
RoundedRectangle(cornerRadius: 6.7)
|
||||
.stroke(Color(hex: "9970ff"), lineWidth: 1.3)
|
||||
)
|
||||
.padding(.top, 26.7)
|
||||
.onTapGesture {
|
||||
AppState.shared.setAppStep(step: .creatorDetail(userId: UserDefaults.int(forKey: .userId)))
|
||||
|
|
|
@ -30,14 +30,14 @@ struct ReservationStatusView: View {
|
|||
|
||||
Text("\(data.liveReservationCount)")
|
||||
.font(.custom(Font.medium.rawValue, size: 14.7))
|
||||
.foregroundColor(Color(hex: "9970ff"))
|
||||
.foregroundColor(Color(hex: "3bb9f1"))
|
||||
}
|
||||
.frame(width: width, height: 46.7)
|
||||
.background(Color(hex: "352953"))
|
||||
.background(Color(hex: "13181b"))
|
||||
.cornerRadius(6.7)
|
||||
.overlay(
|
||||
RoundedRectangle(cornerRadius: 6.7)
|
||||
.stroke(Color(hex: "9970ff"), lineWidth: 1.3)
|
||||
.stroke(Color(hex: "3bb9f1"), lineWidth: 1.3)
|
||||
)
|
||||
.onTapGesture {
|
||||
AppState.shared.setAppStep(step: .liveReservation)
|
||||
|
|
|
@ -26,7 +26,7 @@ struct ServiceCenterButtonView: View {
|
|||
}
|
||||
.padding(.horizontal, 13.3)
|
||||
.frame(width: screenSize().width - 26.7, height: 66.7)
|
||||
.background(Color(hex: "664aab"))
|
||||
.background(Color(hex: "13181b"))
|
||||
.cornerRadius(6.7)
|
||||
.onTapGesture {
|
||||
AppState.shared.setAppStep(step: .serviceCenter)
|
||||
|
|
Loading…
Reference in New Issue