How would you change the text color of an element with the ID "navbar" to purple using an ID selector?
* { color: purple; }
.navbar { color: purple; }
navbar { color: purple; }
#navbar { color: purple; }