diff --git a/SodaLive/Resources/Assets.xcassets/ic_comment_dark_green.imageset/ic_comment_dark_green.png b/SodaLive/Resources/Assets.xcassets/ic_comment_dark_green.imageset/ic_comment_dark_green.png deleted file mode 100644 index b365835..0000000 Binary files a/SodaLive/Resources/Assets.xcassets/ic_comment_dark_green.imageset/ic_comment_dark_green.png and /dev/null differ diff --git a/SodaLive/Resources/Assets.xcassets/ic_heart_dark_green.imageset/Contents.json b/SodaLive/Resources/Assets.xcassets/ic_comment_white.imageset/Contents.json similarity index 85% rename from SodaLive/Resources/Assets.xcassets/ic_heart_dark_green.imageset/Contents.json rename to SodaLive/Resources/Assets.xcassets/ic_comment_white.imageset/Contents.json index c925ca9..a453bf6 100644 --- a/SodaLive/Resources/Assets.xcassets/ic_heart_dark_green.imageset/Contents.json +++ b/SodaLive/Resources/Assets.xcassets/ic_comment_white.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "ic_heart_dark_green.png", + "filename" : "ic_comment_white.png", "idiom" : "universal", "scale" : "1x" }, diff --git a/SodaLive/Resources/Assets.xcassets/ic_comment_white.imageset/ic_comment_white.png b/SodaLive/Resources/Assets.xcassets/ic_comment_white.imageset/ic_comment_white.png new file mode 100644 index 0000000..a62f55c Binary files /dev/null and b/SodaLive/Resources/Assets.xcassets/ic_comment_white.imageset/ic_comment_white.png differ diff --git a/SodaLive/Resources/Assets.xcassets/ic_heart_dark_green.imageset/ic_heart_dark_green.png b/SodaLive/Resources/Assets.xcassets/ic_heart_dark_green.imageset/ic_heart_dark_green.png deleted file mode 100644 index d45b691..0000000 Binary files a/SodaLive/Resources/Assets.xcassets/ic_heart_dark_green.imageset/ic_heart_dark_green.png and /dev/null differ diff --git a/SodaLive/Resources/Assets.xcassets/ic_comment_dark_green.imageset/Contents.json b/SodaLive/Resources/Assets.xcassets/ic_heart_white.imageset/Contents.json similarity index 84% rename from SodaLive/Resources/Assets.xcassets/ic_comment_dark_green.imageset/Contents.json rename to SodaLive/Resources/Assets.xcassets/ic_heart_white.imageset/Contents.json index 6575b5e..f004e63 100644 --- a/SodaLive/Resources/Assets.xcassets/ic_comment_dark_green.imageset/Contents.json +++ b/SodaLive/Resources/Assets.xcassets/ic_heart_white.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "ic_comment_dark_green.png", + "filename" : "ic_heart_white.png", "idiom" : "universal", "scale" : "1x" }, diff --git a/SodaLive/Resources/Assets.xcassets/ic_heart_white.imageset/ic_heart_white.png b/SodaLive/Resources/Assets.xcassets/ic_heart_white.imageset/ic_heart_white.png new file mode 100644 index 0000000..86b4c25 Binary files /dev/null and b/SodaLive/Resources/Assets.xcassets/ic_heart_white.imageset/ic_heart_white.png differ diff --git a/SodaLive/Sources/Home/HomeWeeklyChartView.swift b/SodaLive/Sources/Home/HomeWeeklyChartView.swift index e60a04f..42a5a89 100644 --- a/SodaLive/Sources/Home/HomeWeeklyChartView.swift +++ b/SodaLive/Sources/Home/HomeWeeklyChartView.swift @@ -11,10 +11,10 @@ struct HomeWeeklyChartView: View { @AppStorage("token") private var token: String = UserDefaults.string(forKey: UserDefaultsKey.token) let rows = [ - GridItem(.fixed(60), alignment: .leading), - GridItem(.fixed(60), alignment: .leading), - GridItem(.fixed(60), alignment: .leading), - GridItem(.fixed(60), alignment: .leading) + GridItem(.fixed(60), spacing: 16, alignment: .leading), + GridItem(.fixed(60), spacing: 16, alignment: .leading), + GridItem(.fixed(60), spacing: 16, alignment: .leading), + GridItem(.fixed(60), spacing: 16, alignment: .leading) ] let contentList: [GetAudioContentRankingItem] diff --git a/SodaLive/Sources/Home/RecommendChannel/RecommendChannelContentItemView.swift b/SodaLive/Sources/Home/RecommendChannel/RecommendChannelContentItemView.swift index 7535f50..dad4cd5 100644 --- a/SodaLive/Sources/Home/RecommendChannel/RecommendChannelContentItemView.swift +++ b/SodaLive/Sources/Home/RecommendChannel/RecommendChannelContentItemView.swift @@ -30,19 +30,19 @@ struct RecommendChannelContentItemView: View { HStack(spacing: 12) { HStack(spacing: 4) { - Image("ic_heart_dark_green") + Image("ic_heart_white") Text("\(item.likeCount)") .font(.custom(Font.preRegular.rawValue, size: 18)) - .foregroundColor(Color(hex: "B0BEC5")) + .foregroundColor(.white) } HStack(spacing: 4) { - Image("ic_comment_dark_green") + Image("ic_comment_white") Text("\(item.commentCount)") .font(.custom(Font.preRegular.rawValue, size: 18)) - .foregroundColor(Color(hex: "B0BEC5")) + .foregroundColor(.white) } } } diff --git a/SodaLive/Sources/Home/RecommendChannel/RecommendChannelItemView.swift b/SodaLive/Sources/Home/RecommendChannel/RecommendChannelItemView.swift index 1c29811..2eb077a 100644 --- a/SodaLive/Sources/Home/RecommendChannel/RecommendChannelItemView.swift +++ b/SodaLive/Sources/Home/RecommendChannel/RecommendChannelItemView.swift @@ -31,7 +31,7 @@ struct RecommendChannelItemView: View { HStack(spacing: 4) { Text("콘텐츠") .font(.custom(Font.preRegular.rawValue, size: 18)) - .foregroundColor(Color(hex: "B0BEC5")) + .foregroundColor(.white) Text("\(item.contentCount)") .font(.custom(Font.preBold.rawValue, size: 18))