Greasy Fork is available in English.
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.22
// @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');
})();