NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name VHPG Darkmode // @version 1.0.0 // @author rDs // @description VHPG darkmode. No more flashbangs when searching for PoE resources // @match http://www.vhpg.com/* // @grant GM_addStyle // @run-at document-start // @license MIT // ==/UserScript== GM_addStyle ( ` body { background-color: #0d1117 !important; color: #c9d1d9; } .panel-default>.panel-heading { color: #c9d1d9; background-color: #161b22; border-color: #30363d; } .blog-masthead { background-color: #161b22 !important; color: rgba(255,255,255,0.7) !important; } .nav-tabs { border-bottom: 0 !important; } .panel { background-color: #0d1117 !important; border: 1px solid #30363d !important; } .table-striped>tbody>tr:nth-of-type(odd) { background-color: #0d1117; } .table-striped>tbody>tr:nth-of-type(even) { background-color: #0d1117; } .table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th { border: 1px solid #30363d; } label { color: #c9d1d9; } ` );