inputChipColors

Creates a SelectableChipColors that represents the default container, label, and icon colors used in an InputChip.


@Composable
fun inputChipColors(containerColor: Color = Color.Unspecified, labelColor: Color = Color.Unspecified, leadingIconColor: Color = Color.Unspecified, trailingIconColor: 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, label, and icon colors used in an InputChip.

Parameters

containerColor

the container color of this chip when enabled

labelColor

the label color of this chip when enabled

leadingIconColor

the color of this chip's start icon when enabled

trailingIconColor

the color of this chip's start end icon 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