Danbooru

Feature request: dark theme

Posted under General

To save our eyes in night time.

The background is entirely white and I find that I squint my eyes because it kinda hurts.

I don't know if anything else has to be changed, but just getting the option to have a medium or dark grey background would help a lot.

It requires no third-party extensions, the capability for it is right in your settings: Go to your settings -> Advanced Settings

and copy and paste the entire thing in the bottom CSS field

If you still want a really pared-down version, use this

Show
    header,
    .main {
        color: #333 !important;
        background-color: #1b1b1b !important;
    }
   		   
    body,
    section,
    #page,
    .new-comment p,
    .related-tags,
    .row.notices {
        color: #777 !important;
        background-color: #1b1b1b !important;
    }

    nav menu,
    footer,
    .current a {
        color: #777;
        background: #272727 !important;
    }
      
    .even {
        background: #222 !important;
    }

    .even:hover,
    .odd:hover
    {
        background: #282828 !important;
    }

But beware that there are a lot of sections that aren't darkened using this.

Updated

1