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

```kotlin
public class RemoteCardColors(
    public val containerColor: RemoteColor,
    public val contentColor: RemoteColor,
    public val appNameColor: RemoteColor,
    public val timeColor: RemoteColor,
    public val titleColor: RemoteColor,
    public val subtitleColor: RemoteColor,
)
```

Represents Colors used in [RemoteCard](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteCard). Unlike other Material 3 components, Cards do not change
their color appearance when they are disabled.

#### Parameters

| | |
| --- | --- |
| containerColor | the background 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). |

## Functions

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

```kotlin
public fun copy(
        containerColor: RemoteColor? = null,
        contentColor: RemoteColor? = null,
        appNameColor: RemoteColor? = null,
        timeColor: RemoteColor? = null,
        titleColor: RemoteColor? = null,
        subtitleColor: RemoteColor? = null,
    ): RemoteCardColors
```