메인페이지, 팝업 다이얼로그 - 기본색상 9970ff -> 3bb9f1로 변경
This commit is contained in:
@@ -50,14 +50,14 @@ struct LiveRoomPasswordDialog: View {
|
||||
HStack(spacing: 13.3) {
|
||||
Text("취소")
|
||||
.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 {
|
||||
isShowing = false
|
||||
@@ -79,7 +79,7 @@ struct LiveRoomPasswordDialog: View {
|
||||
}
|
||||
.padding(.vertical, 16)
|
||||
.frame(width: (geo.size.width - 66.7) * 2 / 3)
|
||||
.background(Color(hex: "9970ff"))
|
||||
.background(Color(hex: "3bb9f1"))
|
||||
.cornerRadius(8)
|
||||
.onTapGesture {
|
||||
if password.trimmingCharacters(in: .whitespaces).isEmpty {
|
||||
@@ -95,7 +95,7 @@ struct LiveRoomPasswordDialog: 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 {
|
||||
if password.trimmingCharacters(in: .whitespaces).isEmpty {
|
||||
|
@@ -57,14 +57,14 @@ struct SodaDialog: View {
|
||||
if cancelButtonTitle.count > 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()
|
||||
|
Reference in New Issue
Block a user