<div class='type'>Composable Component</div>



Material Expressive Theming refers to the customization of your Material Design app to better
reflect your product’s brand.

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



<h2 id="materialexpressivetheme-colorscheme-motionscheme-shapes-typography-content">MaterialExpressiveTheme</h2>

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


```kotlin
@ExperimentalMaterial3ExpressiveApi
@Composable
fun MaterialExpressiveTheme(
    colorScheme: ColorScheme? = null,
    motionScheme: MotionScheme? = null,
    shapes: Shapes? = null,
    typography: Typography? = null,
    content: @Composable () -> Unit,
)
```


#### Parameters

| | |
| --- | --- |
| colorScheme | A complete definition of the Material Color theme for this hierarchy |
| motionScheme | A complete definition of the Material motion theme for this hierarchy |
| shapes | A set of corner shapes to be used as this hierarchy's shape system |
| typography | A set of text styles to be used as this hierarchy's typography system |
| content | The content inheriting this theme |