fix: use concrete tertiary color for row chevrons inside tinted buttons

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-06-12 18:43:59 -04:00
parent 1d5e79ba7c
commit ee92b1b248
3 changed files with 5 additions and 4 deletions

View File

@@ -80,7 +80,7 @@ struct NewRuleSheet: View {
Spacer()
Image(systemName: "chevron.right")
.font(.caption.weight(.semibold))
.foregroundStyle(.tertiary)
.foregroundStyle(Color(.tertiaryLabel))
}
}
.accessibilityIdentifier("ruleKind-\(kind.rawValue)")

View File

@@ -216,7 +216,7 @@ struct RuleEditorView: View {
.foregroundStyle(Color.secondary)
Image(systemName: "chevron.right")
.font(.caption.weight(.semibold))
.foregroundStyle(.tertiary)
.foregroundStyle(Color(.tertiaryLabel))
}
}
.accessibilityIdentifier("selectedAppsRow")