Skip to content
Snippets Groups Projects
Forked from pregmodfan / fc-pregmod
33017 commits behind the upstream repository.
StuffedAnon's avatar
Stuffed authored
Add a css class "lightTheme" to the body, so that we can set the css style based on the current light theme

e.g. in css you can do:

/* For dark theme */
.hello {
   color: green;
}

/* For light theme */
body.lightTheme .hello {
   color: red;
}
458eae43
History