Answers for "ionic set to dark mode"

CSS
4

ionic mobile always dark theme in web

// Change from dark to light. If you have not modified the variable.scss. it should be in line 79.
@media (prefers-color-scheme: dark)
Posted by: Guest on August-14-2020
0

ionic getting automatic disable dark mode on android

One way to remove the dark theme would be by editing the variables.scss file and removing this style rule:

@media (prefers-color-scheme: dark) {
  ...
}
Posted by: Guest on September-26-2020

Browse Popular Code Answers by Language