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

```kotlin
public class RemoteIconButtonColors(
    public val containerColor: RemoteColor,
    public val contentColor: RemoteColor,
    public val disabledContainerColor: RemoteColor,
    public val disabledContentColor: RemoteColor,
)
```

Represents the container and content colors used in a text button in different states.

#### Parameters

| | |
| --- | --- |
| containerColor | the background color of this text button when enabled. |
| contentColor | the content color of this text button when enabled. |
| disabledContainerColor | the background color of this text button when not enabled. |
| disabledContentColor | the content color of this text button when not enabled. |

## Functions

<h2 id="copy-containercolor-contentcolor-disabledcontainercolor-disabledcontentcolor">copy</h2>

```kotlin
public fun copy(
        containerColor: RemoteColor? = this.containerColor,
        contentColor: RemoteColor? = this.contentColor,
        disabledContainerColor: RemoteColor? = this.disabledContainerColor,
        disabledContentColor: RemoteColor? = this.disabledContentColor,
    ): RemoteIconButtonColors
```

Returns a copy of this RemoteIconButtonColors optionally overriding some of the values.

#### Parameters

| | |
| --- | --- |
| containerColor | the background color of this text button when enabled. |
| contentColor | the content color of this text button when enabled. |
| disabledContainerColor | the background color of this text button when not enabled. |
| disabledContentColor | the content color of this text button when not enabled. |