Skip to content

Commit e018ce9

Browse files
committed
chore: #23: 색상 표시 방식 변경 hexcolor 지정 -> DSKit
1 parent 11928c8 commit e018ce9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Projects/Features/FollowFeature/Sources/PlaceDetail/PlaceDetailViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ final class PlaceDetailViewController: UIViewController, PlaceDetailPresentable,
9393
imageView.contentMode = .scaleAspectFill
9494
imageView.clipsToBounds = true
9595
imageView.layer.cornerRadius = 12
96-
imageView.backgroundColor = UIColor(hexCode: "#F5F5F5")
96+
imageView.backgroundColor = DSKitAsset.Colors.white.color
9797
return imageView
9898
}()
9999

Projects/Features/FollowFeature/Sources/PlaceDetail/Views/PhotoCollectionView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ final class PhotoCell: UICollectionViewCell {
173173
imageView.contentMode = .scaleAspectFill
174174
imageView.clipsToBounds = true
175175
imageView.layer.cornerRadius = 8
176-
imageView.backgroundColor = UIColor(hexCode: "#F5F5F5")
176+
imageView.backgroundColor = DSKitAsset.Colors.white.color
177177
return imageView
178178
}()
179179

0 commit comments

Comments
 (0)