/*
_________________________________________________________________________
|                  |                                                     |
|          Title:  |  Custom Menu Highlight Color (Text and Background)  |
|    Description:  |  Menus will have text and background personalized   |
|   Date Created:  |  June 5, 2008                                       |
|   Last Updated:  |  June 5, 2008                                       |
|        Version:  |  1.0.0.1                                            |
|__________________|_____________________________________________________|

*/





@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);




/* Change highlighted menu text to any color: */

menupopup > menu[_moz-menuactive="true"],
menupopup > menuitem[_moz-menuactive="true"],
popup > menu[_moz-menuactive="true"],
popup > menuitem[_moz-menuactive="true"] 
{
  color: #00FF00 !important;  /*Change this to change Text Color*/
  background-color:#000000 !important;  /*Change this to change Background Color*/
}