What code would change the text color of a <h1> header to green using RGB?
<h1>
h1 { color: black; }
h1 { color: rgb(0, 255, 0); }
h1 { color: #0000FF; }
h1 { color: rgb(255, 0, 0); }