google docs dark mode night theme

google docs dark mode night theme 2

// ==UserScript==
// @name        google docs dark mode night theme 
// @namespace   english
// @description  google docs dark mode night theme 2
// @include     http*://*docs.google.com*
// @version     1.3
// @run-at document-end
// @license MIT 
// @grant       GM_addStyle
// ==/UserScript==

// Main - Collapse the Greasy Fork Header

var style = document.createElement('style');
style.type = 'text/css';

style.innerHTML = '                   hml{filter: hue-rotate(180deg)invert(1) !important;}          ';

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