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 Organize CSS with Comments

Chris Cuaresma-Primm
Chris Cuaresma-Primm
2,185 Points

What the answer to this challenge question "set the color of paragraphs to black using a hexadecimal value"?

What the answer to this challenge question "set the color of paragraphs to black using a hexadecimal value"?

2 Answers

Hey Chris,

try this:

p {
   color: #000;
}
Matthew Meo
Matthew Meo
2,341 Points

Hey Chris,

For future reference, hexadecimal value is just a super fancy way of saying "write a color with a hashtag." Like white #ffffff or black #000000. There's 16 million possibilities! The cool thing is, you can always google a color you want or even see a color in a webpage you like and check out the color code then put it on your own page. It's super easy and can spice up your pages fast!