Variable PredefinedToCustomStyleReplacerConst

PredefinedToCustomStyleReplacer: MutationOperator = ...

This operator matches a SwiftUI view that uses a standard style modifier, such as foregroundStyle(.primary). The operator creates mutations that replace the standard style modifier with a custom white color.

Before:

Text("Strawberry")
.foregroundStyle(.red)

After:

Text("Strawberry")
.foregroundStyle(Color(white: 1))

Applicable WCAG Success Criteria: