struct ContentView: View {
   var body: some View {
      Text("Hello World")
         .font(.largeTitle)
         .padding(20)
         .background(Color.blue.mix(with: Color.red, by: 0.5))
   }
}