1. Hopper
    Offline

    Hopper Active Member

    Joined:
    May 27, 2023
    Messages:
    99
    IGN:
    Hopperjumperk
    I support, they gotta think of us Moles too, we just get blinded by the white background
     
    • Agree Agree x 1
  2. xvsz
    Offline

    xvsz Member

    Joined:
    Dec 22, 2023
    Messages:
    69
    IGN:
    xvsz
    Yes it would be nice, but also you can just get a darkmode extension for whatever site you're using. I use DarkReader on chrome and it works miracles.
     
    • Informative Informative x 1
  3. aace_
    Offline

    aace_ Active Member

    Joined:
    Nov 15, 2023
    Messages:
    304
    IGN:
    AaceOofSpadess
    yes please, but those just invert the colors and make forums look nasty
     
    • Disagree Disagree x 1
  4. xvsz
    Offline

    xvsz Member

    Joined:
    Dec 22, 2023
    Messages:
    69
    IGN:
    xvsz
    Idk. Mine looks perfectly fine. The colors are kinda janky but nothing crazy.
     

    Attached Files:

  5. aace_
    Offline

    aace_ Active Member

    Joined:
    Nov 15, 2023
    Messages:
    304
    IGN:
    AaceOofSpadess
    yeah it's cool but it'd be nice to have a built in dark mode so that it fixes the colors up top.

    (i just dont wanna install an extension i don't need)
     
    • Agree Agree x 1
  6. xvsz
    Offline

    xvsz Member

    Joined:
    Dec 22, 2023
    Messages:
    69
    IGN:
    xvsz
    Completely fair. I do think there should be one internally made already. Was more of an alternative in the mean time!!!
     
  7. Pillow
    Offline

    Pillow blanky Premium

    Joined:
    May 27, 2019
    Messages:
    1,995
    IGN:
    Pilberry
    *cough* skyblock-extras (has a builtin darkmode and custom ones to come!)
     
  8. aace_
    Offline

    aace_ Active Member

    Joined:
    Nov 15, 2023
    Messages:
    304
    IGN:
    AaceOofSpadess
    :mad: (i'm downloading it)
     
    • Friendly Friendly x 1
  9. Pillow
    Offline

    Pillow blanky Premium

    Joined:
    May 27, 2019
    Messages:
    1,995
    IGN:
    Pilberry
    Thx. Please give github star too!!
     
  10. Devil
    Offline

    Devil stinky Discord Moderator Premium

    Joined:
    Apr 27, 2020
    Messages:
    575
    IGN:
    hellevator
    please please please lpease pleasep leaes please please please please make rthis a thing im losing eye sight when using this website :sob: and using it after sobbing my eyes out makes it even worse LOOLL
     
    • Agree Agree x 3
  11. Imfe
    Offline

    Imfe Well-Known Member Premium

    Joined:
    Oct 17, 2021
    Messages:
    285
    IGN:
    Imfe
    support :watch:
     
  12. Hopper
    Offline

    Hopper Active Member

    Joined:
    May 27, 2023
    Messages:
    99
    IGN:
    Hopperjumperk
    Bump (pls add)
     
  13. Nightcat
    Offline

    Nightcat Experienced Member

    Joined:
    May 31, 2016
    Messages:
    295
    IGN:
    ItsRainbow
  14. AxzeelSpeckles
    Offline

    AxzeelSpeckles Member

    Joined:
    Jun 12, 2024
    Messages:
    114
    IGN:
    Ax_zel_Speckles
    Oh yes please full support of this idea
     
  15. Devil
    Offline

    Devil stinky Discord Moderator Premium

    Joined:
    Apr 27, 2020
    Messages:
    575
    IGN:
    hellevator
    bump !
     
  16. saaturnd
    Offline

    saaturnd Moderator Moderator

    Joined:
    Oct 21, 2024
    Messages:
    170
    IGN:
    saaturnd
    use ur magic to make dark mode o.o
     
    • Cookie Cookie x 1
  17. Devil
    Offline

    Devil stinky Discord Moderator Premium

    Joined:
    Apr 27, 2020
    Messages:
    575
    IGN:
    hellevator
  18. MarcelAnd
    Offline

    MarcelAnd Member

    Joined:
    Feb 28, 2025
    Messages:
    37
    IGN:
    Marc449b
  19. laacis2
    Offline

    laacis2 Member

    Joined:
    Jan 8, 2025
    Messages:
    44
    IGN:
    laacis2
    Dark mode is literally just a toggle between 2 distinct CSS styling systems using JS. In modern site styling it's extremely easy to implement, although i do not know JS structuring here, it might be tricky if something is already dynamically altering css.

    for example my project.

    <select id="dark-mode" onchange="setDarkMode(this.value)">
    <option value="off">Off</option>
    <option value="on">On</option>
    <option value="system">System</option> in html,

    function setDarkMode(mode, skipSaving = false) {
    if (mode === 'system') {
    const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
    document.body.classList.toggle('dark-mode', prefersDark);
    updateDarkModeToggleText('system');
    } else {
    document.body.classList.toggle('dark-mode', mode === 'on');
    updateDarkModeToggleText(mode);
    }
    if (!skipSaving) {
    saveSettings({ darkMode: mode });
    }
    } in js (system requires event listener), and

    body.dark-mode {
    background-color: #1e1e1e;
    color: #ffffff;
    }
    body.dark-mode .buttons button {
    background-color: #444;
    color: #ffffff;
    } etc
    in css.
     
    • Informative Informative x 2
    • Disagree Disagree x 1
    Last edited: Jul 3, 2025 at 9:02 AM
  20. Pillow
    Offline

    Pillow blanky Premium

    Joined:
    May 27, 2019
    Messages:
    1,995
    IGN:
    Pilberry
    seems excessive to rewrite the theme system when there is already an extensive xenforo theme system - Style Chooser | Skyblock Official Site
     

Share This Page