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

```kotlin
object RadioButtonDefaults
```

Defaults used in [RadioButton](/jetpack-compose/androidx.tv/tv-material/components/RadioButton).

## Functions

```kotlin
@Composable fun colors() = MaterialTheme.colorScheme.defaultRadioButtonColors
```

Creates a [RadioButtonColors](/jetpack-compose/androidx.tv/tv-material/classes/RadioButtonColors) that will animate between the provided colors according to the
Material specification.

<h2 id="colors-selectedcolor-unselectedcolor-disabledselectedcolor-disabledunselectedcolor">colors</h2>

```kotlin
@Composable
    fun colors(
        selectedColor: Color = Color.Unspecified,
        unselectedColor: Color = Color.Unspecified,
        disabledSelectedColor: Color = Color.Unspecified,
        disabledUnselectedColor: Color = Color.Unspecified,
    ): RadioButtonColors
```

Creates a [RadioButtonColors](/jetpack-compose/androidx.tv/tv-material/classes/RadioButtonColors) that will animate between the provided colors according to the
Material specification.

#### Parameters

| | |
| --- | --- |
| selectedColor | the color to use for the RadioButton when selected and enabled. |
| unselectedColor | the color to use for the RadioButton when unselected and enabled. |
| disabledSelectedColor | the color to use for the RadioButton when disabled and selected. |
| disabledUnselectedColor | the color to use for the RadioButton when disabled and not selected. |

#### Returns

| | |
| --- | --- |
|  | the resulting [RadioButtonColors](/jetpack-compose/androidx.tv/tv-material/classes/RadioButtonColors) used for the RadioButton |