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

```kotlin
public object LevelIndicatorDefaults
```

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

## Functions

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

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

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

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

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

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

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

#### Parameters

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