-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathThemeTypes.d.ts
63 lines (61 loc) · 1.35 KB
/
ThemeTypes.d.ts
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import { Theme } from "@mui/material/styles";
declare module "@mui/material/styles" {
interface CustomTheme extends Theme {
breakpoints: {
keys: string[];
values: {
[key: OneOf<keys>];
};
};
palette: {
text: {
primary: string;
secondary: string;
disabled: string;
red: string;
darkGrey: string;
lightGrey: string;
white: string;
hover: {
blue: string;
black: string;
};
};
primary: {
main: string;
};
purple: {
main: string;
};
background: {
disabled: { gray: string; };
hover: {
blue: string;
red: string;
};
grey: string;
mainContent: string;
footer: string;
white: string;
black: string;
red: string;
succesBox: string;
alertBox: string;
warningBox: string;
infoBox: string;
};
border: {
secondary: string;
alertBox: string;
warningBox: string;
grey: string;
inputBorder: string;
};
success: { main: string };
error: { main: string };
infoBoxLink: string;
};
}
export function createTheme(options?: CustomThemeOptions): CustomTheme;
}
export { CustomThemeOptions, CustomTheme };