
Would be a problem include an 'auto mode' in html pages of the 'help tool'?
An example in css:
Code: Select all
/* Dark-mode */
body {
background-color: black;
color: white;
}
/* Light-mode */
@media (prefers-color-scheme: light) {
body {
background-color: white;
color: black;
}
}
Excuse me if this point was discussed already, I didn't find in forum.
Thanks in advance.