How do I change the background color and the hover color of my Html.Kendo().Menu()?
<div id="responsive-panel"> @(Html.Kendo().Menu() .Orientation(MenuOrientation.Vertical) .Name("Menu") .Items(items => { items.Add().Text("Profile").Url("./Manage"); // else "/Index?handler=redirect" items.Add().Text("Password").Url("Manage/ChangePassword"); items.Add().Text("Two-factor authentication").Url("Manage/TwoFactorAuthentication"); items.Add().Text("Personal data").Url("Manage/PersonalData"); }) )</div>
