From f4d95e67557f296fc47c20bf6ec4b216b56a44a7 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 30 Aug 2024 18:00:46 +0900 Subject: [PATCH] =?UTF-8?q?=EB=8C=93=EA=B8=80=20=EC=9E=85=EB=A0=A5?= =?UTF-8?q?=EC=B0=BD=20-=20=EC=9A=B0=EC=B8=A1=EC=97=90=20=EB=B6=88?= =?UTF-8?q?=ED=95=84=EC=9A=94=ED=95=9C=20=EB=B9=88=EC=B9=B8=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Detail/Comment/AudioContentCommentListView.swift | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) 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)