-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy paththeme.js
51 lines (49 loc) · 951 Bytes
/
theme.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
import { createTheme } from '@mui/material/styles';
const theme = createTheme({
palette: {
primary: {
light: '#335b70',
main: '#00334d',
dark: '#002335',
contrastText: '#fff',
},
secondary: {
light: '#33c9eb',
main: '#00bce7',
dark: '#0083a1',
contrastText: '#000',
},
info: {
light: '#ffffff',
main: '#e0e0e0',
dark: '#aeaeae',
contrastText: '#000',
},
},
typography: {
fontFamily: [
'Ubuntu',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'Arial',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
].join(','),
},
components: {
MuiTooltip: {
styleOverrides: {
tooltip: {
fontSize: "1em",
textAlign: "center"
}
}
},
},
});
export default theme;