PythonAnyDark/script.user.js

22 lines
520 B
JavaScript
Raw Normal View History

2024-11-30 20:08:13 -08:00
// ==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;
}
2024-11-30 20:13:17 -08:00
tr.hoverable:hover {
2024-11-30 20:11:35 -08:00
background: 013e6d !important;
}
2024-11-30 20:08:13 -08:00
`;
2024-11-30 20:09:09 -08:00
document.body.appendChild(style);