Incorrect color for inline navigation bar title when dark mode AND reduce transparency ON.

I reproduced this in iPhone 17 and iPhone 17 Pro simulators running iOS 26.0

import SwiftUI

struct ContentView: View {
    var body: some View {
        NavigationStack {
            ScrollView {
                VStack {
                    ForEach(0..<100) { i in
                        Text("Row \(i)")
                            .frame(maxWidth: .infinity)
                    }
                }
                .padding()
            }
            .navigationTitle("Toolbar Test")
            .navigationBarTitleDisplayMode(.inline) // or .automatic
        }
    }
}
  1. Run this code in a vanilla SwiftUI app.
  2. Toggle the appearance to dark mode.
  3. In the simulator's Settings app -> Accessibility -> Display and Text Size. Turn ON "Reduce Transparency".
  4. Go back to the app and start scrolling if you need to.

You can observe that the title is unreadable - black text on a black navigation bar.

Could you please open a bug report and post the FB number here once you do. Bug Reporting: How and Why? has tips on creating your bug report.

Incorrect color for inline navigation bar title when dark mode AND reduce transparency ON.
 
 
Q