커뮤니티 댓글, 콘텐츠 댓글, 팬토크

- 글자 크기, 색상 수정
This commit is contained in:
Yu Sung
2024-02-24 23:49:50 +09:00
parent 0584b17b76
commit bc11519120
3 changed files with 21 additions and 21 deletions

View File

@@ -33,8 +33,8 @@ struct AudioContentCommentItemView: View {
VStack(alignment: .leading, spacing: 0) {
Text(commentItem.nickname)
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(Color(hex: "eeeeee"))
.font(.custom(Font.medium.rawValue, size: 12))
.foregroundColor(Color.gray90)
Text(commentItem.date)
.font(.custom(Font.medium.rawValue, size: 10.3))
@@ -107,13 +107,13 @@ struct AudioContentCommentItemView: View {
.overlay(
RoundedRectangle(cornerRadius: 10)
.strokeBorder(lineWidth: 1)
.foregroundColor(Color(hex: "3bb9f1"))
.foregroundColor(Color.button)
)
} else {
VStack(alignment: .leading, spacing: 13.3) {
Text(commentItem.comment)
.font(.custom(Font.medium.rawValue, size: 12))
.foregroundColor(Color(hex: "777777"))
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(Color.grayee)
.fixedSize(horizontal: false, vertical: true)
.padding(.top, commentItem.donationCan > 0 ? 0 : 13.3)
@@ -127,7 +127,7 @@ struct AudioContentCommentItemView: View {
) {
Text(commentItem.replyCount > 0 ? "답글 \(commentItem.replyCount)" : "답글 쓰기")
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(Color(hex: "9970ff"))
.foregroundColor(Color.button)
}
}
}