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

Elisa Wehner
Elisa Wehner
4,033 Points

I've entered the code and I'm getting an error saying I haven't changed the h1 element to white

I've entered the code a few different ways: h1 { color: fff; } and h1, h2 { color: fff; } Either way I get an error.

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

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

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

3 Answers

Julian Gutierrez
Julian Gutierrez
19,201 Points

You're missing the "#" on your colors.

h1 {
  color: #fff;
}
h2 {
  color: #fff;
}

Julian is correct, any time you use color it must always start with #.

A hexidecimal color has to start with a #. You can also use a defined name of a color like blue or rgb() or rgba(). Those later types do not use a #.