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

```kotlin
public object ScrollIndicatorDefaults
```

Contains the default values used for [ScrollIndicator](/jetpack-compose/androidx.wear.compose/compose-material3/components/ScrollIndicator).

## Functions

<h2 id="colors">colors</h2>

```kotlin
@Composable
public fun colors(): ScrollIndicatorColors
```

Creates a [ScrollIndicatorColors](/jetpack-compose/androidx.wear.compose/compose-material3/classes/ScrollIndicatorColors) that represents the default colors used in a
[ScrollIndicator](/jetpack-compose/androidx.wear.compose/compose-material3/components/ScrollIndicator).

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

<h2 id="colors-indicatorcolor-trackcolor">colors</h2>

```kotlin
@Composable
public fun colors(
    indicatorColor: Color = Color.Unspecified,
    trackColor: Color = Color.Unspecified,
): ScrollIndicatorColors
```

Creates a [ScrollIndicatorColors](/jetpack-compose/androidx.wear.compose/compose-material3/classes/ScrollIndicatorColors) with modified colors used in [ScrollIndicator](/jetpack-compose/androidx.wear.compose/compose-material3/components/ScrollIndicator).

#### Parameters

| | |
| --- | --- |
| indicatorColor | The indicator color. |
| trackColor | The track color. |