Ubah Warna Latar Belakang JS Tinymce

tinyMCE.init(
        mode : "textareas",
        theme : "simple",
        oninit : "postInitWork"
    });

function postInitWork()
{
  var editor = tinymce.get('myEditorid');
  editor.getBody().style.backgroundColor = "#FFFF66";
}
Charming Caribou