라이브 채팅 폰트

AS-IS : Gmarket Sans
TO-BE : System Font
This commit is contained in:
Yu Sung
2023-12-26 22:22:06 +09:00
parent e43e485154
commit 55d35222a9
4 changed files with 15 additions and 15 deletions

View File

@@ -30,21 +30,21 @@ struct LiveRoomRouletteDonationChatItemView: View {
VStack(alignment: .leading, spacing: 6.7) {
HStack(spacing: 0) {
Text(chatMessage.nickname)
.font(.custom(Font.medium.rawValue, size: 12))
.font(.system(size: 12))
.foregroundColor(.white)
Text("님의 룰렛 결과?")
.font(.custom(Font.light.rawValue, size: 12))
.font(.system(size: 12, weight: .light))
.foregroundColor(.white)
}
HStack(spacing: 0) {
Text("[\(chatMessage.rouletteResult)]")
.font(.custom(Font.medium.rawValue, size: 13))
.font(.system(size: 13))
.foregroundColor(Color(hex: "ffe500"))
Text(" 당첨!")
.font(.custom(Font.medium.rawValue, size: 13))
.font(.system(size: 13))
.foregroundColor(.white)
}
}