From f962d6ddbbd06d1a15a95105eefe4afd7b62fc0b Mon Sep 17 00:00:00 2001 From: swee Date: Sat, 30 Nov 2024 20:08:13 -0800 Subject: [PATCH] Add script.user.js --- script.user.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 script.user.js 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