<div class='sourceset sourceset-android'>Android</div>

```kotlin
public object StepperDefaults
```

Defaults used by [Stepper](/jetpack-compose/androidx.wear.compose/compose-material3/components/Stepper).

## Functions

```kotlin
@Composable public fun colors(): StepperColors
```

Creates a [StepperColors](/jetpack-compose/androidx.wear.compose/compose-material3/classes/StepperColors) that represents the default colors used in a [Stepper](/jetpack-compose/androidx.wear.compose/compose-material3/components/Stepper).

<h2 id="colors-contentcolor-buttoncontainercolor-buttoniconcolor-disabledcontentcolor-disabledbuttoncontainercolor-disabledbuttoniconcolor">colors</h2>

```kotlin
@Composable
public fun colors(
    contentColor: Color = Color.Unspecified,
    buttonContainerColor: Color = Color.Unspecified,
    buttonIconColor: Color = Color.Unspecified,
    disabledContentColor: Color = Color.Unspecified,
    disabledButtonContainerColor: Color = Color.Unspecified,
    disabledButtonIconColor: Color = Color.Unspecified,
): StepperColors
```

Creates a [StepperColors](/jetpack-compose/androidx.wear.compose/compose-material3/classes/StepperColors) that represents the default colors used in a [Stepper](/jetpack-compose/androidx.wear.compose/compose-material3/components/Stepper).

#### Parameters

| | |
| --- | --- |
| contentColor | the content color for this [Stepper](/jetpack-compose/androidx.wear.compose/compose-material3/components/Stepper). |
| buttonContainerColor | the button container color for this [Stepper](/jetpack-compose/androidx.wear.compose/compose-material3/components/Stepper). |
| buttonIconColor | the button icon color for this [Stepper](/jetpack-compose/androidx.wear.compose/compose-material3/components/Stepper). |
| disabledContentColor | the disabled content color for this [Stepper](/jetpack-compose/androidx.wear.compose/compose-material3/components/Stepper). |
| disabledButtonContainerColor | the disabled button container color for this [Stepper](/jetpack-compose/androidx.wear.compose/compose-material3/components/Stepper). |
| disabledButtonIconColor | the disabled button icon color for this [Stepper](/jetpack-compose/androidx.wear.compose/compose-material3/components/Stepper). |