If you want the text in all <h1> elements to be red using RGB, which CSS property would you apply?
<h1>
h1 { color: black; }
h1 { color: rgb(255, 0, 0); }
h1 { color: #00FF00; }
h1 { color: rgb(0, 0, 255); }