Якщо ви теж вибрали темну тему, то цей script покращить контраст (текст стане більш читабельний) :
(function() {
    [
        'script',
        'noscript',
        'head>style',
        '.js-bottomFixTarget',
        '.js-navButtons',
        '.js-notices',
        '.js-js-scrollButtons',
        'form[style*="display:none"]',
        'input[type="checkbox"]+[aria-hidden]',
    ].forEach(
        function(s) {
            document.querySelectorAll(s).forEach(
                function(e) { e.parentElement.removeChild(e); }
            );
        }
    );
    [
        '.p-navSticky',
        '.p-navSticky--primary',
        '.has-no-js',
        '.u-jsOnly',
    ].forEach(
        function(s) {
            document.querySelectorAll(s).forEach(
                function(e) { e.classList.remove(s.substr(1)); }
            );
        }
    );
    let style_tag = document.createElement('style');
    style_tag.innerText = ([
        [
            'body, div, span, dfn, blockquote',
            'h'.repeat(6).split('').map((s, n) => s + (n + 1)).join(),
            'input, select, textarea',
            '.p-breadcrumbs li:first-of-type:before',
        ].join() + '{ color: white; max-height: unset; }',
        [
            'textarea',
        ].join() + '{ visibility: visible; }',
        [
            'input, textarea',
        ].join() + '{ position: relative; clip: auto; }',
        [
            'input::placeholder',
            'select::placeholder',
            'textarea::placeholder',
        ].join() + '{ color: lightgray; }',
        [
            '.fa-crown:before',
            '.username--style3',
            'a[href] .username--style3',
        ].join() + '{ color: lightcoral; }',
        [
            '.block-body.block-body--collapsible',
        ].join() + '{ display: block; opacity: 1; height: auto; }',
        [
            'body a[href]',
            'a[href] *',
        ].join() + '{ color: lightgreen; opacity: 1; }',
        [
            'h3>span>span>a[href]:after',
        ].join() + '{ content: attr(href); }',
        [
            '*, *:before, *:after',
        ].join() + '{ animation: none; }',
    ].join('').split(';').join(' !important;'));
    document.querySelector('head').appendChild(style_tag);
})();
Також його можна повісити на подію 'DOMContentLoaded' і зберегти в web переглядачі щоб він автоматично обробляв кожну сторінку того форуму.