diff --git a/iOS/AppAssets.swift b/iOS/AppAssets.swift index b260617c1..5a2e1fa11 100644 --- a/iOS/AppAssets.swift +++ b/iOS/AppAssets.swift @@ -218,8 +218,8 @@ struct AppAssets { }() static var starredFeedImage: IconImage = { - let image = UIImage(systemName: "star.fill")! - return IconImage(image, isSymbol: true, preferredColor: AppAssets.starColor.cgColor) + let image = UIImage(named: "smartFeedStar")! + return IconImage(image, isSymbol: true, preferredColor: nil) }() static var tickMarkColor: UIColor = { @@ -232,8 +232,8 @@ struct AppAssets { }() static var todayFeedImage: IconImage = { - let image = UIImage(systemName: "sun.max.fill")! - return IconImage(image, isSymbol: true, preferredColor: UIColor.systemOrange.cgColor) + let image = UIImage(named: "smartFeedToday")! + return IconImage(image, isSymbol: true, preferredColor: nil) }() static var trashImage: UIImage = { @@ -241,8 +241,8 @@ struct AppAssets { }() static var unreadFeedImage: IconImage = { - let image = UIImage(systemName: "largecircle.fill.circle")! - return IconImage(image, isSymbol: true, preferredColor: AppAssets.secondaryAccentColor.cgColor) + let image = UIImage(named: "smartFeedUnread")! + return IconImage(image, isSymbol: true, preferredColor: nil) }() static var vibrantTextColor: UIColor = { diff --git a/iOS/Resources/Assets.xcassets/smartFeedStar.imageset/Contents.json b/iOS/Resources/Assets.xcassets/smartFeedStar.imageset/Contents.json new file mode 100644 index 000000000..66a9bd099 --- /dev/null +++ b/iOS/Resources/Assets.xcassets/smartFeedStar.imageset/Contents.json @@ -0,0 +1,12 @@ +{ + "images" : [ + { + "filename" : "smartfeed.pdf", + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/iOS/Resources/Assets.xcassets/smartFeedStar.imageset/smartfeed.pdf b/iOS/Resources/Assets.xcassets/smartFeedStar.imageset/smartfeed.pdf new file mode 100644 index 000000000..e6d654435 Binary files /dev/null and b/iOS/Resources/Assets.xcassets/smartFeedStar.imageset/smartfeed.pdf differ diff --git a/iOS/Resources/Assets.xcassets/smartFeedToday.imageset/Contents.json b/iOS/Resources/Assets.xcassets/smartFeedToday.imageset/Contents.json new file mode 100644 index 000000000..c2f498767 --- /dev/null +++ b/iOS/Resources/Assets.xcassets/smartFeedToday.imageset/Contents.json @@ -0,0 +1,22 @@ +{ + "images" : [ + { + "filename" : "today-any.pdf", + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "today-dark.pdf", + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/iOS/Resources/Assets.xcassets/smartFeedToday.imageset/today-any.pdf b/iOS/Resources/Assets.xcassets/smartFeedToday.imageset/today-any.pdf new file mode 100644 index 000000000..82736f90c Binary files /dev/null and b/iOS/Resources/Assets.xcassets/smartFeedToday.imageset/today-any.pdf differ diff --git a/iOS/Resources/Assets.xcassets/smartFeedToday.imageset/today-dark.pdf b/iOS/Resources/Assets.xcassets/smartFeedToday.imageset/today-dark.pdf new file mode 100644 index 000000000..e2dbb04a7 Binary files /dev/null and b/iOS/Resources/Assets.xcassets/smartFeedToday.imageset/today-dark.pdf differ diff --git a/iOS/Resources/Assets.xcassets/smartFeedUnread.imageset/Contents.json b/iOS/Resources/Assets.xcassets/smartFeedUnread.imageset/Contents.json new file mode 100644 index 000000000..4272a594e --- /dev/null +++ b/iOS/Resources/Assets.xcassets/smartFeedUnread.imageset/Contents.json @@ -0,0 +1,22 @@ +{ + "images" : [ + { + "filename" : "unread-any.pdf", + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "unread-dark.pdf", + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/iOS/Resources/Assets.xcassets/smartFeedUnread.imageset/unread-any.pdf b/iOS/Resources/Assets.xcassets/smartFeedUnread.imageset/unread-any.pdf new file mode 100644 index 000000000..cf4db360e Binary files /dev/null and b/iOS/Resources/Assets.xcassets/smartFeedUnread.imageset/unread-any.pdf differ diff --git a/iOS/Resources/Assets.xcassets/smartFeedUnread.imageset/unread-dark.pdf b/iOS/Resources/Assets.xcassets/smartFeedUnread.imageset/unread-dark.pdf new file mode 100644 index 000000000..8b4443ee2 Binary files /dev/null and b/iOS/Resources/Assets.xcassets/smartFeedUnread.imageset/unread-dark.pdf differ