To change the text color of the element with the ID "title" to white, which CSS code would you use?
#title { color: white; }
* { color: #FFF; }
.title { color: #FFFFFF; }
title { color: rgb(255, 255, 255); }