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

JavaScript Treehouse Club - MASH MASH - CSS Normalize.css

Sarah Pellecchia
PLUS
Sarah Pellecchia
Courses Plus Student 2,335 Points

the color codes are confusing me. is there a chart or reference for this?

The color codes for CSS are giving me a headache. There must be a chart for this that I missed along the way. Thanks in advance for the help.

Bogdan Cabaj
Bogdan Cabaj
16,349 Points

Hi Sarah,

Color Picker - simple color picker giving you different formats accepted by CSS CSS Color Values - descriptions of what color formats you use.

Hope this helps.

2 Answers

Steven Parker
Steven Parker
231,269 Points

I don't think there was a chart in the course itself.

But there are plenty of web references. If you just want to see the 140 colors that have names, here's a reference for that. Or if you're confused by the hex color values, this reference may help.

You favorite search engine will give you many more references for color if these don't quite cover it for you.

its really simple, you start off with # which says: hey watch out this is a color, then you provide three values for red green and blue from a scale of 0 to 255 in hexadecimal notation(because this is shorter than decimal notation, i.e. 255 can be written as ff) thats it really. So for example pure red is: #ff0000 => ff for red which is 255, 00 for green and blue.