I have an API call that would get a json with my scss colours, such as
dynamic-colour: #5260ff
but this variable doesn't get called until run time of the ionic app. Was setting scss variables dynamically before compile time even possible?
From most of the angular examples I've seen, they already have a preset colour set, and I don't see any examples of what I want to achieve. Is it possible to preset a variable, but override it when running the app?
Anyone know anyways to accomplish dynamically getting scss variables from an API call and setting global variable values? I believe it's possible to run a typescript function to override each page's scss with what I want.