Dark Mode für ZeRonin.de

gibt es nicht, eigentlich, doch Thorus hat ein Skript für Tampermonkey geschrieben, welches einen Dark Mode “simuliert” :

// ==UserScript==
// @name Dark Mode für ZeRonin.de
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Thorus
// @match https://zeronin.de/*
// @icon https://www.google.com/s2/favicons?domain=zeronin.de
// @grant none
// ==/UserScript==

(function() {
    'use strict';

    const style = document.createElement('style')
    style.innerText = `
        body {
            background: black;
        }
        body, button, input, select, optgroup, textarea {
            color: #b7b4b4;
        }
        .widget-title {
            background: transparent;
        }
        blockquote {
            background: transparent;
            border: 1px solid #f0f0f0;
        }
        .header-image img {
            filter: invert(1);
        }
    `
    document.body.appendChild(style)
})();

Tampermonkey ist kostenloser Userscript-Manager für Chrome, Microsoft Edge, Safari, Opera Next, und Firefox. Ein Tutorial zu Tempermonkey und wie man ihn verwendet, gibt es hier.

Danke an Thorus für das “nicht sonderlich hübsche” Skript (O-Ton er) und die Erlaubnis es euch allen zur Verfügung zu stellen.