こんなのもありますが
ドメイン指定した特定のサイト背景色を変更
userContent.css利用Stylusでも可能
/*@-moz-document domain("google.co.jp"), domain("google.com"), domain("yahoo.co.jp"), domain("bing.com") {
body, #wrapper {
background-color: #A0A0A4 !important;
}
}

新しいタブなどの背景色を変更
こちらはStylusでは無効 
@-moz-document url(about:home) {
body, #wrapper {
background-color: #A0A0A4 !important;
}
}
@-moz-document url(about:newtab) {
body, #wrapper {
background-color: #A0A0A4 !important;
}
}
@-moz-document url(about:blank) {
body, #wrapper {
background-color: #A0A0A4 !important;
}
}