colors

@Composable
fun colors(containerColor: Color = ListTokens.ListItemContainerColor.value, headlineColor: Color = ListTokens.ListItemLabelTextColor.value, leadingIconColor: Color = ListTokens.ListItemLeadingIconColor.value, overlineColor: Color = ListTokens.ListItemOverlineColor.value, supportingColor: Color = ListTokens.ListItemSupportingTextColor.value, trailingIconColor: Color = ListTokens.ListItemTrailingIconColor.value, disabledHeadlineColor: Color = ListTokens.ListItemDisabledLabelTextColor.value.copy( alpha = ListTokens.ListItemDisabledLabelTextOpacity ), disabledLeadingIconColor: Color = ListTokens.ListItemDisabledLeadingIconColor.value.copy( alpha = ListTokens.ListItemDisabledLeadingIconOpacity ), disabledTrailingIconColor: Color = ListTokens.ListItemDisabledTrailingIconColor.value.copy( alpha = ListTokens.ListItemDisabledTrailingIconOpacity )): ListItemColors

Creates a ListItemColors that represents the default container and content colors used in a ListItem.

Parameters

containerColor

the container color of this list item when enabled.

headlineColor

the headline text content color of this list item when enabled.

leadingIconColor

the color of this list item's leading content when enabled.

overlineColor

the overline text color of this list item

supportingColor

the supporting text color of this list item

trailingIconColor

the color of this list item's trailing content when enabled.

disabledHeadlineColor

the content color of this list item when not enabled.

disabledLeadingIconColor

the color of this list item's leading content when not enabled.

disabledTrailingIconColor

the color of this list item's trailing content when not enabled.