Can i change the unreal engine forum from dark mode to light mode?

Hi everyone,

in the Unreal Engine forums web by default the site shows up in dark mode , black background with white text. I prefer using it with a white background instead.

I tried using a Chrome extension that inverts the colors, but it’s not perfect, and it’s kind of abandoned now. I switched to Firefox to try it there but has color issues. Is there an actual setting on the forum site itself to switch it to light mode?

Thanks alot.

If the forum doesn’t offer a light mode (I haven’t seen it), I’d say don’t bother trying to make one with CSS. They managed to add in hundreds of color variables in the CSS files, takes too much time.

You could write some css to override the hard way… browsers let you inject CSS files so you’d write one once then load it every time you visit a page.

* {
background: white !important;
color: black !important;
}

but you will run into situations with white icons on white, unreadable buttons etc. so again too much effort.

1 Like