elevatedAssistChipColors

Creates a ChipColors that represents the default container, label, and icon colors used in an elevated AssistChip.


@Composable
fun elevatedAssistChipColors(containerColor: Color = Color.Unspecified, labelColor: Color = Color.Unspecified, leadingIconContentColor: Color = Color.Unspecified, trailingIconContentColor: Color = Color.Unspecified, disabledContainerColor: Color = Color.Unspecified, disabledLabelColor: Color = Color.Unspecified, disabledLeadingIconContentColor: Color = Color.Unspecified, disabledTrailingIconContentColor: Color = Color.Unspecified): ChipColors

Creates a ChipColors that represents the default container, label, and icon colors used in an elevated AssistChip.

Parameters

containerColor

the container color of this chip when enabled

labelColor

the label color of this chip when enabled

leadingIconContentColor

the color of this chip's start icon when enabled

trailingIconContentColor

the color of this chip's end icon when enabled

disabledContainerColor

the container color of this chip when not enabled

disabledLabelColor

the label color of this chip when not enabled

disabledLeadingIconContentColor

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

disabledTrailingIconContentColor

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