internal extension Color {
// Assets.xcassets
static var midnightBlue : Color { Color("midnightBlue", bundle: BundleToken.bundle) }
}
internal extension Image {
// Assets.xcassets
static var abc : Color { Image("abc", bundle: BundleToken.bundle) }
}
Color.midnightBlue // Color
Image.abc // Image
Ah very good point! And you're right, it's not too hard to name custom colours a little more "custom-ly" than just "Red" 😅