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

```kotlin
public object RemoteTextButtonDefaults
```

Contains the default values used by [RemoteTextButton](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteTextButton).

## Functions

<h2 id="textbuttoncolors">textButtonColors</h2>

```kotlin
@Composable
public fun textButtonColors(): RemoteTextButtonColors
```

Returns a [TextButtonColors](/jetpack-compose/androidx.wear.compose/compose-material3/classes/TextButtonColors) for a text button - by default, a transparent background with
contrasting content color. If the button is disabled then the colors default to
[RemoteColorScheme.onSurface](/jetpack-compose/androidx.wear.compose.remote/remote-material3/classes/RemoteColorScheme) with suitable alpha values applied.

<hr class="docs-overload-divider">

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

```kotlin
@Composable
public fun textButtonColors(
    containerColor: RemoteColor = RemoteColor(Color.Transparent),
    contentColor: RemoteColor? = null,
    disabledContainerColor: RemoteColor = RemoteColor(Color.Transparent),
    disabledContentColor: RemoteColor? = null,
): RemoteTextButtonColors
```

Returns a [RemoteTextButtonColors](/jetpack-compose/androidx.wear.compose.remote/remote-material3/classes/RemoteTextButtonColors) for a text button - by default, a transparent background
with contrasting content color. If the button is disabled then the colors default to
[RemoteColorScheme.onSurface](/jetpack-compose/androidx.wear.compose.remote/remote-material3/classes/RemoteColorScheme) with suitable alpha values applied.

#### 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 |