Add the below code in the functions.php file of your current active theme for adding customisation in the vendor set up wizar
add_action('admin_print_styles', 'add_style_in_vendor_setup_wizard');
function add_style_in_vendor_setup_wizard() {
if (filter_input(INPUT_GET, 'page') == 'vendor-store-setup' ) {
echo '<style>
.wc-setup-steps li.active,
.wc-setup-steps li.active::before{
border-color: #2A8D34;
}
.wc-setup-steps li.active{
color: #2A8D34;
}
.mvx-vendor-wizard a{
color: #0F5011;
}
</style>';
}
}






