Greasy Fork is available in English.
Enable dark mode with only one line of CSS
当前为
// ==UserScript==
// @name dark mode
// @namespace https://github.com/EastSun5566
// @version 0.0.1
// @description Enable dark mode with only one line of CSS
// @author Michael Wang
// @license MIT
// @match https://**
// @grant none
// ==/UserScript==
// @ts-check
(function () {
document.documentElement.style.filter = 'invert(1) hue-rotate(180deg)';
}());