Is there a way to change some of the colors like for Status (New, Feedback, Acknowledged),Menu etc? I tried changing it for example by adding new value to $g_new_color in config_inc.php. But it doesnt seem to make a difference. Please suggest.
Thanks,
Mickey.
Change Colors
Moderators: Developer, Contributor
Hi Mickey:
You need to override the $g_status_colors array in your config_inc.php file. For reference, it defaults to:
Hope that helps,
Lincoln.
You need to override the $g_status_colors array in your config_inc.php file. For reference, it defaults to:
Code: Select all
$g_status_colors = array( 'new' => '#ffa0a0', # red,
'feedback' => '#ff50a8', # purple
'acknowledged' => '#ffd850', # orange
'confirmed' => '#ffffb0', # yellow
'assigned' => '#c8c8ff', # blue
'resolved' => '#cceedd', # buish-green
'closed' => '#e8e8e8'); # light gray
Lincoln.