material ui custom color code example

Example 1: change material ui appbar color

<AppBar position="static" color="transparent">

Example 2: material ui color background

// import Box from Material-UI
import Box from '@material-ui/core/Box';

// Use bgcolor to set background color in box
<Box bgcolor="primary.main" />
<Box bgcolor="secondary.main" />
<Box bgcolor="error.main" />
<Box bgcolor="warning.main" />
<Box bgcolor="info.main" />
<Box bgcolor="success.main" />
<Box bgcolor="text.primary" />
<Box bgcolor="text.secondary" />
<Box bgcolor="text.disabled" />