To make the text color of all <h5> headers white using RGB, what CSS code would you use?
<h5>
h5 { color: rgb(0, 0, 0); }
h5 { color: #FF0000; }
h5 { color: rgb(255, 255, 255); }
h5 { color:green; }