I am working in my Ionic 4 app and I want to change the background color of the toolbar but it is not working.
This I have tried:
ion-toolbar {
--background: #f2f2f2;
}
ion-toolbar {
background: #f2f2f2 !important;
}
Like:
color: var(--ion-color-contrast);
where to define the --ion-color-contrast. In variables.scss file or some where else for changing the color.
Can anyone help me how the define the variables in the variables.scss for changing the colors in Ionic 4.