To change the text color of a <p> paragraph to blue using RGB, what CSS code would you use?
<p>
p { color: green; }
p { color: rgb(0, 0, 255); }
p { color: #FFFFFF; }
p { color: rgb(0, 0, 0); }