I have Ionic application that run PWA (web), iOS and Android. I've tried to disable dark mode on web version by setting
<meta name="color-scheme" content="light" />
but it didn't worked.
In my variables.css:
@media (prefers-color-scheme: dark) {
body {
...
}
.ios body {
...
}
.md body {
...
}
}
My web and android version referring to .md tag so I cannot remove it. But I need it to work on iOS and Android. How can I resolve it?