Style Customization
Embryo App is developed with Material UI so it's very easy to change the style.
Changing Default Variables
Open _variables.scss file under the src->assets->scss folder and change style variable values as per your requirement.
Change Theme Colors
Theme colors in the template is managed in two steps:
First you need to change the colour code in the src->themes->primaryTheme.js file to reflect the changes in the components of material-ui:
/**
* 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;Second you need to change the colour code in the _variables.scss file to reflect the changes in the whole theme:
Change Font Family
To change app font-family go to variables.scss file and change following values.
Change Font Weight
Change Typography
Change PageTitle Style
Change spacers
Change Breakpoints
Last updated