@prabink/react-node-cli
Version:
React Node Application Generator & Helpers To Serve React Build, Push to github & Export industry level react project structure
27 lines (23 loc) • 748 B
JavaScript
import { alpha } from '@mui/material/styles';
// ----------------------------------------------------------------------
export default function Backdrop(theme) {
const varLow = alpha(theme.palette.grey[900], 0.48);
const varHigh = alpha(theme.palette.grey[900], 1);
return {
MuiBackdrop: {
styleOverrides: {
root: {
background: [
`rgb(22,28,36)`,
`-moz-linear-gradient(75deg, ${varLow} 0%, ${varHigh} 100%)`,
`-webkit-linear-gradient(75deg, ${varLow} 0%, ${varHigh} 100%)`,
`linear-gradient(75deg, ${varLow} 0%, ${varHigh} 100%)`
],
'&.MuiBackdrop-invisible': {
background: 'transparent'
}
}
}
}
};
}