Reddit invert all colours - old school version dark mode minimal

Reddit invert all colours -old school version dark mode minimal

当前为 2023-06-15 提交的版本,查看 最新版本

// ==UserScript==
// @name        Reddit invert all colours - old school version dark mode minimal 
// @namespace   english
// @description  Reddit invert all colours -old school version dark mode minimal 
// @include     http*://*reddit.com*
// @version     1.6
// @run-at document-end
// @license MIT
// @grant       GM_addStyle
// ==/UserScript==


// HIDE INSTALL APP SPLASH
// https://greasyfork.org/en/scripts/456374-hide-reddit-install-app-notifications

 
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '      html{ filter: invert(1)hue-rotate(180deg); } img{max-width:25px;height:auto !important ;}html body #header-img,.TopNav__promoButton{display:none !important ;}   ';



document.getElementsByTagName('head')[0].appendChild(style);