---
title: "optionTextStyle"
type: "property"
lastmod: "2026-08-27"
---
## API Reference

> Source set: Android

```kotlin
val optionTextStyle =
        if (isLargeScreen) {
            DatePickerTokens.ContentLargeTypography.value.copy(
                textAlign = TextAlign.Center,
                fontFeatureSettings = "tnum",
            )
        } else {
            DatePickerTokens.ContentTypography.value.copy(
                textAlign = TextAlign.Center,
                fontFeatureSettings = "tnum",
            )
        }
```
