커스텀 폰트 pretendard-medium, gmarket-medium를 사용하고 있던 것을 appFont 모디

파이어를 사용하여 한국어는 pretendard, 그 외에는 시스템 폰트를 사용하도록 수정
This commit is contained in:
Yu Sung
2026-01-23 03:09:20 +09:00
parent d92dcbc696
commit 280e424385
238 changed files with 831 additions and 831 deletions

View File

@@ -72,13 +72,13 @@ struct TextMessageDetailView: View {
from: "yyyy-MM-dd hh:mm:ss",
to: "yyyy년 MM월 dd일 E요일 HH:mm"
))
.font(.custom(Font.medium.rawValue, size: 15))
.appFont(size: 15, weight: .medium)
.foregroundColor(Color(hex: "bbbbbb"))
.padding(.top, 16.7)
ScrollView(.vertical, showsIndicators: false) {
Text(messageItem.textMessage)
.font(.custom(Font.medium.rawValue, size: 15))
.appFont(size: 15, weight: .medium)
.foregroundColor(Color(hex: "eeeeee"))
.multilineTextAlignment(.leading)
.padding(26.7)
@@ -165,7 +165,7 @@ struct TextMessageDetailView: View {
.padding(.vertical, 13.3)
.padding(.horizontal, 6.7)
.frame(width: geo.size.width - 66.7, alignment: .center)
.font(.custom(Font.medium.rawValue, size: 12))
.appFont(size: 12, weight: .medium)
.background(Color(hex: "3bb9f1"))
.foregroundColor(Color.white)
.multilineTextAlignment(.leading)

View File

@@ -25,7 +25,7 @@ struct SelectRecipientView: View {
TextField("닉네임을 입력해주세요", text: $viewModel.searchNickname)
.autocapitalization(.none)
.disableAutocorrection(true)
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color(hex: "eeeeee"))
.keyboardType(.default)
.padding(.horizontal, 13.3)
@@ -52,7 +52,7 @@ struct SelectRecipientView: View {
.cornerRadius(23.3)
Text(user.nickname)
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color(hex: "eeeeee"))
Spacer()

View File

@@ -35,7 +35,7 @@ struct TextMessageItemView: View {
VStack(alignment: .leading, spacing: 4.7) {
Text(nickname)
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color(hex: "eeeeee"))
Text(item.textMessage)

View File

@@ -70,7 +70,7 @@ struct TextMessageView: View {
Text("메시지가 없습니다.\n친구들과 소통해보세요!")
.multilineTextAlignment(.center)
.font(.custom(Font.medium.rawValue, size: 10.7))
.appFont(size: 10.7, weight: .medium)
.foregroundColor(Color(hex: "bbbbbb"))
}
.frame(width: screenSize().width - 26.7, height: screenSize().height / 2)

View File

@@ -22,7 +22,7 @@ struct TextMessageWriteView: View {
VStack(spacing: 0) {
HStack(spacing: 0) {
Text("취소")
.font(.custom(Font.medium.rawValue, size: 16.7))
.appFont(size: 16.7, weight: .medium)
.foregroundColor(Color(hex: "3bb9f1").opacity(0))
Spacer()
@@ -34,7 +34,7 @@ struct TextMessageWriteView: View {
Spacer()
Text("취소")
.font(.custom(Font.medium.rawValue, size: 16.7))
.appFont(size: 16.7, weight: .medium)
.foregroundColor(Color(hex: "3bb9f1"))
.onTapGesture {
AppState.shared.back()
@@ -52,11 +52,11 @@ struct TextMessageWriteView: View {
HStack(spacing: 13.3) {
Text("받는 사람")
.font(.custom(Font.medium.rawValue, size: 16.7))
.appFont(size: 16.7, weight: .medium)
.foregroundColor(Color(hex: "777777"))
Text(viewModel.recipientNickname)
.font(.custom(Font.medium.rawValue, size: 16.7))
.appFont(size: 16.7, weight: .medium)
.foregroundColor(Color(hex: "eeeeee"))
Spacer()
@@ -124,7 +124,7 @@ struct TextMessageWriteView: View {
.padding(.vertical, 13.3)
.padding(.horizontal, 6.7)
.frame(width: geo.size.width - 66.7, alignment: .center)
.font(.custom(Font.medium.rawValue, size: 12))
.appFont(size: 12, weight: .medium)
.background(Color(hex: "3bb9f1"))
.foregroundColor(Color.white)
.multilineTextAlignment(.leading)