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

```kotlin
object SurfaceDefaults
```

Contains the default values used by a non-interactive [Surface](/jetpack-compose/androidx.tv/tv-material/components/Surface)

## Properties

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

```kotlin
val shape: Shape
```

Represents the default shape used by a non-interactive [Surface](/jetpack-compose/androidx.tv/tv-material/components/Surface)

## Functions

<h2 id="colors-containercolor-contentcolor">colors</h2>

```kotlin
@ReadOnlyComposable
    @Composable
    fun colors(
        containerColor: Color = MaterialTheme.colorScheme.surface,
        contentColor: Color = contentColorFor(containerColor),
    ) = SurfaceColors(containerColor = containerColor, contentColor = contentColor)
```

Creates a [SurfaceColors](/jetpack-compose/androidx.tv/tv-material/classes/SurfaceColors) that represents the default container & content colors used by a
non-interactive [Surface](/jetpack-compose/androidx.tv/tv-material/components/Surface).

#### Parameters

| | |
| --- | --- |
| containerColor | the container color of this Surface |
| contentColor | the content color of this Surface |