---
title: "StepperColors"
description: "Represents Colors used in [Stepper]."
type: "class"
---

<div class='type'>Class</div>


<a id='references'></a>

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


```kotlin
public class StepperColors(
    public val contentColor: Color,
    public val buttonContainerColor: Color,
    public val buttonIconColor: Color,
    public val disabledContentColor: Color,
    public val disabledButtonContainerColor: Color,
    public val disabledButtonIconColor: Color,
)
```


Represents Colors used in `Stepper`.

#### Parameters

| | |
| --- | --- |
| contentColor | the content color of this `Stepper`. |
| buttonContainerColor | the button background color of this `Stepper`. |
| buttonIconColor | icon tint `Color` for this `Stepper`. |
| disabledContentColor | the content color of this `Stepper` in disabled state. |
| disabledButtonContainerColor | the button background color of this `Stepper` in disabled state. |
| disabledButtonIconColor | icon tint `Color` for this `Stepper` in disabled state. |



## Functions

```kotlin
public fun copy(
        contentColor: Color = this.contentColor,
        buttonContainerColor: Color = this.buttonContainerColor,
        buttonIconColor: Color = this.buttonIconColor,
        disabledContentColor: Color = this.disabledContentColor,
        disabledButtonContainerColor: Color = this.disabledButtonContainerColor,
        disabledButtonIconColor: Color = this.disabledButtonIconColor,
    ): StepperColors
```


Returns a copy of this `StepperColors` optionally overriding some of the values.

#### Parameters

| | |
| --- | --- |
| contentColor | The content color of this `Stepper`. |
| buttonContainerColor | The button background color of this `Stepper`. |
| buttonIconColor | Icon tint `Color` for this `Stepper`. |
| disabledContentColor | The content color of this `Stepper` in disabled state. |
| disabledButtonContainerColor | The button background color of this `Stepper` in disabled state. |
| disabledButtonIconColor | Icon tint `Color` for this `Stepper` in disabled state. |




