• Existing user of old message board?

    Your username will have transferred over to this new message board, but your password will need to be reset. Visit our convert your account page, to transfer your old password over.

Dark Mode

Ouzo Dan

Member
Location
Behind you
Country
Slovakia
Hi Guntri, thanks for the new site and the effort you put into it.
As above a Dark mode would be great.
 
I highly doubt anyone will be bothered with the hassle of using this, but I've made a tampermonkey script which tones down the background colours and hides a few of the panels on the right hand side. The colours can be changed in the script as preferred.

Screenshot 2024-08-16 221443.webp

Tampermonkey can be installed from the chrome store here: Tampermonkey - Chrome Web Store

The Tampermonkey extension needs to be set to run in developer mode to work, i.e. open Manage Extensions, click Tampermonkey, then click the button in the top right:
1723843485410.webp

And the full script is here (to be pasted into a new script in the tampermonkey extension):

// ==UserScript==
// @name New Userscript
// @namespace Home | Tampermonkey
// @version 2024-08-16
// @description try to take over the world!
// @author You
// @match https://forum.holmesdale.net/*
// @match http://forum.holmesdale.net/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=holmesdale.net
// @grant none
// ==/UserScript==

(function() {
'use strict';
var styles = `
.p-body, .p-nav, .p-sectionLinks, .p-header .p-pageWrapper .p-footer .p-body-inner{
background: gainsboro !important;
}
#top {
background: gainsboro !important;
}

#footer {
background: gainsboro !important;
}

.p-pageWrapper .p-body-inner {
background: gainsboro !important;
}

#snack_dex13 {
height: 0px !important;
visibility: collapse;
}

#snack_dmpu {
min-height: 0px !important;
height: 0px !important;
visibility: collapse;
}

.p-body-sidebar {
min-height: 0px !important;
}
`

var styleSheet = document.createElement("style")
styleSheet.textContent = styles
document.head.appendChild(styleSheet)
console.log('loaded tampermonkey script!!');


})();
 
Back
Top