I'm looking for a way to adjust the saturation of the bootstrap alert colors in the Yii framework. The default green color doesn't seem vibrant enough for my liking. Is there a way to tweak this using CSS? Would adding something like the following code snippet work?
.alert {
}
Within my form code, I have conditions that assign a specific class to the alert based on the request status:
if($model->request_status == 'On Going!')
{
return ['class' => 'info'];
} else if($model->request_status == 'Done!')
{
return ['class' => 'success'];
} else if($model->request_status == 'Cancelled!')
{
return ['class' => 'danger'];
} else if($model->request_status == 'High Priority!')
{
return ['class' => 'warning'];
}