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 CSS Basics (2014) Basic Selectors Type Selectors

Kaycee Harris
Kaycee Harris
935 Points

hexadecimal

Do you just search the web for different hexadecimal values?

3 Answers

I do not think it's the best choice, if you do not know what color to look for.

If you have Photoshop you should be able to find a value in the color picker tool. Otherwise look for sites that offer palettes. I used this one in the past:

https://flatuicolors.com/

Cheers!

Kaycee Harris
Kaycee Harris
935 Points

Thank you so much for your help!!

Tobias Graefe
Tobias Graefe
11,934 Points

It's just another way of using rgb colors. The hexadecimal numbers first two hex values represent red (#00.... = rgb(0,..,..) | #FF.... = rgb(255,..,..)) same rule for green (values 3 and 4) and blue (last two values). I hope it's understandable...