Dark mode for .html help pages
Posted: Thu Oct 12, 2023 8:42 am
I like to work in PB with the tool 'help' into de IDE, but this does not support the dark mode (and I like to work using dark mode, too
)
Would be a problem include an 'auto mode' in html pages of the 'help tool'?
An example in css:
I suppose that html published in web also could be use it.
Excuse me if this point was discussed already, I didn't find in forum.
Thanks in advance.

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.