lord-voldemort707 / HFBoards Style Changer

// ==UserScript==
// @name         HFBoards Style Changer
// @namespace    github.com/lord-voldemort707
// @version      0.4
// @description  Changes HFBoards default style to be less bright
// @author       lord-voldemort707
// @match        http://hfboards.mandatory.com/*
// @grant        none
// @updateURL https://openuserjs.org/meta/lord-voldemort707/HFBoards_Style_Changer.meta.js
// @require http://code.jquery.com/jquery-3.2.1.min.js
// ==/UserScript==

(function() {
    window.jQuery320 = $.noConflict(true);
    jQuery320(document).ready(function() {
        jQuery320('.mainContainer').css({"background-color":"#c3cbd8"});
        jQuery320('.primaryContent').css({"background-color": "#c3cbd8"});
        jQuery320('.quoteContainer').css({"background-color":"#e0e0e0"});
        jQuery320( '.messageList .message' ).css({"border-top-width": "3px"});
        jQuery320('.DateTime').css({"color":"black"});
        jQuery320('.pairsInline dt').css({"color":"#83529e"});
        jQuery320( '.bbCodeQuote .attribution' ).each(function () {
            this.style.setProperty( 'background', 'linear-gradient(#e6c6c6, #cccccc)', 'important' );
        });
    });
})();