Const
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.
foregroundColor(.primary)
Before:
Text("Strawberry") .foregroundColor(.red) Copy
Text("Strawberry") .foregroundColor(.red)
After:
Text("Strawberry") .foregroundColor(Color(white: 1)) Copy
Text("Strawberry") .foregroundColor(Color(white: 1))
Applicable WCAG Success Criteria:
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:
After:
Applicable WCAG Success Criteria: