라이브 UI 변경

This commit is contained in:
Yu Sung
2024-01-18 17:32:14 +09:00
parent 7ce5a36172
commit 01833fbc1f
37 changed files with 1763 additions and 1135 deletions

View File

@@ -15,19 +15,19 @@ struct LiveRoomJoinChatItemView: View {
HStack(spacing: 0) {
Text("'")
.font(.system(size: 12))
.foregroundColor(Color(hex: "eeeeee"))
.foregroundColor(Color.grayee)
Text(chatMessage.nickname)
.font(.system(size: 12, weight: .bold))
.foregroundColor(Color(hex: "ffdc00"))
.foregroundColor(Color.mainYellow)
Text("'님이 입장하셨습니다.")
.font(.system(size: 12))
.foregroundColor(Color(hex: "eeeeee"))
.foregroundColor(Color.grayee)
}
.padding(.vertical, 6.7)
.frame(width: screenSize().width - 86)
.background(Color(hex: "3d2a6c"))
.background(Color.button.opacity(0.5))
.cornerRadius(4.7)
.padding(.leading, 20)
}