Style Customization
Embryo App is developed with Material UI so it's very easy to change the style.
Changing Default Variables
Change Theme Colors
/**
* App Light Theme
*/
import { createMuiTheme } from '@material-ui/core/styles';
const theme = createMuiTheme({
palette: {
primary: {
main: '#26348F' // Change this color code
},
secondary: {
main: '#FF5722' // Change this color code
}
}
});
export default theme;Change Font Family
Change Font Weight
Change Typography
Change PageTitle Style
Change spacers
Change Breakpoints
Last updated