mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Make smart feed icon color configurable
This commit is contained in:
@@ -32,10 +32,6 @@ struct AppAssets {
|
||||
return image.maskWithColor(color: AppAssets.chevronDisclosureColor)!
|
||||
}()
|
||||
|
||||
static var cogImage: RSImage = {
|
||||
return RSImage(named: "cogImage")!
|
||||
}()
|
||||
|
||||
static var feedImage: RSImage = {
|
||||
return RSImage(named: "rssImage")!
|
||||
}()
|
||||
@@ -57,6 +53,15 @@ struct AppAssets {
|
||||
return UIColor(named: "selectionBackgroundColor")!
|
||||
}()
|
||||
|
||||
static var smartFeedColor: UIColor = {
|
||||
return UIColor(named: "smartFeedColor")!
|
||||
}()
|
||||
|
||||
static var smartFeedImage: RSImage = {
|
||||
let image = RSImage(named: "smartFeedImage")!
|
||||
return image.maskWithColor(color: AppAssets.smartFeedColor)!
|
||||
}()
|
||||
|
||||
static var starColor: UIColor = {
|
||||
return UIColor(named: "starColor")!
|
||||
}()
|
||||
|
||||
Reference in New Issue
Block a user