Greasy Fork is available in English.
Change background color to be completely black like Twitter
当前为
// ==UserScript==
// @name Elk Mastodon UI - black background Color
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Change background color to be completely black like Twitter
// @author Cragsand
// @match https://elk.universeodon.com/*
// @match https://elk.infosec.exchange/*
// @match https://elk.zone/*
// @grant none
// @license MIT license
// ==/UserScript==
(function() {
'use strict';
// Change background to black like Twitter
document.documentElement.style.setProperty('--c-bg-base', 'black');
})();