A script inside this iframe can change the background-color of the parent document:

<script>
function myFunction() {
  parent.document.body.style.backgroundColor = "lightblue";
}
</script>