• Resolved wbxpress

    (@wbxpress)


    I want to use this theme in my blog. I like to use dark mode of this theme.

    The auto detect feature for light/ dark mode is an excellent feature of this theme. but i am facing issues while using bbpress. while on light mode the bbpress forum looks perfect but in dark mode it is not visible to the users due to color scheme.

    I can change the bbpress styling manually to adapt for dark mode but then it is not visible in light mode.

    So, i needed a solution to disable the light mode.

    Please help me to remove the feature.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author David Mytton

    (@davidmytton)

    You would need to edit assets/css/new.css and overwrite the colour settings lines 4-13. If you wish to force dark mode all the time then you can just copy the code from the dark mode colours on lines 18-27 i.e.

    Replace:

    --nc-tx-1: #000000;
    --nc-tx-2: #1A1A1A;
    --nc-bg-1: #FFFFFF;
    --nc-bg-2: #F6F8FA;
    --nc-bg-3: #E5E7EB;
    --nc-lk-1: #0070F3;
    --nc-lk-2: #0366D6;
    --nc-lk-tx: #FFFFFF;
    --nc-ac-1: #79FFE1;
    --nc-ac-tx: #0C4047;

    with:

    --nc-tx-1: #ffffff;
    --nc-tx-2: #eeeeee;
    --nc-bg-1: #000000;
    --nc-bg-2: #111111;
    --nc-bg-3: #222222;
    --nc-lk-1: #3291FF;
    --nc-lk-2: #0070F3;
    --nc-lk-tx: #FFFFFF;
    --nc-ac-1: #7928CA;
    --nc-ac-tx: #FFFFFF;
    Thread Starter wbxpress

    (@wbxpress)

    Thank you so much. It worked perfectly.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to disable Light Mode’ is closed to new replies.