Variable PredefinedToCustomColorReplacerConst

PredefinedToCustomColorReplacer: MutationOperator = ...

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

Before:

Text("Strawberry")
.foregroundColor(.red)

After:

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

Applicable WCAG Success Criteria: