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



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

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



<h2 id="materialtheme-colors-typography-shapes-content">MaterialTheme</h2>

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


```kotlin
@Composable
fun MaterialTheme(
    colors: Colors = MaterialTheme.colors,
    typography: Typography = MaterialTheme.typography,
    shapes: Shapes = MaterialTheme.shapes,
    content: @Composable () -> Unit,
)
```


#### Parameters

| | |
| --- | --- |
| colors | A complete definition of the Material Color theme for this hierarchy |
| typography | A set of text styles to be used as this hierarchy's typography system |
| shapes | A set of shapes to be used by the components in this hierarchy |
| content | The content inheriting this theme |