Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
$( document ).ready( () => {
	"use strict";
	if ( /^(Template|Module)\:.+\/doc$/.test( mw.config.get( "wgPageName" ) ) ) {
		const STYLE_SHEET = new CSSStyleSheet();
		document.adoptedStyleSheets = [ ...document.adoptedStyleSheets, STYLE_SHEET ];
		STYLE_SHEET.replaceSync( `.mw-parser-output {
	background-color: #ecfcf4;
	border: 1px solid #a2a9b1;
	padding: 1em;
}` );
	}
} );