NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Wattpad Darkmode
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Lorem Ipsum Dolor Set Amet
// @author Th3Kevmaster74
// @match https://www.wattpad.com/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle('#parts-container-new { background-color: #83878e !important; }');
GM_addStyle('.panel { background-color: #83878e !important; }');
GM_addStyle('#story-reading header.panel-reading .meta { border-bottom: 0px solid #EDEDED; }');
GM_addStyle('.discover-rows{ background-color: #83878e !important}');
GM_addStyle('#story-reading #parts-container-new footer .part-recommendations-container .row .colWrap{ background-color: #83878e !important}');
GM_addStyle('#footer-container { background-color: #83878e !important; }');
GM_addStyle('#funbar { background-color: #83878e !important; }');
GM_addStyle('#progressbar { background-color: #0061ff !important;}');
})();