From 72edc21df68c15b334224656ba322503636938f1 Mon Sep 17 00:00:00 2001 From: k2645 Date: Tue, 12 Nov 2024 22:09:28 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20color=20set=20=EC=9D=B4=EB=A6=84=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Source/CustomAlbum/View/CustomAlbumViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MemorialHouse/MHPresentation/MHPresentation/Source/CustomAlbum/View/CustomAlbumViewController.swift b/MemorialHouse/MHPresentation/MHPresentation/Source/CustomAlbum/View/CustomAlbumViewController.swift index f332f87b..6692d339 100644 --- a/MemorialHouse/MHPresentation/MHPresentation/Source/CustomAlbum/View/CustomAlbumViewController.swift +++ b/MemorialHouse/MHPresentation/MHPresentation/Source/CustomAlbum/View/CustomAlbumViewController.swift @@ -62,7 +62,7 @@ final class CustomAlbumViewController: UIViewController { navigationItem.title = "사진 선택" navigationController?.navigationBar.titleTextAttributes = [ NSAttributedString.Key.font: UIFont.ownglyphBerry(size: 17), - NSAttributedString.Key.foregroundColor: UIColor.title] + NSAttributedString.Key.foregroundColor: UIColor.mhTitle] let closeAction = UIAction { [weak self] _ in guard let self else { return } self.navigationController?.popViewController(animated: true) @@ -70,7 +70,7 @@ final class CustomAlbumViewController: UIViewController { let leftBarButton = UIBarButtonItem(title: "닫기", primaryAction: closeAction) leftBarButton.setTitleTextAttributes( [NSAttributedString.Key.font: UIFont.ownglyphBerry(size: 17), - NSAttributedString.Key.foregroundColor: UIColor.title], + NSAttributedString.Key.foregroundColor: UIColor.mhTitle], for: .normal ) navigationItem.leftBarButtonItem = leftBarButton