메인페이지, 팝업 다이얼로그 - 기본색상 9970ff -> 3bb9f1로 변경

This commit is contained in:
Yu Sung
2024-01-09 19:32:33 +09:00
parent bfcc430349
commit a836215d37
40 changed files with 83 additions and 101 deletions

View File

@@ -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 : "")

View File

@@ -58,7 +58,7 @@ struct SectionEventBannerView: View {
HStack(spacing: 4) {
ForEach(0..<items.count, id: \.self) { index in
Capsule()
.foregroundColor(index == currentIndex ? Color(hex: "9970ff") : Color(hex: "909090"))
.foregroundColor(index == currentIndex ? Color(hex: "3bb9f1") : Color(hex: "909090"))
.frame(
width: index == currentIndex ? 18 : 6,
height: 6

View File

@@ -125,7 +125,7 @@ struct LiveView: View {
.padding(.horizontal, 6.7)
.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(.leading)
.fixedSize(horizontal: false, vertical: true)

View File

@@ -57,7 +57,7 @@ struct LiveNowAllItemView: View {
.foregroundColor(
Color(
hex: item.numberOfPeople > item.numberOfParticipate ?
"9970ff" :
"3bb9f1" :
"ffd300"
)
)

View File

@@ -67,7 +67,7 @@ struct SectionRecommendLiveView: View {
HStack(spacing: 4) {
ForEach(0..<items.count, id: \.self) { index in
Capsule()
.foregroundColor(index == currentIndex ? Color(hex: "9970ff") : Color(hex: "909090"))
.foregroundColor(index == currentIndex ? Color(hex: "3bb9f1") : Color(hex: "909090"))
.frame(
width: index == currentIndex ? 18 : 6,
height: 6

View File

@@ -29,7 +29,7 @@ struct SectionRecommendChannelView: View {
Text("채널")
.font(.custom(Font.bold.rawValue, size: 18.3))
.foregroundColor(Color(hex: "9970ff"))
.foregroundColor(Color(hex: "3bb9f1"))
Spacer()
@@ -63,7 +63,7 @@ struct SectionRecommendChannelView: View {
Circle()
.strokeBorder(lineWidth: 3)
.foregroundColor(
Color(hex: "9970ff")
Color(hex: "3bb9f1")
.opacity(item.isOnAir ? 1 : 0)
)
)
@@ -74,7 +74,7 @@ struct SectionRecommendChannelView: View {
.foregroundColor(.white)
.padding(.vertical, 2.7)
.padding(.horizontal, 5.7)
.background(Color(hex: "9970ff"))
.background(Color(hex: "3bb9f1"))
.cornerRadius(6.7)
}
}

View File

@@ -73,7 +73,7 @@ struct LiveReservationAllView: View {
.foregroundColor(Color.white)
}
.frame(width: 200, height: 33.3, alignment: .center)
.background(Color(hex: "9970ff"))
.background(Color(hex: "3bb9f1"))
.cornerRadius(4.7)
.padding(.top, 10.7)
.onTapGesture {

View File

@@ -52,7 +52,7 @@ struct LiveRoomDialogView: View {
if let confirmTitle = confirmTitle, let confirmAction = confirmAction {
Text(confirmTitle)
.font(.custom(Font.medium.rawValue, size: 10))
.foregroundColor(Color(hex: "9970ff"))
.foregroundColor(Color(hex: "3bb9f1"))
.padding(.horizontal, 8)
.padding(.vertical, 8.3)
.background(Color.white)
@@ -64,7 +64,7 @@ struct LiveRoomDialogView: View {
.padding(.top, confirmTitle != nil || cancelTitle != nil ? 10 : 0)
}
.padding(.vertical, 20)
.background(Color(hex: "9970ff"))
.background(Color(hex: "3bb9f1"))
.cornerRadius(16.7)
.padding(.horizontal, 26.7)
.frame(width: screenSize().width)

View File

@@ -179,7 +179,7 @@ struct LiveRoomProfilesDialogView: View {
Text("\(roomInfo.participantsCount)")
.font(.custom(Font.medium.rawValue, size: 14))
.foregroundColor(Color(hex: "9970ff"))
.foregroundColor(Color(hex: "3bb9f1"))
.padding(.leading, 6.7)
Text("/\(roomInfo.totalAvailableParticipantsCount)")