From aa87f0367b6ef3ad982fb47050f2d24f735bdb61 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 26 Jan 2024 12:59:08 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9D=B8=EA=B8=B0=20=EC=BD=98=ED=85=90?= =?UTF-8?q?=EC=B8=A0=20=EC=B9=B4=ED=85=8C=EA=B3=A0=EB=A6=AC=20=EB=B1=83?= =?UTF-8?q?=EC=A7=80=20-=20stroke=20=EC=83=89=EC=83=81=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Content/Main/Ranking/ContentMainRankingSortView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SodaLive/Sources/Content/Main/Ranking/ContentMainRankingSortView.swift b/SodaLive/Sources/Content/Main/Ranking/ContentMainRankingSortView.swift index 19a91de..3a6bab9 100644 --- a/SodaLive/Sources/Content/Main/Ranking/ContentMainRankingSortView.swift +++ b/SodaLive/Sources/Content/Main/Ranking/ContentMainRankingSortView.swift @@ -20,18 +20,18 @@ struct ContentMainRankingSortView: View { let sort = sorts[index] Text(sort) .font(.custom(Font.medium.rawValue, size: 14.7)) - .foregroundColor(Color(hex: selectedSort == sort ? "9970ff" : "777777")) + .foregroundColor(selectedSort == sort ? Color.button : Color.gray77) .padding(.horizontal, 13.3) .padding(.vertical, 9.3) .border( - Color(hex: selectedSort == sort ? "9970ff" : "eeeeee"), + selectedSort == sort ? Color.button : Color.grayee, width: 0.5 ) .cornerRadius(16.7) .overlay( RoundedRectangle(cornerRadius: CGFloat(16.7)) .stroke(lineWidth: 0.5) - .foregroundColor(Color(hex: selectedSort == sort ? "9970ff" : "eeeeee")) + .foregroundColor(selectedSort == sort ? Color.button : Color.grayee) ) .onTapGesture { if selectedSort != sort {