I have included a few style rules in the global.scss file that I intend to utilize across multiple pages. Here is an example:
.primary-blue-color {
--ion-background-color: #005bbb;
}
.primary-red-color {
--ion-background-color: red;
}
My approach is to extend these styles in the pages.scss file. I am curious if there are more efficient methods for reusing styles in Ionic. If anyone has insights, please feel free to share your knowledge. Thank you!