diff --git a/SodaLive/Resources/Assets.xcassets/ic_coin_w.imageset/ic_coin_w.png b/SodaLive/Resources/Assets.xcassets/ic_coin_w.imageset/ic_coin_w.png index bbfaa89..0a89331 100644 Binary files a/SodaLive/Resources/Assets.xcassets/ic_coin_w.imageset/ic_coin_w.png and b/SodaLive/Resources/Assets.xcassets/ic_coin_w.imageset/ic_coin_w.png differ diff --git a/SodaLive/Sources/MyPage/Auth/AuthButtonView.swift b/SodaLive/Sources/MyPage/Auth/AuthButtonView.swift index 8ad1b66..d5a8a22 100644 --- a/SodaLive/Sources/MyPage/Auth/AuthButtonView.swift +++ b/SodaLive/Sources/MyPage/Auth/AuthButtonView.swift @@ -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) } } diff --git a/SodaLive/Sources/MyPage/CanCardView.swift b/SodaLive/Sources/MyPage/CanCardView.swift index e97511e..931da83 100644 --- a/SodaLive/Sources/MyPage/CanCardView.swift +++ b/SodaLive/Sources/MyPage/CanCardView.swift @@ -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) } diff --git a/SodaLive/Sources/MyPage/MyPageView.swift b/SodaLive/Sources/MyPage/MyPageView.swift index 50a32a0..1302385 100644 --- a/SodaLive/Sources/MyPage/MyPageView.swift +++ b/SodaLive/Sources/MyPage/MyPageView.swift @@ -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))) diff --git a/SodaLive/Sources/MyPage/ReservationStatusView.swift b/SodaLive/Sources/MyPage/ReservationStatusView.swift index 43e44d9..3e3ef16 100644 --- a/SodaLive/Sources/MyPage/ReservationStatusView.swift +++ b/SodaLive/Sources/MyPage/ReservationStatusView.swift @@ -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) diff --git a/SodaLive/Sources/MyPage/ServiceCenter/ServiceCenterButtonView.swift b/SodaLive/Sources/MyPage/ServiceCenter/ServiceCenterButtonView.swift index ec3befc..ccd0c67 100644 --- a/SodaLive/Sources/MyPage/ServiceCenter/ServiceCenterButtonView.swift +++ b/SodaLive/Sources/MyPage/ServiceCenter/ServiceCenterButtonView.swift @@ -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)