What CSS code would you use to change the text color of a <h2> header to red using a hexadecimal value?
<h2>
h2 { heading-color: #FF0000; }
h2 { font-color: #FF0000; }
h2 { text-color: #FF0000; }
h2 { color: #FF0000; }