53 lines
867 B
JavaScript
53 lines
867 B
JavaScript
|
// ==UserScript==
|
||
|
// @include /^https?://(www\.|)hckrnews\.com/.*$/
|
||
|
// ==/UserScript==
|
||
|
|
||
|
GM_addStyle(`
|
||
|
body,
|
||
|
.form-actions {
|
||
|
background: #242424 !important;
|
||
|
color: #e3e0d7 !important;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #cae682 !important;
|
||
|
}
|
||
|
|
||
|
.entries a.link {
|
||
|
color: #e3e0d7 !important;
|
||
|
}
|
||
|
|
||
|
.entries a.link:visited,
|
||
|
.entries .source {
|
||
|
color: #9c998e !important;
|
||
|
}
|
||
|
|
||
|
.entries .homepage {
|
||
|
color: #e5796d !important;
|
||
|
}
|
||
|
header a,
|
||
|
header a:hover {
|
||
|
color: #88b8f6 !important;
|
||
|
}
|
||
|
|
||
|
.entries a:hover {
|
||
|
background-color: #080808 !important;
|
||
|
color: #95e454 !important;
|
||
|
}
|
||
|
|
||
|
.entries .tab,
|
||
|
.menu .nav-pills > .active > a,
|
||
|
.menu .nav-pills > .active > a:hover {
|
||
|
background-color: #88b8f6 !important;
|
||
|
color: #080808 !important;
|
||
|
}
|
||
|
|
||
|
.nav > li > a:hover {
|
||
|
background-color: #080808 !important;
|
||
|
color: #e3e0d7 !important;
|
||
|
}
|
||
|
|
||
|
.entries .day {
|
||
|
border-color: #88b8f6 !important;
|
||
|
}`);
|