suggestionChipColors

Creates a ChipColors that represents the default container, label, and icon colors used in a flat SuggestionChip.


@Composable
fun suggestionChipColors(containerColor: Color = Color.Unspecified, labelColor: Color = Color.Unspecified, iconContentColor: Color = Color.Unspecified, disabledContainerColor: Color = Color.Unspecified, disabledLabelColor: Color = Color.Unspecified, disabledIconContentColor: Color = Color.Unspecified): ChipColors

Creates a ChipColors that represents the default container, label, and icon colors used in a flat SuggestionChip.

Parameters

containerColor

the container color of this chip when enabled

labelColor

the label color of this chip when enabled

iconContentColor

the color of this chip's icon when enabled

disabledContainerColor

the container color of this chip when not enabled

disabledLabelColor

the label color of this chip when not enabled

disabledIconContentColor

the color of this chip's icon when not enabled