---
title: "NavigationDrawerItemColors"
description: "Represents the colors of the various elements of a drawer item."
type: "interface"
---

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


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

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



```kotlin
interface NavigationDrawerItemColors
```


Represents the colors of the various elements of a drawer item.


## Functions

```kotlin
@Composable fun iconColor(selected: Boolean): State<Color>
```


Represents the icon color for this item, depending on whether it is `selected`.

#### Parameters

| | |
| --- | --- |
| selected | whether the item is selected |



```kotlin
@Composable fun textColor(selected: Boolean): State<Color>
```


Represents the text color for this item, depending on whether it is `selected`.

#### Parameters

| | |
| --- | --- |
| selected | whether the item is selected |



```kotlin
@Composable fun badgeColor(selected: Boolean): State<Color>
```


Represents the badge color for this item, depending on whether it is `selected`.

#### Parameters

| | |
| --- | --- |
| selected | whether the item is selected |



```kotlin
@Composable fun containerColor(selected: Boolean): State<Color>
```


Represents the container color for this item, depending on whether it is `selected`.

#### Parameters

| | |
| --- | --- |
| selected | whether the item is selected |




