Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS How to Make a Website Customizing Colors and Fonts Write Hexadecimal Colors

How to set the color of paragraphs to black?

Thanks for your reply in advance!

3 Answers

Hayden Taylor
Hayden Taylor
5,076 Points
p {
   color:black; <---- for font
   background-color:black; <--- for background....
}

And if you're looking for the hex value it's:

p {
  color: #000;
}
Adam Moore
Adam Moore
21,956 Points

You don't actually even need the word "-color" tagged onto the end of "background," because background: black or background: #000, as Dustin said, will work just as well.