Greasy Fork

Greasy Fork is available in English.

dark mode

Enable dark mode with only one line of CSS

目前为 2023-08-02 提交的版本。查看 最新版本

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