Skip to content

Instantly share code, notes, and snippets.

@miclgael
Created April 7, 2023 04:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miclgael/436ee51492c248a8fe2dfeff5d05f2fc to your computer and use it in GitHub Desktop.
Save miclgael/436ee51492c248a8fe2dfeff5d05f2fc to your computer and use it in GitHub Desktop.
Temporary Dark mode Greasemonkey script, originally for Actual Budget
// ==UserScript==
// @name ActualBudget - Temporary Dark-mode script
// @version 0.0.1
// @grant GM_log
// @include // <YOUR_INSTANCE_URI_HERE>
// @run-at document-end
// ==/UserScript==
console.log('GreaseMonkey: ActualBudget - Temporary Dark-mode script by @miclgael');
document.querySelector('body').style
.filter = 'invert() contrast(0.8) brightness(1.1) hue-rotate(0.5turn)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment