@farazahmed wrote:
In my
themes/variables.scss
I have two color themes (dark and light):/* LIGHT COLOR THEMES ========================================= */ /*$colors: ( primary: #ffffff, secondary: #fafafa, danger: #f53d3d, light: #1b1e28, sliderColor: #fff, colorIcon: #CCCBDA, colorIconText: #7F7E96, category: #fff, listBackgroundColor: #ffffff, backgroundColor: #fafafa, toobarBackground: #ffffff, toobarButton: #AAB2B7, toobarText: #FFFFFF );*/ /* DARK COLOR THEMES ========================================= */ $colors: ( primary: #282C39, secondary: #1b1e28, danger: #f53d3d, sliderColor: #fff, light: #fff, colorIcon: #7F7E96, colorIconText: #7F7E96, category: #fff, listBackgroundColor: #1B1E28, backgroundColor: #282C39, toobarBackground: #1B1E28, toobarButton: #D8D8D8, toobarText: #FFFFFF );
Right now I can only put one theme in my app. If I want to change the theme, I have to comment the one variable out and the other I have to remove the comments.
How can I using these two themes, change the theme dynamically in the app in typescript?
In every tutorial I see these
--ion-color-primary
but I do not have these--ion-color
prepending
Posts: 1
Participants: 1