Skip to content

Commit

Permalink
Update accessoryCheckmarkColor on visionOS to be white (#1999)
Browse files Browse the repository at this point in the history
  • Loading branch information
joannaquu authored Apr 22, 2024
1 parent badfa8e commit a9ac8e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/FluentUI/Table View/TableViewCellTokenSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public class TableViewCellTokenSet: ControlTokenSet<TableViewCellToken> {
return .uiColor { theme.color(.foreground3) }

case .accessoryCheckmarkColor:
return .uiColor { theme.color(.brandForeground1) }
return .uiColor { Compatibility.isDeviceIdiomVision() ? .white : theme.color(.brandForeground1) }

case .separatorColor:
return .uiColor { theme.color(.stroke2) }
Expand Down

0 comments on commit a9ac8e4

Please sign in to comment.