Hello i want to be able to change the primary, secondary etc $colors variables in Ionic 3 in order to implemeny dark mode.
variable.scss
$primary-color: #333!default;
.dark-theme {
$primary-color: whitesmoke ;
}
$colors: (
primary:$primary-color,
)
So using Sass !default is like adding an “unless this is already assigned” qualifier to your variable assignments. I guess i want the opposite of this. To redefine a scss variable Any Ideas?