-
Notifications
You must be signed in to change notification settings - Fork 0
/
LightTheme.js
103 lines (101 loc) · 2.24 KB
/
LightTheme.js
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import { createMuiTheme, responsiveFontSizes } from '@material-ui/core/styles';
const LightTheme = createMuiTheme({
spacing: 8,
palette: {
type: 'light',
primary: {
main: "#0A6BB9",
light: "#57B4FF"
},
secondary: {
main: "#A5FBE2",
dark: "#68E1AC",
light: "#8AF4D4"
},
error: {
main: "#F44336",
light: "#F88078",
dark: "#E3B10C"
},
info: {
main: "#2398F4",
dark: "#0B7ED9",
light: "#64B6F7"
},
grey: {
0: "#FFFFFF",
50: "#FDFDFD",
100: "#EEEEEF",
200: "#DEDFE0",
300: "#C0C2C4",
400: "#888B8E",
500: "#656A6F",
600: "#474C53",
700: "#282F36",
800: "#192028",
900: "#12181D"
},
background: {
default: "#FFFFFF",
paper: "#EEEEEF"
}
},
typography: {
h1: {
fontSize: '2.5rem',
marginTop: 24,
marginBottom: 24
},
h2: {
fontSize: '2rem',
marginTop: 24,
marginBottom: 16
},
h3: {
fontSize: '1.5rem',
marginTop: 16,
marginBottom: 12
},
h4: {
fontSize: '1.3rem',
marginTop: 16,
marginBottom: 12
},
h5: {
fontSize: '1.3rem',
},
h6: {
fontSize: '1.3rem',
},
},
overrides: {
MuiTypography: {
root: {
color: "#12181D",
}
},
MuiTab: {
root: {
color: '#FDFDFD'
}
}
},
props: {
MuiLink: {
underline: 'none'
}
},
custom: {
headerBanner: {
height: {
sm: '115px',
md: '200px'
},
},
targetThemeColor: '#000000',
missionThemeColor: '#085898',
paperTitle: '#FFFFFF',
externalLinkLocation: '/images/external-black.svg'
}
});
export default responsiveFontSizes(LightTheme);