XF 2.3 How To Disable Dark Mode

hakyangler

Active member
how can I disable the dark mode completely? it's a frustrating thing. the option marked in the image spoils the theme, is there a method other than this? how can I even completely remove it from the system.

Screenshot_1.webp
 
Last edited:
I've seen it in the past where it took a hard refresh to get rid of the dark style fully. It would render like a half light/dark for a short period of time. Have you tried a hard refresh?
 
Visitors to the site were automatically getting dark mode, and to prevent this, I implemented the code below. So far, in my tests, it has been successful — the site no longer appears in dark mode for users visiting as guests. If anyone with more experience could review the code, I’d appreciate it.


Code:
/* Site ziyaretçi olarak gelen kullanıcıya dark mode kapama */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light !important;
    }
}
 
Back
Top Bottom