Is there a way in AppGini to make the first table in home page, normal, not orange ?!
I mean setting up the 'panel' and 'link' as 'btn-info' NOT 'btn-warning' !!
At the moment I am able to do the color change by editing HOME.PHP which gets overwritten every time, I regenerate the code

home.php
$block_classes = array(
'first' => array(
'grid_column' => 'col-sm-6 col-md-4 col-lg-3',
'panel' => 'panel-warning',
'link' => 'btn-warning'
),
'other' => array(
'grid_column' => 'col-sm-6 col-md-4 col-lg-3',
'panel' => 'panel-info',
'link' => 'btn-info'
)
);