Hi Melissa! It was an example that previously my primary color was a system color, and now I use my own custom color.
You can create an extension on Color like this —
extension Color {
static let cafeBody = Color.init(red: 111/255, green: 78/255, blue: 55/255)
And use it like this -
Text(landmark.description)
.font(.body) .fontWeight(.medium) .foregroundColor(.cafeBody)