#f4f5cd Color
Color Codes | |
---|---|
Hex Code | #f4f5cd |
RGB Code | rgb(244, 245, 205) |
HSL Code | hsl(62, 67%, 88%) |
#f4f5cd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(244, 245, 205); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(62, 67%, 88%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #f4f5cd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(244, 245, 205, 10%) | #f4f5cd1a | |
rgb(244, 245, 205, 20%) | #f4f5cd33 | |
rgb(244, 245, 205, 40%) | #f4f5cd4C | |
rgb(244, 245, 205, 60%) | #f4f5cd99 | |
rgb(244, 245, 205, 80%) | #f4f5cdCC | |
rgb(244, 245, 205, 100%) | #f4f5cdFF |
Saturated and desaturated colors of #f4f5cd
HSL Code | Preview |
---|---|
hsl(62, 10%, 88%) | |
hsl(62, 20%, 88%) | |
hsl(62, 40%, 88%) | |
hsl(62, 60%, 88%) | |
hsl(62, 80%, 88%) | |
hsl(62, 100%, 88%) |
#f4f5cd Color Usage In CSS
body { color: #f4f5cd; } p { color: rgb(244, 245, 205); } header { border-bottom:1px solid #f4f5cd; }