Hi,
1.add custom background color option to file functions/functions.php here:
$theme_color = array(
'1' => array(...
assuming like this:
'11' => array(
'title' => 'color11',
'value' => 'theme-color-11',
'rgb' => '#898989'
)
2.add color style for backend to file: functions/pagebuilder/css/style.css.
assuming like this:
.bg-theme-color-11 {
background-color: #898989;
}
3.add color style for frontend to file: styles/pagebuild.css(codes same as step 2).
Best