您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

14 行
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;