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:
primaryTheme.js
/**
* 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:
_variables.scss
//Theme default colors:-
$primary: #26348F; //Manage Primary Color
$secondary:rgba(0, 0, 0, 0.54); //Manage text Color
$success: #28a745; //Manage Success Color
$danger:#DE3F3F; //Manage Danger Color
$warning:#ffc107; //Manage Warning Color
$info:#17a2b8; //Manage Info Color
$transparent:transparent;
$dark-grey:rgba(0, 0, 0, 0.7); //Manage text Color
$dark:rgba(0, 0, 0, 0.87); //Manage text Color
$active:#FF5722; //Manage secondary Color
$black:#000000;
$black-light:#212121;
$base:#fff;
$grey:#f3f3f4;
$border:#eceeef;
Change Font Family
To change app font-family go to variables.scss file and change following values.
//Page Title
$page-title-bg-image:url("../../assets/images/page-title-bar.jpg");
$page-title-padding:7rem 0;
$page-title-color:$base;
Change spacers
_variables.scss
// Spacing
// You can add more entries to the $spacers map, should you need more variation.
$spacer: 1rem !default;
$spacers: () !default;
// stylelint-disable-next-line scss/dollar-variable-default
$spacers: map-merge((
0: 0,
5: ($spacer * .3125),
10: ($spacer * .625),
15: ($spacer * .9375),
20: ($spacer * 1.25),
25: ($spacer * 1.5625),
30: ($spacer * 1.875),
40: ($spacer * 2.5),
50: ($spacer * 3.125),
60: ($spacer * 3.75)
),
$spacers
);
Change Breakpoints
_variables.scss
// Grid breakpoints
//
// Define the minimum dimensions at which your layout will change,
// adapting to different screen sizes, for use in media queries.
$grid-breakpoints: (
xs: 0,
sm: 600px,
md: 960px,
lg: 1280px,
xl: 1920px
) !default;