Change Colors

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
mickey
Posts: 22
Joined: 06 Apr 2006, 05:04
Location: Cleveland, OH

Change Colors

Post by mickey »

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.
Narcissus
Developer
Posts: 338
Joined: 17 Feb 2005, 09:45

Post by Narcissus »

Hi Mickey:

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
Hope that helps,
Lincoln.
mickey
Posts: 22
Joined: 06 Apr 2006, 05:04
Location: Cleveland, OH

Post by mickey »

Yes, it worked perfectly. Thanks a bunch Narcissus..
Post Reply