SwiftUI 26: How to change new toggles background color?

The .tint modifier doesn't seem to change the background color on the redesigned macOS 26 toggles.

For example, using:

Toggle("", isOn: isOn)
    .toggleStyle(.switch)
    .tint(.cyan)
    .scaleEffect(0.8)
    .opacity(isEnabled ? 1.0 : 0.4)

the toggles use the system accent color instead of cyan.

Has SwiftUI introduced a new modifier for that? I couldn't find anything in the June 2025 changes.

SwiftUI 26: How to change new toggles background color?
 
 
Q