How can I modify the appearance of an element by changing its color and font size when a user clicks a button?
<h1> Hello Stackoverflow </h1>
<button (click)="changeTheme()">Change Theme</button>
What is the best approach to change the theme and store it so that the changes persist when the user reopens the app in an Ionic application?
I have multiple pages and need to adjust their font size and color as well.