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 trialMUZ140528 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,118 PointsJacob Mishkin
23,118 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/