Scryfall Darkmode

Black background for Scryfall.

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

/* ==UserStyle==
@name        Scryfall Darkmode
@description Black background for Scryfall.
@author      Korakys
@namespace   scryfall.com
@version     2.0.1
@license     CC0
 
==/UserStyle== */
 
@-moz-document domain("scryfall.com")
{

#main, #footer, .search-controls, .search-controls-mobile, .search-info, .card-profile, .rulings, .card-text, .homepage, .form-layout, .advanced-search-submit-bottom {
   background: #000;
   background-color: #000;
}
.rulings a[href], .search-controls-display-options > label, .search-info a[href], .search-info strong {
   filter: brightness(2);
}
.card-text a[href] {
   color: #c688ff;
}
.rulings, .card-text, .checklist td > a, .checklist td > span, .form-layout label {
   color: #eee;
}
.search-info {
   color: #888;
}
.footer-legal {
   color: #666;
}
#footer {
   border-top: 1px dashed #CDCDCD;
}
.advanced-search-submit-bottom {
   border-top: 1px solid #902bd8 !important;
}
/* Pesky non-standard symbols, like paws, energy, etc */
.card-symbol-P, .card-symbol-E, .card-symbol-TK {
   filter: invert(1);
}
.form-row-label svg, .advanced-search-subjoiner {
   filter: brightness(2);
}
.button-n, .prints-table, .reference-jump, .reference-block {
   background-color: #bbb
}

img.card {
   border: 1px solid #666;
}

}