From 92159c492b524fdfb4227a47d5fe66f2b41d7b04 Mon Sep 17 00:00:00 2001 From: Chandrala Date: Wed, 30 Oct 2024 17:36:05 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=83=AD=EB=B0=94=20=ED=83=80=EC=9D=B4?= =?UTF-8?q?=ED=8B=80=20=ED=8F=B0=ED=8A=B8=20=EC=88=98=EC=A0=95(#154)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Presentation/Sources/TabBar/RecordyTabBarController.swift | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Presentation/Sources/TabBar/RecordyTabBarController.swift b/Presentation/Sources/TabBar/RecordyTabBarController.swift index b8e51fa..2e925b5 100644 --- a/Presentation/Sources/TabBar/RecordyTabBarController.swift +++ b/Presentation/Sources/TabBar/RecordyTabBarController.swift @@ -25,8 +25,11 @@ public final class RecordyTabBarController: UITabBarController, UITabBarControll private func setStyle() { let appearance = UITabBarAppearance() - appearance.backgroundColor = CommonAsset.recordyBG.color - appearance.stackedLayoutAppearance.normal.titleTextAttributes = [.foregroundColor: UIColor.clear] + appearance.backgroundColor = CommonAsset.viskitBlack.color + let font = ViskitFont.title3.font + appearance.stackedLayoutAppearance.normal.titleTextAttributes = [ + .font: font + ] appearance.stackedLayoutAppearance.selected.titleTextAttributes = [.foregroundColor: UIColor.clear] tabBar.backgroundColor = .clear tabBar.tintColor = .clear