How would you change the text color in a <h1> header to green using hexadecimal?
<h1>
h1 { color: #00FF00; }
h1 { color: #FF0000; }
h1 { color: blue; }
h1 { color: rgb(255, 0, 0); }