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

```kotlin
public object RemoteCardDefaults
```

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

## Functions

<h2 id="cardcolors">cardColors</h2>

```kotlin
@Composable
@RemoteComposable
public fun cardColors(): RemoteCardColors
```

Creates a [RemoteCardColors](/jetpack-compose/androidx.wear.compose.remote/remote-material3/classes/RemoteCardColors) that represents the default container and content colors used in
a [RemoteCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteCard), [RemoteAppCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteAppCard) or [RemoteTitleCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteTitleCard).

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

<h2 id="cardcolors-containercolor-contentcolor-appnamecolor-timecolor-titlecolor-subtitlecolor">cardColors</h2>

```kotlin
@Composable
@RemoteComposable
public fun cardColors(
    containerColor: RemoteColor? = null,
    contentColor: RemoteColor? = null,
    appNameColor: RemoteColor? = null,
    timeColor: RemoteColor? = null,
    titleColor: RemoteColor? = null,
    subtitleColor: RemoteColor? = null,
): RemoteCardColors
```

Creates a [RemoteCardColors](/jetpack-compose/androidx.wear.compose.remote/remote-material3/classes/RemoteCardColors) that represents the default container and content colors used in
a [RemoteCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteCard), [RemoteAppCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteAppCard) or [RemoteTitleCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteTitleCard).

#### Parameters

| | |
| --- | --- |
| containerColor | the container color of this [RemoteCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteCard). |
| contentColor | the content color of this [RemoteCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteCard). |
| appNameColor | the color used for appName, only applies to [RemoteAppCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteAppCard). |
| timeColor | the color used for time, applies to [RemoteAppCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteAppCard) and [RemoteTitleCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteTitleCard). |
| titleColor | the color used for title, applies to [RemoteAppCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteAppCard) and [RemoteTitleCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteTitleCard). |
| subtitleColor | the color used for subtitle, applies to [RemoteTitleCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteTitleCard). |

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

<h2 id="outlinedcardcolors">outlinedCardColors</h2>

```kotlin
@Composable
@RemoteComposable
public fun outlinedCardColors(): RemoteCardColors
```

Creates a [RemoteCardColors](/jetpack-compose/androidx.wear.compose.remote/remote-material3/classes/RemoteCardColors) that represents the default container and content colors used in
an [RemoteOutlinedCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteOutlinedCard), outlined [RemoteAppCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteAppCard) or [RemoteTitleCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteTitleCard).

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

<h2 id="outlinedcardcolors-contentcolor-appnamecolor-timecolor-titlecolor-subtitlecolor">outlinedCardColors</h2>

```kotlin
@Composable
@RemoteComposable
public fun outlinedCardColors(
    contentColor: RemoteColor? = null,
    appNameColor: RemoteColor? = null,
    timeColor: RemoteColor? = null,
    titleColor: RemoteColor? = null,
    subtitleColor: RemoteColor? = null,
): RemoteCardColors
```

Creates a [RemoteCardColors](/jetpack-compose/androidx.wear.compose.remote/remote-material3/classes/RemoteCardColors) that represents the default container and content colors used in
an [RemoteOutlinedCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteOutlinedCard), outlined [RemoteAppCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteAppCard) or [RemoteTitleCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteTitleCard).

#### Parameters

| | |
| --- | --- |
| contentColor | the content color of this [RemoteOutlinedCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteOutlinedCard). |
| appNameColor | the color used for appName, only applies to [RemoteAppCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteAppCard). |
| timeColor | the color used for time, applies to [RemoteAppCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteAppCard) and [RemoteTitleCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteTitleCard). |
| titleColor | the color used for title, applies to [RemoteAppCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteAppCard) and [RemoteTitleCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteTitleCard). |
| subtitleColor | the color used for subtitle, applies to [RemoteTitleCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteTitleCard). |