커스텀 폰트 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

@@ -26,7 +26,7 @@ struct ApplyAuditionCompleteDialog: View {
.padding(.top, 26.7)
Text("보이스온 오디션에 지원해 주셔서 감사합니다.")
.font(.custom(Font.medium.rawValue, size: 15))
.appFont(size: 15, weight: .medium)
.foregroundColor(Color.graybb)
.padding(.top, 15)
@@ -36,7 +36,7 @@ struct ApplyAuditionCompleteDialog: View {
.padding(.top, 20)
Text(roleName)
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.graybb)
.padding(.top, 10)

View File

@@ -28,7 +28,7 @@ struct CommunityPostPurchaseDialog: View {
.padding(.top, 40)
Text("게시글을\n확인하시겠습니까?")
.font(.custom(Font.medium.rawValue, size: 15))
.appFont(size: 15, weight: .medium)
.foregroundColor(Color.graybb)
.multilineTextAlignment(.center)
.padding(.top, 12)

View File

@@ -88,7 +88,7 @@ struct CreatorFollowNotifyItem: View {
Image(image)
Text(title)
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee)
Spacer()

View File

@@ -27,7 +27,7 @@ struct LivePaymentDialog: View {
.foregroundColor(Color.graybb)
Text(desc)
.font(.custom(Font.medium.rawValue, size: 15))
.appFont(size: 15, weight: .medium)
.foregroundColor(Color.graybb)
.multilineTextAlignment(.center)
.lineSpacing(6)
@@ -37,22 +37,22 @@ struct LivePaymentDialog: View {
VStack(spacing: 13.3) {
HStack(spacing: 6.7) {
Text("- 시작 시각 : ")
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.graybb)
Text(startDateTime)
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.graybb)
}
HStack(spacing: 6.7) {
Text("- 현재 시각 :")
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.graybb)
.multilineTextAlignment(.leading)
Text(nowDateTime)
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.graybb)
}
}
@@ -63,7 +63,7 @@ struct LivePaymentDialog: View {
.padding(.top, 21.3)
Text(desc)
.font(.custom(Font.medium.rawValue, size: 15))
.appFont(size: 15, weight: .medium)
.foregroundColor(Color.graybb)
.lineSpacing(6)
.padding(.top, 21.3)

View File

@@ -31,7 +31,7 @@ struct LiveRoomPasswordDialog: View {
.padding(.top, 40)
Text("비공개 라이브의 입장 비밀번호를\n입력해 주세요.")
.font(.custom(Font.medium.rawValue, size: 13))
.appFont(size: 13, weight: .medium)
.foregroundColor(Color(hex: "bbbbbb"))
.multilineTextAlignment(.center)
.padding(.top, 12)

View File

@@ -127,7 +127,7 @@ struct MemberProfileDialog: View {
Text(viewModel.errorMessage)
.padding(.vertical, 13.3)
.frame(width: screenSize().width - 66.7, alignment: .center)
.font(.custom(Font.medium.rawValue, size: 12))
.appFont(size: 12, weight: .medium)
.background(Color.button)
.foregroundColor(Color.white)
.multilineTextAlignment(.leading)

View File

@@ -49,7 +49,7 @@ struct SodaDialog: View {
.padding(.top, 40)
Text(desc)
.font(.custom(Font.medium.rawValue, size: 15))
.appFont(size: 15, weight: .medium)
.foregroundColor(Color.graybb)
.multilineTextAlignment(textAlignment)
.padding(.top, 12)