change menu colors

I am trying to custom style the menu colors, but its not working no matter the the several technics applied.

.clsMenu {
	background-color: blue;
   	
	color: red;
	}
 var menu = webix.ui({
				    container:"areamenu",
					view:"menu",
                    id:"areamenu",
					select:true,
					css:"clsMenu",
                  				
					data:[
						{id:1, value:"Home", submenu:["option1", "option2", "option3"]}, 
						{id:2, value:"News"}, 
						{id:3, value:"Drop"}
					],
					type:{
						subsign:true,
					}
				
				});			

You need to use the basic menu classes:

 .webix_menu-x.clsMenu .webix_list_item {    
    background: blue;
    color: red;
}

http://webix.com/snippet/14af3149