Skip to content

Instantly share code, notes, and snippets.

@tjadhav
Created August 1, 2019 13:06
Show Gist options
  • Save tjadhav/9a416934a66f8cae8004ab5f898d8085 to your computer and use it in GitHub Desktop.
Save tjadhav/9a416934a66f8cae8004ab5f898d8085 to your computer and use it in GitHub Desktop.
Dark Mode for chAnQya.com
// ==UserScript==
// @name Chanqya Dark Mode
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Dark Mode
// @author Tushar Jadhav
// @match https://chanqya.com/*
// @run-at document-start
// @grant GM_addStyle
// ==/UserScript==
const styles = `
html { height: auto; min-height: 100vh; background: #fff; filter: invert(.8); }
.header-brand, .avatar, img { filter: invert(1); }
`;
GM_addStyle (styles);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment