Tinting/Coloring tabs when using SidebarAdaptableTabViewStyle like List

SwiftUI.List allows for customization using .listItemTint, .tint, or .foregroundStyle. This can be used to color individual items in the list, other than the app's specified accent color.

Is there an equivalent feature to customize individual Tab's icon or label, when using TabView's SidebarAdaptableTabViewStyle, and its in the sidebar style.

From what I understand, there needs to be a modifier applied directly to Tab unlike List, and not just the label.
Since there isn't any color/tint modifiers, is it not possible?

Is there an equivalent feature to customize individual Tab's icon or label, when using TabView's SidebarAdaptableTabViewStyle, and its in the sidebar style.

That's currently not supported. Navigation controls are monochromatic and color usage are not recommend. You should only tint key actions, status indicators and selection states.

You can use .tint() to provide a color for the active tab bar item.

Tinting/Coloring tabs when using SidebarAdaptableTabViewStyle like List
 
 
Q