/* ==UserStyle==
@name        Dark mode for polycul.es
@description Since using Dark Reader fucks up the SVG element
@version     1.0
@namespace   https://greasyfork.org/users/3759
@license     CC0
@downloadURL https://update.greasyfork.org/scripts/550095/Dark%20mode%20for%20polycules.user.css
@updateURL https://update.greasyfork.org/scripts/550095/Dark%20mode%20for%20polycules.meta.css
==/UserStyle== */

@-moz-document url-prefix("https://polycul.es") {
body {
    background: #111;
    color: #eee;
}

svg#panel {
    background: #eee;
    color: #111;
}

input, button {
    background: #333;
    color: #ddd;
}

div#graph {
    box-shadow: 5px 5px 10px #999;
}

div#shortcuts {
    box-shadow: 5px 10px 10px -1px #999 !important;
}
}