Hi @carlosvai, @jahnstek, @bdog66, @winihh,
We are really sorry, our team is still working on this. In the meantime, you can add the following snippet to your site to change the editor background color
add_filter('astra_block_editor_dynamic_css' , 'custom_editor_css' );
function custom_editor_css( $default ){
$custom_css = array(
'.editor-styles-wrapper, .ast-separate-container .block-editor-writing-flow' => array(
'background-color' => '#3f3f3f',
),
);
$default .= astra_parse_css( $custom_css );
return $default;
}
You can change the #3f3f3f
to any preferred color. And you might want to refer to this doc to know how to add a custom PHP code to your site.
I hope it will help.
Kind regards,
Herman ??