I am using the SASS method to style my Ionic app.
On can achieve this by modifying the variables stored in sass/_variables.sass.
For a specific button, I now want to change to color of the text when active. However, with the default setup, it is only possible to change the background color on active. For instance, you will find:
$button-light-bg: $light !default;
$button-light-text: #fff !default;
$button-light-border: rgba(255,255,255, 0) !default;
$button-light-active-bg: $light !default;
$button-light-active-border: $light !default;
How do I add an additional variable to change the text color to black? For instance:
$button-light-active-text: #000 !default; // does not work