Is there a way to systematically access the standard, dynamic background color for SwiftUI views, regardless of whether the user be in Light or Dark Mode?
For example, I know the following can be used to get the primary (e.g. text) color:
let textColor = Color.primary
...but I don't see anything similar for getting the background color.
let backgroundColor = Color.??? // Not available
I'm looking for something that works on both iOS and macOS.