Greasy Fork is available in English.
blabla
当前为
// ==UserScript==
// @name p0t Farben überall
// @include https://*.die-staemme.de/*
// @grant GM_addStyle
// @run-at document-start
// @version 1.0
// @namespace die-staemme.bigger.chat
// @description blabla
// ==/UserScript==
(function () {
'use strict';
GM_addStyle(`
body {
background-image: url(http://1x1px.me/FFFFFF-0.png );
background-color: #091827;
color: #FFFFFF;
}
a {
color: #FFFFFF;
}
.content-border {
background: #21354C;
border: 1px solid #666666;
}
#main_layout .bg_left {
background-image: url(http://1x1px.me/FFFFFF-0.png );
background-color: #091827;
}
#main_layout .bg_right {
background-image: url(http://1x1px.me/FFFFFF-0.png );
background-color: #091827;
}
#main_layout .bg_right .bg_right {
background-image: url(http://1x1px.me/FFFFFF-0.png );
background-color: #091827;
}
#main_layout .bg_bottomcenter {
background-image: url(http://1x1px.me/FFFFFF-0.png );
background-color: #091827;
}
#main_layout .bg_bottomleft {
background-image: url(http://1x1px.me/FFFFFF-0.png );
background-color: #091827;
}
#main_layout .bg_bottomright {
background-image: url(http://1x1px.me/FFFFFF-0.png );
background-color: #091827;
}
#main_layout .bg_left .bg_left {
background-image: url(http://1x1px.me/FFFFFF-0.png );
background-color: #091827;
}
.chat-contacts .chat-body {
background: #21354C;
}
.chat-header {
background-image: url(http://1x1px.me/FFFFFF-0.png );
background-color: #091827;
border-bottom: 1px solid #666666;
}
.chat-contact {
background: #394E63;
border-bottom: 1px solid #666666;
}
.chat-contact:first-child {
border-top: 1px solid #666666;
}
.chat-window {
border: 1px solid #666666;
}
.server_info {
color: #FFFFFF;
background: #394E63;
}
.maincell {
background: #394E63;
}
#inner-border {
border: 1px solid #666666;
}
.chat-body {
height: 600px;
background: #21354C;
}
.chat-message {
background: #394E63;
color: #FFFFFF;
border: 1px solid #666666
}
.chat-row :hover {
background: #21354C;
}
.chat-message.chat-message-other {
background: #394E63;
}
.reportable.chat-row:hover {
background: #21354C;
}
.chat-author-line {
color: #FFFFFF;
}
.chat-row .userimage {
border: 1px solid #666666;
}
.vis td,
.vis_item {
background: #091827;
color: #FFFFFF
}
.vis .selected, .vis .selected > td, .overview_table .selected > td {
background: #091827 !important;
color: #FFFFFF !important;
border: 1px solid #FFFFFF !important;
}
.row {
background: #394E63;
color: #FFFFFF
}
li.help {
background: #394E63;
color: #FFFFFF
}
.icon-box {
background: #21354C;
}
.box-item{
color: #FFFFFF;
}
.box-item:first-child {
background: #21354C;
}
.box-item.separate {
background: #21354C;
}
.header-border {
background: #21354C;
}
.header-border .box {
background: #21354C;
}
.header-border .firstcell {
background: #21354C;
}
td.shadow div.rightshadow {
background: #394E63;
}
td.shadow div.leftshadow {
background: #394E63;
}
#quickbar_inner .left {
background: #394E63;
}
#quickbar_inner .main {
background: #21354C;
}
#quickbar_inner .right {
background: #394E63;
}
#quickbar_inner .topborder .left {
background: #394E63;
}
#quickbar_inner .topborder .main {
background: #394E63;
}
#quickbar_inner .topborder .right {
background: #394E63;
}
#quickbar_inner .bottomborder .left {
background: #394E63;
}
#quickbar_inner .bottomborder .main {
background: #394E63;
}
#quickbar_inner .bottomborder .right {
background: #394E63;
}
th, .vis>h4 {
background: #091827 !important;
}
.row h4 {
background: #091827 !important;
}
.popup_menu {
background: #091827 !important;
}
#inline_popup_menu {
background: #091827 !important;
}
.no-borderimage .bordered-box h3 {
background: #091827 !important;
}
.flag_count {
background: #091827 !important;
}
div.vis {
border: 1px solid #666666;
}
.lit .lit-item {
background: #394E63 !important;
}
.vis .row_a > td, .vis.alternating tr:nth-child(2n) td, .vis .row_a > tr > td {
background: #394E63 !important;
}
.vis .row_b > td, .vis.alternating-rows tr:nth-child(2n+1) td, .vis .row_a > tr > td {
background: #394E63 !important;
}
#footer, #footer a {
color: #FFFFFF;
}
#footer {
border-top: 2px solid #666666;
background: #21354C;
}
`);
})();