2022-11-17 12:25:23 +00:00
|
|
|
import "@material-ui/styles";
|
|
|
|
|
|
|
|
declare module "@mui/material/styles" {
|
|
|
|
interface Palette {
|
2022-11-24 19:22:30 +00:00
|
|
|
lightPurple: Palette["primary"],
|
|
|
|
darkPurple: Palette["primary"],
|
|
|
|
brightPurple: Palette["primary"],
|
|
|
|
fadePurple: Palette["primary"],
|
|
|
|
grey1: Palette["primary"],
|
|
|
|
grey2: Palette["primary"],
|
|
|
|
grey3: Palette["primary"],
|
|
|
|
orange: Palette["primary"],
|
|
|
|
navbarbg: Palette["primary"],
|
2022-11-17 12:25:23 +00:00
|
|
|
}
|
|
|
|
interface PaletteOptions {
|
2022-11-24 19:22:30 +00:00
|
|
|
lightPurple?: PaletteOptions["primary"],
|
|
|
|
darkPurple?: PaletteOptions["primary"],
|
|
|
|
brightPurple?: PaletteOptions["primary"],
|
|
|
|
fadePurple?: PaletteOptions["primary"],
|
|
|
|
grey1?: PaletteOptions["primary"],
|
|
|
|
grey2?: PaletteOptions["primary"],
|
|
|
|
grey3?: PaletteOptions["primary"],
|
|
|
|
orange?: PaletteOptions["primary"],
|
|
|
|
navbarbg?: PaletteOptions["primary"],
|
2022-11-17 12:25:23 +00:00
|
|
|
}
|
|
|
|
interface TypographyVariants {
|
|
|
|
infographic: React.CSSProperties;
|
2022-11-19 20:28:47 +00:00
|
|
|
p1: React.CSSProperties;
|
2022-11-17 12:25:23 +00:00
|
|
|
}
|
|
|
|
interface TypographyVariantsOptions {
|
|
|
|
infographic?: React.CSSProperties;
|
2022-11-19 20:28:47 +00:00
|
|
|
p1?: React.CSSProperties;
|
2022-11-17 12:25:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module "@mui/material/Typography" {
|
|
|
|
interface TypographyPropsVariantOverrides {
|
|
|
|
infographic: true;
|
2022-11-19 20:28:47 +00:00
|
|
|
p1: true;
|
2022-11-17 12:25:23 +00:00
|
|
|
}
|
|
|
|
}
|