Nomicon After Dark

Dark mode for Nomicon

// ==UserScript==
// @name         Nomicon After Dark
// @namespace    http://tampermonkey.net/
// @version      2025-02-20
// @description  Dark mode for Nomicon
// @author       Bl00dBought
// @match        https://nomicon.illuminatedcorp.com/*
// @icon         https://nomicon.illuminatedcorp.com/favicon.ico
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Create dark mode CSS
    let darkModeCSS = `
        html, body, * {
            background-color: #121212 !important;
            color: #e0e0e0 !important;
            border-color: #333 !important;
        }
        img, video {
            filter: brightness(80%) contrast(90%) !important;
        }
        a {
            color: #00bcd4 !important;
        }
    `;

    // Create a <style> element and append it to the document head
    let styleElement = document.createElement("style");
    styleElement.innerHTML = darkModeCSS;
    document.head.appendChild(styleElement);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址