Hex Color Codes PDF Free Download

1 / 16
1 views16 pages

Hex Color Codes PDF Free Download

Hex Color Codes PDF free Download. Think more deeply and widely.

Hex Color Codes
Customization
Every color has its own special
code, called a hex color code.
#00c4ba
#fead15
We can use color names or hex color codes.
h1 {
color: #ffffff;
}
css
h1 {
color: white;
}
css
There are only 140 valid color
names — but with hex codes, we
have 16,777,216 colors we can use!
Hex codes are NOT random
numbers and letters!
Hex color codes are based on the
hexadecimal number system.
www.bsd.education
All hex codes are six characters,
and must have a # in front.
css
h1 {
color: #2390d9;
}
Resources
Where can we find hex codes?
colordrop.io
colorhunt.co
verandacolor.com/palettes
mybrandnewlogo.com/color-palette-
generator
htmlcolorcodes.com
www.bsd.education
www.bsd.education
1. Open a new tab in your browser,
and visit colordrop.io
www.bsd.education
2. Select a color palette. A color palette is a
set of colors that look good together.
www.bsd.education
3. A sidebar with the hex codes will appear.
www.bsd.education
4. Click the hex code to copy it!
www.bsd.education
5. Paste the hex code into your CSS!
body {
background-color: #e42c64;
}
css
www.bsd.education
1. If you’re using colorhunt.co,
click the hex code to copy it.
www.bsd.education
h1 {
color: BD4B4B;
}
Missing a # in front!
2. Be careful! When you paste a hex code from
colorhunt.co, it will NOT include the # !
www.bsd.education
h1 {
color: #BD4B4B;
}
3. Make sure to add a # after pasting
a hex code from colorhunt.co
www.bsd.education
You can also use Google’s color picker!
Copy the hex
code here
Type “color picker”
in the Google
search bar