| import {createTheme} from '@mui/material/styles'; |
|
|
| const themeObject = { |
| breakpoints: { |
| values: { |
| xs: 0, |
| sm: 600, |
| md: 770, |
| lg: 1200, |
| xl: 1536, |
| }, |
| }, |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| palette: { |
| primary: { |
| main: '#1976d2', |
| }, |
| secondary: { |
| main: '#dc004e', |
| }, |
| }, |
| typography: { |
| fontFamily: [ |
| 'Optimistic Text', |
| 'Roboto', |
| '"Helvetica Neue"', |
| 'Arial', |
| 'sans-serif', |
| ].join(','), |
| h1: {fontSize: '1rem', fontWeight: '500'}, |
| }, |
| }; |
|
|
| const theme = createTheme(themeObject); |
|
|
| |
| |
| |
| |
| theme.typography.body1[theme.breakpoints.down('sm')] = {fontSize: '0.875rem'}; |
| |
| theme.typography.h1[theme.breakpoints.down('sm')] = {fontSize: '0.875rem'}; |
| |
| theme.typography.button[theme.breakpoints.down('sm')] = {fontSize: '0.75rem'}; |
| |
| theme.typography.body2[theme.breakpoints.down('sm')] = {fontSize: '0.75rem'}; |
|
|
| export default theme; |
|
|