super-fit-web-app / src / themes / index.ts
index.ts
Raw
import { Theme } from '@mui/material';

export type CustomTheme = Theme & {
  customProperties: {
    backgroundGradient: string;
    sectionPaddingX: {
      xs?: number | string;
      sm?: number | string;
      md?: number | string;
      lg?: number | string;
      xl?: number | string;
    };
    borderBoxGradient: string;
    dialogContainerGradient: string;
    primaryPink: string;
  };
};