Skip to content

Instantly share code, notes, and snippets.

@Slyrith
Created November 25, 2022 12:27
Show Gist options
  • Select an option

  • Save Slyrith/5e2a4c07e17c27334798582f731d6343 to your computer and use it in GitHub Desktop.

Select an option

Save Slyrith/5e2a4c07e17c27334798582f731d6343 to your computer and use it in GitHub Desktop.
A black theme for minesweeper.online
// ==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