Massi
Neophyte
2 months agoDark Theme?
Hello, We have recently bought the LM license and we set it up. Out monitoring screen is giant and the old system had a nice dark theme. Now the room is brighter than the sun. Is there any Dark th...
There can be NO valid reason for not DETECTING the user's preference for Dark Mode in 2025. It's REALLY SIMPLY CSS:
/* Light mode styles (default) */
body
{
background: white;
color: black;
}
/* Dark mode override */
@media (prefers-color-scheme: dark)
{
body
{
background: #121212;
color: #f0f0f0;
}
}