material ui color background

Solutions on MaxInterview for material ui color background by the best coders in the world

showing results for - "material ui color background"
Killian
31 Jan 2021
1// import Box from Material-UI
2import Box from '@material-ui/core/Box';
3
4// Use bgcolor to set background color in box
5<Box bgcolor="primary.main" />
6<Box bgcolor="secondary.main" />
7<Box bgcolor="error.main" />
8<Box bgcolor="warning.main" />
9<Box bgcolor="info.main" />
10<Box bgcolor="success.main" />
11<Box bgcolor="text.primary" />
12<Box bgcolor="text.secondary" />
13<Box bgcolor="text.disabled" />