import { Theme } from '@mui/material/styles'; // ---------------------------------------------------------------------- export default function Backdrop(theme: Theme) { return { MuiBackdrop: { styleOverrides: { root: { background: [ `rgb(33,43,54, 0.7)`, ], '&.MuiBackdrop-invisible': { background: 'transparent' } } } } }; }