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

```kotlin
public object ProgressIndicatorDefaults
```

Contains defaults for Progress Indicators.

## Functions

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

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

Creates a [ProgressIndicatorColors](/jetpack-compose/androidx.wear.compose/compose-material3/classes/ProgressIndicatorColors) with the default colors.

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

<h2 id="colors-indicatorcolor-trackcolor-overflowtrackcolor-disabledindicatorcolor-disabledtrackcolor-disabledoverflowtrackcolor">colors</h2>

```kotlin
@Composable
public fun colors(
    indicatorColor: Color = Color.Unspecified,
    trackColor: Color = Color.Unspecified,
    overflowTrackColor: Color = Color.Unspecified,
    disabledIndicatorColor: Color = Color.Unspecified,
    disabledTrackColor: Color = Color.Unspecified,
    disabledOverflowTrackColor: Color = Color.Unspecified,
): ProgressIndicatorColors
```

Creates a [ProgressIndicatorColors](/jetpack-compose/androidx.wear.compose/compose-material3/classes/ProgressIndicatorColors) with modified colors.

#### Parameters

| | |
| --- | --- |
| indicatorColor | The indicator color. |
| trackColor | The track color. |
| overflowTrackColor | The overflow track color. |
| disabledIndicatorColor | The disabled indicator color. |
| disabledTrackColor | The disabled track color. |
| disabledOverflowTrackColor | The disabled overflow track color. |

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

<h2 id="colors-indicatorbrush-trackbrush-overflowtrackbrush-disabledindicatorbrush-disabledtrackbrush-disabledoverflowtrackbrush">colors</h2>

```kotlin
@Composable
public fun colors(
    indicatorBrush: Brush? = null,
    trackBrush: Brush? = null,
    overflowTrackBrush: Brush? = null,
    disabledIndicatorBrush: Brush? = null,
    disabledTrackBrush: Brush? = null,
    disabledOverflowTrackBrush: Brush? = null,
): ProgressIndicatorColors
```

Creates a [ProgressIndicatorColors](/jetpack-compose/androidx.wear.compose/compose-material3/classes/ProgressIndicatorColors) with modified brushes.

#### Parameters

| | |
| --- | --- |
| indicatorBrush | [Brush](/jetpack-compose/androidx.compose.ui/ui-graphics/classes/Brush) used to draw indicator. |
| trackBrush | [Brush](/jetpack-compose/androidx.compose.ui/ui-graphics/classes/Brush) used to draw track. |
| overflowTrackBrush | [Brush](/jetpack-compose/androidx.compose.ui/ui-graphics/classes/Brush) used to draw track for progress overflow. |
| disabledIndicatorBrush | [Brush](/jetpack-compose/androidx.compose.ui/ui-graphics/classes/Brush) used to draw the indicator if the progress is disabled. |
| disabledTrackBrush | [Brush](/jetpack-compose/androidx.compose.ui/ui-graphics/classes/Brush) used to draw the track if the progress is disabled. |
| disabledOverflowTrackBrush | [Brush](/jetpack-compose/androidx.compose.ui/ui-graphics/classes/Brush) used to draw the overflow track if the progress is disabled. |