Created
November 25, 2022 12:27
-
-
Save Slyrith/5e2a4c07e17c27334798582f731d6343 to your computer and use it in GitHub Desktop.
A black theme for minesweeper.online
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 minesweeperblack | |
| // @version 1 | |
| // @grant none | |
| // @match https://minesweeper.online/* | |
| // ==/UserScript== | |
| var elt = document.createElement('style'); | |
| elt.innerHTML = ` | |
| .brand-link { | |
| filter: invert(); | |
| } | |
| .main-content, | |
| .btn-default, | |
| .dropdown-toggle, | |
| .result-block, | |
| .chat-gift, | |
| .modal-header, | |
| .modal-body, | |
| .modal-footer, | |
| .popover-title, | |
| .popover-content, | |
| .popover-content table tbody td, | |
| .dropdown-menu, | |
| input, th, td, | |
| .ads-remove { | |
| background: rgb(45, 45, 45) !important; | |
| } | |
| .content-wrap, | |
| .navbar-desktop, | |
| .pagination a { | |
| background: rgb(30, 30, 30) !important; | |
| } | |
| body, span, h1, h2, h3, h4, h5, h6, a, .btn-default, .popover-content { | |
| color: white !important; | |
| } | |
| `; | |
| document.head.appendChild(elt); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment