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

```kotlin
public object RadioButtonDefaults
```

Contains the default values used by [RadioButton](/jetpack-compose/androidx.wear.compose/compose-material/components/RadioButton).

## Functions

<h2 id="colors-selectedringcolor-selecteddotcolor-unselectedringcolor-unselecteddotcolor">colors</h2>

```kotlin
@Composable
public fun colors(
    selectedRingColor: Color = MaterialTheme.colors.secondary,
    selectedDotColor: Color = MaterialTheme.colors.secondary,
    unselectedRingColor: Color =
        contentColorFor(
            MaterialTheme.colors.primary
                .copy(alpha = 0.5f)
                .compositeOver(MaterialTheme.colors.surface)
        ),
    unselectedDotColor: Color =
        contentColorFor(
            MaterialTheme.colors.primary
                .copy(alpha = 0.5f)
                .compositeOver(MaterialTheme.colors.surface)
        ),
): RadioButtonColors
```

Creates a [RadioButtonColors](/jetpack-compose/androidx.wear.compose/compose-material/interfaces/RadioButtonColors) for use in a [RadioButton](/jetpack-compose/androidx.wear.compose/compose-material/components/RadioButton).

#### Parameters

| | |
| --- | --- |
| selectedRingColor | The outer ring color of this [RadioButton](/jetpack-compose/androidx.wear.compose/compose-material/components/RadioButton) when enabled and selected. |
| selectedDotColor | The inner dot color of this [RadioButton](/jetpack-compose/androidx.wear.compose/compose-material/components/RadioButton) when enabled and selected. |
| unselectedRingColor | The outer ring color of this [RadioButton](/jetpack-compose/androidx.wear.compose/compose-material/components/RadioButton) when enabled and unselected. |
| unselectedDotColor | The inner dot color of this [RadioButton](/jetpack-compose/androidx.wear.compose/compose-material/components/RadioButton) when enabled and unselected. |