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

Stuart Ruddick
PLUS
Stuart Ruddick
Courses Plus Student 890 Points

Could you please tell me what is wrong with the following? p { color #111 }

It is telling me I am wrong but I can't figure out why?

css/main.css
a {
  text-decoration: none;
}

#wrapper {
  max-width: 940px;
  margin: 0 auto;
}

#logo {
  text-align: center;
  margin: 0;
}
h1,h2 {
  color: #fff
}
p {
  color: #111
}

3 Answers

Ron McCranie
Ron McCranie
7,837 Points

It looks like you're missing the closing semi-colon on the last two color values. Try this:

a {
  text-decoration: none;
}

#wrapper {
  max-width: 940px;
  margin: 0 auto;
}

#logo {
  text-align: center;
  margin: 0;
}
h1,h2 {
  color: #fff;  // this semi-colon was missing
}
p {
  color: #000;  // this semi-colon was missing, color wrong
}

Also, the color for paragraphs needs to be black which is #000 and not #111 which is a shade lighter than true black.

Jeff Lemay
Jeff Lemay
14,268 Points

The hex code for black is #000 or #000000.

You should also be putting semicolons on the end of your statements as Ron suggested.