You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 rivejä
400 B

  1. // material-ui
  2. import { alpha } from '@mui/material/styles';
  3. // ==============================|| DEFAULT THEME - CUSTOM SHADOWS ||============================== //
  4. const CustomShadows = (theme) => ({
  5. button: `0 2px #0000000b`,
  6. text: `0 -1px 0 rgb(0 0 0 / 12%)`,
  7. z1: `0px 2px 8px ${alpha(theme.palette.grey[900], 0.15)}`
  8. // only available in paid version
  9. });
  10. export default CustomShadows;