struct ContentView: View { @State private var bgColor = Color(.red) var body: some View { VStack { ColorPicker("Pick a color", selection: $bgColor) } } }