Dark Mode for gHacks.net
当前为
// ==UserScript==
// @name gHacks Dark Mode
// @namespace https://greasyfork.org
// @description Dark Mode for gHacks.net
// @author Guillaume
// @version 1.0.1
// @icon https://ghacks.net/favicon.ico
// @match *://*.ghacks.net/*
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle(`
body {
background: #3B3B3B;
color: #EEE !important;
}
h2>a, .heading, .heading--huge, .heading--large, .user-content h2, .widget_text .textwidget h2, .heading--big, .heading--medium, .user-content h3, .widget_text .textwidget h3, .heading--normal, .heading--small, .user-content h5, .widget_text .textwidget h5, .heading--tiny {
color: #F3B434 !important;
}
a { color: #FFF !important; }
.comment-item__header, input:not([type="submit"]):not([type="checkbox"]), textarea, select, #snippet-box {
background: #272727 !important;
color: #EEE !important;
}
.button--orange, input[type="submit"], .nav-links span.current { background-color: transparent !important }
.button--orange:hover, input[type="submit"]:hover, .nav-links span.current:hover, .button--orange:focus, input[type="submit"]:focus, .nav-links span.current:focus { background-color: #F3B434 !important }
.user-content a:not(:hover), .widget_text .textwidget a:not(:hover) { border-bottom: 2px solid #727272 !important }
`);