-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.js
53 lines (51 loc) · 981 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
52
53
import { createMuiTheme } from '@material-ui/core/styles';
import { red } from '@material-ui/core/colors';
// Create a theme instance.
const theme = createMuiTheme({
common: {
color: {
navColor: '#a97743',
white: '#fff',
},
shadow: {
black: '0px 0px 5px 1px rgba(0,0,0,0.2)',
main: '0px 0px 5px 3px rgba(169,120,67,0.5)',
main1: '0px 0px 5px 1px rgba(169,120,67,0.5)',
},
},
layer: {
maxwidth: '1000px',
minwidth: '400px',
maxwidthMb: '900px',
minwidthMb: '400px',
},
palette: {
primary: {
main: '#764d24',
},
secondary: {
main: '#2b715d',
},
error: {
main: red.A400,
},
background: {
default: '#fff',
},
},
overrides: {
MuiLink: {
underlineHover: {
'&:hover': {
textDecoration: 'none',
},
},
},
MuiIcon: {
root: {
overflow: 'visible',
},
},
},
});
export default theme;