---
title: "RadioButtonColors"
description: "Represents the color used by a [RadioButton] in different states.

See [RadioButtonDefaults.colors] for the default implementation that follows Material
specifications."
type: "interface"
---

<div class='type'>Interface</div>


<a id='references'></a>

<div class='sourceset sourceset-common'>Common</div>



```kotlin
interface RadioButtonColors
```


Represents the color used by a `RadioButton` in different states.

See `RadioButtonDefaults.colors` for the default implementation that follows Material
specifications.


## Functions

```kotlin
@Composable fun radioColor(enabled: Boolean, selected: Boolean): State<Color>
```


Represents the main color used to draw the outer and inner circles, depending on whether the
`RadioButton` is `enabled` / `selected`.

#### Parameters

| | |
| --- | --- |
| enabled | whether the `RadioButton` is enabled |
| selected | whether the `RadioButton` is selected |




