Skip to content

Instantly share code, notes, and snippets.

@troglodyne
Created September 10, 2019 15:35
Show Gist options
  • Save troglodyne/e1aa7bcd03b4071372316f3009c89bd3 to your computer and use it in GitHub Desktop.
Save troglodyne/e1aa7bcd03b4071372316f3009c89bd3 to your computer and use it in GitHub Desktop.
cPanel Dark mode CSS
@-moz-document regexp("^http[s]?://[a-zA-Z0-9._-]+:208[23]/.*") {
body {
background-color: black;
}
#sidebar,
#quickjump,
body#home .table,
body#home #boxes .panel-body {
background-color: lightgray;
filter: invert(100%);
}
body:not(#home) #content {
filter: invert(100%);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment