outlinedCardColors

@Composable
fun outlinedCardColors(): CardColors

Creates a CardColors that represents the default container and content colors used in an OutlinedCard.


@Composable
fun outlinedCardColors(containerColor: Color = Color.Unspecified, contentColor: Color = contentColorFor(containerColor), disabledContainerColor: Color = Color.Unspecified, disabledContentColor: Color = contentColorFor(containerColor).copy(DisabledAlpha)): CardColors

Creates a CardColors that represents the default container and content colors used in an OutlinedCard.

Parameters

containerColor

the container color of this OutlinedCard when enabled.

contentColor

the content color of this OutlinedCard when enabled.

disabledContainerColor

the container color of this OutlinedCard when not enabled.

disabledContentColor

the content color of this OutlinedCard when not enabled.