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.4
// @description  Enable dark mode with only one line of CSS
// @author       Michael Wang
// @license      MIT
// @match        *://*/*
// @grant        none
// ==/UserScript==

// @ts-check

(function () {
  document.documentElement.style.filter = 'invert(1) hue-rotate(180deg)';
}());

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址