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

```kotlin
public class RemoteTextButtonColors(
    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.

See [TextButtonDefaults.filledTextButtonColors](/jetpack-compose/androidx.wear.compose/compose-material3/objects/TextButtonDefaults),
[TextButtonDefaults.filledTonalTextButtonColors](/jetpack-compose/androidx.wear.compose/compose-material3/objects/TextButtonDefaults), [TextButtonDefaults.textButtonColors](/jetpack-compose/androidx.wear.compose/compose-material3/objects/TextButtonDefaults) and
[TextButtonDefaults.outlinedTextButtonColors](/jetpack-compose/androidx.wear.compose/compose-material3/objects/TextButtonDefaults) for [TextButtonColors](/jetpack-compose/androidx.wear.compose/compose-material3/classes/TextButtonColors) with different levels of
emphasis.

#### 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,
    ): RemoteTextButtonColors
```

Returns a copy of this RemoteTextButtonColors 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. |