Greasy Fork

Elk Mastodon UI - black background Color

Change background color to be completely black like Twitter

目前为 2023-07-18 提交的版本。查看 最新版本

// ==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');
})();