Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

MUZ140528 Tatenda Chitate
5,016 Pointscolor
set the color of paragraphs using hexadecimal
a {
text-decoration: none;
}
#wrapper {
max-width: 940px;
margin: 0 auto;
}
#logo {
text-align: center;
margin: 0;
}
h1,h2{
color: #fff;
}

Aaron HARPT
19,845 PointsTo set the color of all paragraphs, your code should look like:
p { color: #2d2d2d; /* or whatever the color is. */ } I hope this helps.

shawn stokes
5,651 Pointsp { color: #fff; }
1 Answer

Shaun Kelly
35,560 PointsTo set the color of paragraphs to a hexadecimal value you use the hash tag followed by a set of characters that resemble individual colors. For example to turn the paragraphs text white you would write:
P { Color: #fff; }
Jacob Mishkin
23,117 PointsJacob Mishkin
23,117 Pointsselect the paragraph in your CSS then write a hexadecimal color.
here is a good post about colors in CSS:
https://css-tricks.com/snippets/css/named-colors-and-hex-equivalents/