diff --git a/SodaLive/Sources/Content/Detail/Comment/AudioContentCommentListView.swift b/SodaLive/Sources/Content/Detail/Comment/AudioContentCommentListView.swift index c0c1dcb..44e0aef 100644 --- a/SodaLive/Sources/Content/Detail/Comment/AudioContentCommentListView.swift +++ b/SodaLive/Sources/Content/Detail/Comment/AudioContentCommentListView.swift @@ -86,8 +86,8 @@ struct AudioContentCommentListView: View { .autocapitalization(.none) .disableAutocorrection(true) .font(.custom(Font.medium.rawValue, size: 13.3)) - .foregroundColor(Color(hex: "eeeeee")) - .accentColor(Color(hex: "3bb9f1")) + .foregroundColor(Color.grayee) + .accentColor(Color.button) .keyboardType(.default) .padding(.horizontal, 13.3) @@ -102,20 +102,18 @@ struct AudioContentCommentListView: View { viewModel.registerComment() } } - .background(Color(hex: "232323")) + .background(Color.gray23) .cornerRadius(10) .overlay( RoundedRectangle(cornerRadius: 10) .strokeBorder(lineWidth: 1) - .foregroundColor(Color(hex: "3bb9f1")) + .foregroundColor(Color.button) ) - - Spacer() } .padding(.horizontal, 13.3) Rectangle() - .foregroundColor(Color(hex: "595959")) + .foregroundColor(Color.gray59) .frame(height: 0.5) .padding(.top, 12) .padding(.bottom, 13.3)