outlinedIconToggleButtonVibrantColors

Creates a IconToggleButtonColors that represents the default colors used in a OutlinedIconToggleButton.

See outlinedIconToggleButtonColors for default values that applies LocalContentColor to the icon and down the UI tree.


@Composable
fun outlinedIconToggleButtonVibrantColors(containerColor: Color = Color.Unspecified, contentColor: Color = Color.Unspecified, disabledContainerColor: Color = Color.Unspecified, disabledContentColor: Color = contentColor.copy(alpha = OutlinedIconButtonTokens.DisabledOpacity), checkedContainerColor: Color = Color.Unspecified, checkedContentColor: Color = contentColorFor(checkedContainerColor)): IconToggleButtonColors

Creates a IconToggleButtonColors that represents the default colors used in a OutlinedIconToggleButton.

See outlinedIconToggleButtonColors for default values that applies LocalContentColor to the icon and down the UI tree.

Parameters

containerColor

the container color of this icon button when enabled.

contentColor

the content color of this icon button when enabled.

disabledContainerColor

the container color of this icon button when not enabled.

disabledContentColor

the content color of this icon button when not enabled.

checkedContainerColor

the container color of this icon button when checked.

checkedContentColor

the content color of this icon button when checked.