Tried to change color from variable with these methods:
//variable.scss
$colors: (
primary: #488aff,
secondary: #32db64,
danger: #f53d3d,
light: #f4f4f4,
dark: #222,
navcol2: #ab2121
);
Tried with these two:
this.statusBar.backgroundColorByName('navcol2)');
//and
this.statusBar.backgroundColorByName('color($colors, navcol2)');
None worked. Any idea?
[This is status bar color therefore timing is the main priority. If i try to implement such 3rd party rendering technique then body will load before status bar color and whole thing will messed up. There must be alternative way to put choices somewhere else.]