How to change the color of a menu item [closed]

You have to right click to the element you want to change color, then you will Inspect Element to know its ID, once you know the ID you have to add custom CSS changing the color of that item like this:

#menu-item-391 a {
  color: red;
}

You can use hex code for the color if you don’t want pure red.