'Why my Ionic App is receiving a forced "dark mode" on Android?

My Ionic 4 app is getting a forced Dark Mode on Android 10+

I removed it on purpose from theme/variable.scss and it still has dark mode applied. As my app doesn't implement anny dark style, all my texts are blank.

This is my variable.scss file:

1st try:

@media (prefers-color-scheme: dark) {/* commented everything here*/}

2nd try:

@media (prefers-color-scheme: light) {/* commented everything here*/}

3rd try:

just removed this part.....


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source