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!
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

mike prather
791 Pointscode challenge colors and fonts 3
I have no idea what I am doing wrong. I answered the 1st 2 questions correct which were
font-family: 'Nunito', sans-serif;
color: #FAF3BC;
but the 3rd question is to set the background color which I did but no idea what I did wrong or missing. I wrote it as...
background: #420600;
I also tried with repeat after the 420600 What is frustrating is it doesn't give me any hints or indications what I am doing wrong.
1 Answer

Nikolaos Papathanassopoulos
10,322 PointsYou should have this:
body{
font-family: 'Nunito', sans-serif;
color: #FAF3BC;
background: #420600;
}
Next time please make sure to add a link to your post, so everyone can see quickly what challenge its about.
Best Regards, Nikos