Greasy Fork 支持简体中文。

Mastodon Elk UI - black background color - ElkZone ElkApp

Change background color of Elk Zone aka ElkApp to be completely black like Twitter

// ==UserScript==
// @name         Mastodon Elk UI - black background color - ElkZone ElkApp
// @namespace    http://tampermonkey.net/
// @version      0.23
// @description  Change background color of Elk Zone aka ElkApp to be completely black like Twitter
// @author       Cragsand
// @match        https://elk.universeodon.com/*
// @match        https://elk.infosec.exchange/*
// @match        https://elk.zone/*
// @match        https://main.elk.zone/*
// @match        https://mementomori.social/*
// @grant        none
// @license      MIT license
// ==/UserScript==

(function() {
    'use strict';

    // Change background to black like Twitter
    document.documentElement.style.setProperty('--c-bg-base', 'black');
    document.documentElement.style.setProperty('--color-brand-mastodon-bg', 'black');
})();