---
title: "MaterialTheme"
description: "Material Theming refers to the customization of your Material Design app to better reflect your
product’s brand."
type: "component"
---

<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>

<div class='sourceset sourceset-android'>Android</div>


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


#### Parameters

| | |
| --- | --- |
| colorScheme | A complete definition of the Material Color 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 composable content that will be displayed with this theme |






