---
title: "RadioButtonColors"
description: "Represents the content colors used in [RadioButton] in different states."
type: "interface"
---

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


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

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



```kotlin
public interface RadioButtonColors
```


Represents the content colors used in `RadioButton` in different states.


## Functions

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


Represents the outer ring color for this `RadioButton`, depending on the `enabled` and
`selected` properties.

#### Parameters

| | |
| --- | --- |
| enabled | Whether the `RadioButton` is enabled |
| selected | Whether the `RadioButton` is currently selected or unselected |



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


Represents the inner dot color for this `RadioButton`, depending on the `enabled` and
`selected` properties.

#### Parameters

| | |
| --- | --- |
| enabled | Whether the `RadioButton` is enabled |
| selected | Whether the `RadioButton` is currently selected or unselected |




