File size: 691 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import type {} from "@mui/material/styles";

declare module "@mui/material/styles" {
  interface Color {
    50: string;
    100: string;
    200: string;
    300: string;
    400: string;
    500: string;
    600: string;
    700: string;
    800: string;
    900: string;
    950: string;
  }

  type PartialColor = Partial<Color>;

  interface Palette {
    neutral: PartialColor;
  }

  interface PaletteOptions {
    neutral?: PartialColor;
  }

  interface TypeBackground {
    level1: string;
    level2: string;
    level3: string;
  }

  interface Theme {
    // Add custom properties here if needed
  }

  interface ThemeOptions {
    // Add custom properties here if needed
  }
}