diff --git a/SodaLive/Resources/Assets.xcassets/btn_make_live.imageset/btn_make_live.png b/SodaLive/Resources/Assets.xcassets/btn_make_live.imageset/btn_make_live.png index 8c1d45f..2d5e53c 100644 Binary files a/SodaLive/Resources/Assets.xcassets/btn_make_live.imageset/btn_make_live.png and b/SodaLive/Resources/Assets.xcassets/btn_make_live.imageset/btn_make_live.png differ diff --git a/SodaLive/Sources/Content/Main/Banner/ContentMainBannerView.swift b/SodaLive/Sources/Content/Main/Banner/ContentMainBannerView.swift index eb14935..98e3052 100644 --- a/SodaLive/Sources/Content/Main/Banner/ContentMainBannerView.swift +++ b/SodaLive/Sources/Content/Main/Banner/ContentMainBannerView.swift @@ -73,7 +73,7 @@ struct ContentMainBannerView: View { HStack(spacing: 4) { ForEach(0.. 0 { Text(cancelButtonTitle) .font(.custom(Font.bold.rawValue, size: 15.3)) - .foregroundColor(Color(hex: "9970ff")) + .foregroundColor(Color(hex: "3bb9f1")) .padding(.vertical, 16) .frame(width: (geo.size.width - 66.7) / 3) - .background(Color(hex: "9970ff").opacity(0.13)) + .background(Color(hex: "13181b")) .cornerRadius(8) .overlay( RoundedRectangle(cornerRadius: 8) - .stroke(Color(hex: "9970ff"), lineWidth: 1) + .stroke(Color(hex: "3bb9f1"), lineWidth: 1) ) .onTapGesture { cancelButtonAction() @@ -76,7 +76,7 @@ struct SodaDialog: View { .foregroundColor(Color(hex: "ffffff")) .padding(.vertical, 16) .frame(width: (geo.size.width - 66.7) * 2 / 3) - .background(Color(hex: "9970ff")) + .background(Color(hex: "3bb9f1")) .cornerRadius(8) .onTapGesture { confirmButtonAction() diff --git a/SodaLive/Sources/Explorer/ExplorerSectionView.swift b/SodaLive/Sources/Explorer/ExplorerSectionView.swift index 32b0f60..297a7a2 100644 --- a/SodaLive/Sources/Explorer/ExplorerSectionView.swift +++ b/SodaLive/Sources/Explorer/ExplorerSectionView.swift @@ -114,7 +114,7 @@ struct ExplorerSectionView: View { Text(creator.tags) .font(.custom(Font.medium.rawValue, size: 10)) - .foregroundColor(Color(hex: "9970ff")) + .foregroundColor(Color(hex: "3bb9f1")) .lineLimit(1) .frame(width: 93.3) .padding(.top, 3.3) diff --git a/SodaLive/Sources/Explorer/ExplorerView.swift b/SodaLive/Sources/Explorer/ExplorerView.swift index ad8c254..c0fb119 100644 --- a/SodaLive/Sources/Explorer/ExplorerView.swift +++ b/SodaLive/Sources/Explorer/ExplorerView.swift @@ -101,7 +101,7 @@ struct ExplorerView: View { .padding(.vertical, 13.3) .frame(width: geo.size.width - 66.7, alignment: .center) .font(.custom(Font.medium.rawValue, size: 12)) - .background(Color(hex: "9970ff")) + .background(Color(hex: "3bb9f1")) .foregroundColor(Color.white) .multilineTextAlignment(.center) .cornerRadius(20) diff --git a/SodaLive/Sources/Follow/FollowCreatorView.swift b/SodaLive/Sources/Follow/FollowCreatorView.swift index 99db586..d992864 100644 --- a/SodaLive/Sources/Follow/FollowCreatorView.swift +++ b/SodaLive/Sources/Follow/FollowCreatorView.swift @@ -69,7 +69,7 @@ struct FollowCreatorView: View { .padding(.vertical, 13.3) .frame(width: screenSize().width - 66.7, alignment: .center) .font(.custom(Font.medium.rawValue, size: 12)) - .background(Color(hex: "9970ff")) + .background(Color(hex: "3bb9f1")) .foregroundColor(Color.white) .multilineTextAlignment(.leading) .cornerRadius(20) diff --git a/SodaLive/Sources/Live/Cancel/LiveCancelDialog.swift b/SodaLive/Sources/Live/Cancel/LiveCancelDialog.swift index 2b71c54..ffc8ea9 100644 --- a/SodaLive/Sources/Live/Cancel/LiveCancelDialog.swift +++ b/SodaLive/Sources/Live/Cancel/LiveCancelDialog.swift @@ -32,21 +32,21 @@ struct LiveCancelDialog: View { .cornerRadius(6.7) .overlay( RoundedRectangle(cornerRadius: 6.7) - .stroke(Color(hex: "9970ff"), lineWidth: 1.3) + .stroke(Color(hex: "3bb9f1"), lineWidth: 1.3) ) .padding(.top, 13.3) HStack(spacing: 13.3) { Text("취소") .font(.custom(Font.bold.rawValue, size: 18.3)) - .foregroundColor(Color(hex: "9970ff")) + .foregroundColor(Color(hex: "3bb9f1")) .padding(.vertical, 16) .padding(.horizontal, 48) - .background(Color(hex: "9970ff").opacity(0.2)) + .background(Color(hex: "13181b")) .cornerRadius(10) .overlay( RoundedRectangle(cornerRadius: 10) - .stroke(Color(hex: "9970ff"), lineWidth: 1.3) + .stroke(Color(hex: "3bb9f1"), lineWidth: 1.3) ) .onTapGesture { isShowCancelPopup = false @@ -57,7 +57,7 @@ struct LiveCancelDialog: View { .foregroundColor(.white) .padding(.vertical, 16) .padding(.horizontal, 48) - .background(Color(hex: "9970ff")) + .background(Color(hex: "3bb9f1")) .cornerRadius(10) .onTapGesture { confirmAction(reason.trimmingCharacters(in: .whitespacesAndNewlines) != placeholder ? reason : "") diff --git a/SodaLive/Sources/Live/EventBanner/SectionEventBannerView.swift b/SodaLive/Sources/Live/EventBanner/SectionEventBannerView.swift index 1aa7d55..fd641dc 100644 --- a/SodaLive/Sources/Live/EventBanner/SectionEventBannerView.swift +++ b/SodaLive/Sources/Live/EventBanner/SectionEventBannerView.swift @@ -58,7 +58,7 @@ struct SectionEventBannerView: View { HStack(spacing: 4) { ForEach(0.. item.numberOfParticipate ? - "9970ff" : + "3bb9f1" : "ffd300" ) ) diff --git a/SodaLive/Sources/Live/Recommend/SectionRecommendLiveView.swift b/SodaLive/Sources/Live/Recommend/SectionRecommendLiveView.swift index d19ce4e..93d0360 100644 --- a/SodaLive/Sources/Live/Recommend/SectionRecommendLiveView.swift +++ b/SodaLive/Sources/Live/Recommend/SectionRecommendLiveView.swift @@ -67,7 +67,7 @@ struct SectionRecommendLiveView: View { HStack(spacing: 4) { ForEach(0..