---
title: "ContentColorScope"
description: "An interface that introduces the contentColor property to a Style receiver scope."
type: "interface"
lastmod: "2026-05-20T01:13:53.361773Z"
---
## API Reference

> Source set: Common

```kotlin
@ExperimentalFoundationStyleApi
interface ContentColorScope
```

An interface that introduces the [contentColor](#contentcolor) property to a [Style](/jetpack-compose/androidx.compose.foundation/foundation/interfaces/Style) receiver scope.

## Functions

### contentColor

```kotlin
fun contentColor(value: Color)
```

Sets the preferred content color, primarily affecting text color. This property is inherited
by child text components if not overridden. This affects drawing only and is often a
component of a [TextStyle](/jetpack-compose/androidx.compose.ui/ui-text/classes/TextStyle).

This property is inherited.

#### Parameters

| | |
| --- | --- |
| value | The color for the content, typically text. |

### contentBrush

```kotlin
fun contentBrush(value: Brush)
```

Sets the preferred brush for rendering content, primarily affecting text. This allows for
gradient text or other brush-based text effects. This property is inherited by child text
components if not overridden. This affects drawing only and is often a component of a
[TextStyle](/jetpack-compose/androidx.compose.ui/ui-text/classes/TextStyle).

This property is inherited.

#### Parameters

| | |
| --- | --- |
| value | The brush for the content, typically text. |
