elevatedFilterChipColors

Creates a SelectableChipColors that represents the default container and content colors used in an elevated FilterChip.


@Composable
fun elevatedFilterChipColors(containerColor: Color = Color.Unspecified, labelColor: Color = Color.Unspecified, iconColor: Color = Color.Unspecified, disabledContainerColor: Color = Color.Unspecified, disabledLabelColor: Color = Color.Unspecified, disabledLeadingIconColor: Color = Color.Unspecified, disabledTrailingIconColor: Color = Color.Unspecified, selectedContainerColor: Color = Color.Unspecified, disabledSelectedContainerColor: Color = Color.Unspecified, selectedLabelColor: Color = Color.Unspecified, selectedLeadingIconColor: Color = Color.Unspecified, selectedTrailingIconColor: Color = Color.Unspecified): SelectableChipColors

Creates a SelectableChipColors that represents the default container and content colors used in an elevated FilterChip.

Parameters

containerColor

the container color of this chip when enabled

labelColor

the label color of this chip when enabled

iconColor

the color of this chip's start and end icons when enabled

disabledContainerColor

the container color of this chip when not enabled

disabledLabelColor

the label color of this chip when not enabled

disabledLeadingIconColor

the color of this chip's start icon when not enabled

disabledTrailingIconColor

the color of this chip's end icon when not enabled

selectedContainerColor

the container color of this chip when selected

disabledSelectedContainerColor

the container color of this chip when not enabled and selected

selectedLabelColor

the label color of this chip when selected

selectedLeadingIconColor

the color of this chip's start icon when selected

selectedTrailingIconColor

the color of this chip's end icon when selected