document.addEventListener("DOMContentLoaded", function() {
var iframe = document.querySelector("iframe");
iframe.onload = function() {
var css = "body { background-color: #f5f5f5 !important; color: #222 !important; }";
var style = document.createElement("style");
style.innerHTML = css;
iframe.contentWindow.document.head.appendChild(style);
};
});
Skip to main content