diff --git a/script.user.js b/script.user.js new file mode 100644 index 0000000..0a90e9d --- /dev/null +++ b/script.user.js @@ -0,0 +1,19 @@ +// ==UserScript== +// @name PythonAnyDark +// @namespace http://tampermonkey.net/ +// @version 0.1 +// @description Darkmode for PythonAnywhere dashboard +// @author Swee +// @match *://www.pythonanywhere.com/* +// @grant none +// @run-at document-body +// ==/UserScript== + +const style = document.createElement("style"); +style.innerHTML = ` +body { +background: #0f161c !important; +color: white; +} +`; +document.body.insertAdjacentElement(style); \ No newline at end of file