YouTube Color Inverter

Invert the colors on YouTube

// ==UserScript==
// @name         YouTube Color Inverter
// @namespace    https://www.example.com/
// @version      0.1
// @description  Invert the colors on YouTube
// @author       TyGamer4YT
// @match        https://www.youtube.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
  "use strict";

  // Invert the colors on YouTube
  function invertColors() {
    document.body.style.filter = "invert(100%)";
  }

  invertColors();
})();