UPDATE :
It is crucial that this function properly, so before responding, please take a moment to review any previous comments on the question as your concern may have already been addressed.
I am attempting to modify the foundational variables of Sencha in order to develop a custom theme for my application
Below is the code snippet from my app.scss
@import 'sencha-touch/default';
@import 'sencha-touch/default/all';
$base-color: #8bc531;
I have tried this alternative as well, as mentioned in the comments. Please refrain from providing unhelpful answers and downvoting. Also, it is worth noting that the .scss file compiles without any errors.
$base-color: #8bc531;
@import 'sencha-touch/default';
@import 'sencha-touch/default/all';
It should be mentioned that the file is much longer and all other aspects are functioning correctly. The only issue I am encountering is with the $base-color not altering any colors as expected, despite it being intended to impact multiple components throughout the app...
Could someone kindly clarify why it is not functioning as anticipated and as demonstrated on the Sencha website...?