Created
August 1, 2019 13:06
-
-
Save tjadhav/9a416934a66f8cae8004ab5f898d8085 to your computer and use it in GitHub Desktop.
Dark Mode for chAnQya.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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