메인페이지, 팝업 다이얼로그 - 기본색상 9970ff -> 3bb9f1로 변경
This commit is contained in:
@@ -93,7 +93,7 @@ struct TextMessageDetailView: View {
|
||||
width: (screenSize().width - 40) / 3,
|
||||
height: 48.7
|
||||
)
|
||||
.background(Color(hex: "9970ff"))
|
||||
.background(Color(hex: "3bb9f1"))
|
||||
.cornerRadius(6.7)
|
||||
.onTapGesture {
|
||||
AppState.shared.setAppStep(step: .writeTextMessage(userId: messageItem.senderId, nickname: messageItem.senderNickname))
|
||||
@@ -101,12 +101,12 @@ struct TextMessageDetailView: View {
|
||||
|
||||
Text("보관")
|
||||
.font(.custom(Font.bold.rawValue, size: 14.7))
|
||||
.foregroundColor(Color(hex: "9970ff"))
|
||||
.foregroundColor(Color(hex: "3bb9f1"))
|
||||
.frame(
|
||||
width: (screenSize().width - 40) / 3,
|
||||
height: 48.7
|
||||
)
|
||||
.background(Color(hex: "1f1734"))
|
||||
.background(Color(hex: "13181b"))
|
||||
.cornerRadius(6.7)
|
||||
.onTapGesture {
|
||||
if messageItem.isKept {
|
||||
@@ -120,12 +120,12 @@ struct TextMessageDetailView: View {
|
||||
|
||||
Text("삭제")
|
||||
.font(.custom(Font.bold.rawValue, size: 14.7))
|
||||
.foregroundColor(Color(hex: "9970ff"))
|
||||
.foregroundColor(Color(hex: "3bb9f1"))
|
||||
.frame(
|
||||
width: (screenSize().width - 40) / 3,
|
||||
height: 48.7
|
||||
)
|
||||
.background(Color(hex: "1f1734"))
|
||||
.background(Color(hex: "13181b"))
|
||||
.cornerRadius(6.7)
|
||||
.onTapGesture {
|
||||
viewModel.deleteMessage { back() }
|
||||
@@ -136,12 +136,12 @@ struct TextMessageDetailView: View {
|
||||
} else {
|
||||
Text("삭제")
|
||||
.font(.custom(Font.bold.rawValue, size: 14.7))
|
||||
.foregroundColor(Color(hex: "9970ff"))
|
||||
.foregroundColor(Color(hex: "3bb9f1"))
|
||||
.frame(
|
||||
width: screenSize().width - 26.7,
|
||||
height: 48.7
|
||||
)
|
||||
.background(Color(hex: "1f1734"))
|
||||
.background(Color(hex: "13181b"))
|
||||
.cornerRadius(6.7)
|
||||
.onTapGesture {
|
||||
viewModel.deleteMessage { back() }
|
||||
@@ -159,7 +159,7 @@ struct TextMessageDetailView: 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)
|
||||
|
Reference in New Issue
Block a user