---
title: "Style"
description: "Combine multiple Style objects together. Styles whose argument positions are further \"to the
right\" will override styles to the left of them, on a per-property basis."
type: "function"
---

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


<a id='references'></a>
<div class='sourceset sourceset-common'>Common</div>


```kotlin
@ExperimentalFoundationStyleApi
fun Style(style1: Style, style2: Style): Style
```


Combine multiple Style objects together. Styles whose argument positions are further "to the
right" will override styles to the left of them, on a per-property basis.



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


```kotlin
@ExperimentalFoundationStyleApi
fun Style(style1: Style, style2: Style, style3: Style): Style
```


Combine multiple Style objects together. Styles whose argument positions are further "to the
right" will override styles to the left of them, on a per-property basis.



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


```kotlin
@ExperimentalFoundationStyleApi
fun Style(vararg styles: Style): Style
```


Combine multiple Style objects together. Styles whose argument positions are further "to the
right" will override styles to the left of them, on a per-property basis.



