// ==Userscript==
// @name Turn Off the Lights on pacmax.org
// @version 1.0.0
// @description This makes pacmax.org a bit darker
// @license MIT
// @author @gitatmax
// @namespace https://github.com/gitatmax
// @include https://pacmax.org/*
// @run-at document-idle
// @grant GM_addStyle
// ==/Userscript==
(() => {
"use strict";
// Add Custom Styles (or don't—just delete this next block of code!
GM_addStyle(`.body { background-color: black; }`);
})();