To make paragraphs with the ID "intro" have green text color, which CSS code would you use?
p.intro { color: green; }
#intro { color: green; }
p #intro { color: green; }
.intro { color: green; }