-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpalette.js
87 lines (87 loc) · 1.82 KB
/
palette.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
import { createTheme } from '@mui/material';
import { styled } from '@mui/system';
import Box from '@mui/material/Box';
import Typography from '@mui/material/Typography';
import Button from '@mui/material/Button';
// import { makeStyles } from '@mui/styles';
const maintheme = createTheme({
palette: {
black: {
main: '#161616',
submain: '',
},
blue: {
lighter: '#3DBAC1',
light: '#258EC9 ',
main: '#3340C4',
dark: '',
darker: '',
mix:''
},
purple: {
lighter:'#8B7FBD f',
main :'#4E24C9',
dark: '#381D8A',
},
brown:{
main:''
}
},
typography: {
fontFamily: "'Montserrat', sans-serif",
h1: {
fontSize: '4rem',
'@media (max-width:900px)': {
fontSize: '3rem',
},
'@media (max-width:450px)': {
fontSize: '2.5rem',
},
fontWeight: '500',
},
h2: {
fontSize: '3rem',
fontWeight: '500',
},
h3: {
fontSize: '2.5rem',
fontWeight: '400',
},
h4:{
fontSize:'1.25rem',
fontWeight:'400',
},
body1: {
fontSize: '1rem',
color: 'green.dark',
fontWeight: '300',
},
// navlinks
body2: {
fontSize: '1.25rem',
fontWeight: '300',
color: 'green.main',
},
},
});
const ContainerStyles = styled(Box)({
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
flexDirection:'column',
backgroundColor:'black.main'
})
const StyledTypography = styled(Typography)({
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
flexDirection:'column'
})
const StyledButton = styled(Button)({
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
flexDirection:'row'
})
export { ContainerStyles, StyledTypography, StyledButton };
export default maintheme;