새로운 콘텐츠 등록하기 버튼 배경색 3bb9f1로 변경

This commit is contained in:
Yu Sung 2024-01-10 02:58:16 +09:00
parent 679783cc35
commit a27952bbca
2 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ struct ContentListView: View {
.foregroundColor(Color(hex: "eeeeee")) .foregroundColor(Color(hex: "eeeeee"))
.padding(.vertical, 17) .padding(.vertical, 17)
.frame(maxWidth: .infinity) .frame(maxWidth: .infinity)
.background(Color(hex: "9970ff")) .background(Color(hex: "3bb9f1"))
.cornerRadius(5.3) .cornerRadius(5.3)
.padding(.top, 13.3) .padding(.top, 13.3)
.padding(.horizontal, 13.3) .padding(.horizontal, 13.3)
@ -147,7 +147,7 @@ struct ContentListView: View {
.padding(.vertical, 13.3) .padding(.vertical, 13.3)
.frame(width: screenSize().width - 66.7, alignment: .center) .frame(width: screenSize().width - 66.7, alignment: .center)
.font(.custom(Font.medium.rawValue, size: 12)) .font(.custom(Font.medium.rawValue, size: 12))
.background(Color(hex: "9970ff")) .background(Color(hex: "3bb9f1"))
.foregroundColor(Color.white) .foregroundColor(Color.white)
.multilineTextAlignment(.leading) .multilineTextAlignment(.leading)
.cornerRadius(20) .cornerRadius(20)

View File

@ -35,7 +35,7 @@ struct UserProfileContentView: View {
.foregroundColor(Color(hex: "eeeeee")) .foregroundColor(Color(hex: "eeeeee"))
.padding(.vertical, 17) .padding(.vertical, 17)
.frame(maxWidth: .infinity) .frame(maxWidth: .infinity)
.background(Color(hex: "9970ff")) .background(Color(hex: "3bb9f1"))
.cornerRadius(5.3) .cornerRadius(5.3)
.padding(.top, 21) .padding(.top, 21)
.onTapGesture { AppState.shared.setAppStep(step: .createContent) } .onTapGesture { AppState.shared.setAppStep(step: .createContent) }