/ frontend / src / app / components / MatxTheme / themeOptions.js
themeOptions.js
 1  import { red } from '@mui/material/colors';
 2  import { components } from './components';
 3  
 4  const themeOptions = {
 5    typography: {
 6      fontSize: 14,
 7      body1: { fontSize: '14px' },
 8    },
 9  
10    status: { danger: red[500] },
11    components: { ...components },
12  };
13  
14  export default themeOptions;